From 616f62d8d019ac81cd73b51d689d310a8d4bd9f3 Mon Sep 17 00:00:00 2001 From: Diego Mello Date: Mon, 13 Apr 2020 16:44:19 -0300 Subject: [PATCH] Configure expo-local-authentication --- .../generated/BasePackageList.java | 1 + app/sagas/init.js | 12 +- app/utils/review copy.js | 96 + app/views/RoomsListView/index.js | 2 +- ios/Podfile.lock | 7 + .../EXLocalAuthentication.h | 1 + .../EXLocalAuthentication.h | 1 + .../EXLocalAuthentication.podspec.json | 26 + ios/Pods/Manifest.lock | 7 + ios/Pods/Pods.xcodeproj/project.pbxproj | 15305 ++++++++-------- .../EXLocalAuthentication-dummy.m | 5 + .../EXLocalAuthentication-prefix.pch | 12 + .../EXLocalAuthentication.xcconfig | 10 + .../Pods-RocketChatRN.debug.xcconfig | 6 +- .../Pods-RocketChatRN.release.xcconfig | 6 +- .../Pods-ShareRocketChatRN.debug.xcconfig | 2 +- .../Pods-ShareRocketChatRN.release.xcconfig | 2 +- ios/RocketChatRN/Info.plist | 2 + package.json | 1 + yarn.lock | 7 + 20 files changed, 7942 insertions(+), 7569 deletions(-) create mode 100644 app/utils/review copy.js create mode 120000 ios/Pods/Headers/Private/EXLocalAuthentication/EXLocalAuthentication.h create mode 120000 ios/Pods/Headers/Public/EXLocalAuthentication/EXLocalAuthentication.h create mode 100644 ios/Pods/Local Podspecs/EXLocalAuthentication.podspec.json create mode 100644 ios/Pods/Target Support Files/EXLocalAuthentication/EXLocalAuthentication-dummy.m create mode 100644 ios/Pods/Target Support Files/EXLocalAuthentication/EXLocalAuthentication-prefix.pch create mode 100644 ios/Pods/Target Support Files/EXLocalAuthentication/EXLocalAuthentication.xcconfig diff --git a/android/app/src/main/java/chat/rocket/reactnative/generated/BasePackageList.java b/android/app/src/main/java/chat/rocket/reactnative/generated/BasePackageList.java index de5fd005b..408cbb143 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/generated/BasePackageList.java +++ b/android/app/src/main/java/chat/rocket/reactnative/generated/BasePackageList.java @@ -12,6 +12,7 @@ public class BasePackageList { new expo.modules.filesystem.FileSystemPackage(), new expo.modules.haptics.HapticsPackage(), new expo.modules.imageloader.ImageLoaderPackage(), + new expo.modules.localauthentication.LocalAuthenticationPackage(), new expo.modules.permissions.PermissionsPackage(), new expo.modules.webbrowser.WebBrowserPackage() ); diff --git a/app/sagas/init.js b/app/sagas/init.js index 4f35e3d0a..3e89dff08 100644 --- a/app/sagas/init.js +++ b/app/sagas/init.js @@ -3,6 +3,7 @@ import { put, takeLatest, all } from 'redux-saga/effects'; import RNUserDefaults from 'rn-user-defaults'; import { sanitizedRaw } from '@nozbe/watermelondb/RawRecord'; import RNBootSplash from 'react-native-bootsplash'; +import * as LocalAuthentication from 'expo-local-authentication'; import * as actions from '../actions'; import { selectServerRequest } from '../actions/server'; @@ -99,8 +100,15 @@ const restore = function* restore() { } else { const serversDB = database.servers; const serverCollections = serversDB.collections.get('servers'); - const serverObj = yield serverCollections.find(server); - yield put(selectServerRequest(server, serverObj && serverObj.version)); + + const authResult = yield LocalAuthentication.authenticateAsync(); + if (authResult?.success) { + const serverObj = yield serverCollections.find(server); + yield put(selectServerRequest(server, serverObj && serverObj.version)); + } else { + alert('Cancelled by the user') + // TODO: close the app + } } yield put(actions.appReady({})); diff --git a/app/utils/review copy.js b/app/utils/review copy.js new file mode 100644 index 000000000..7e6da9d13 --- /dev/null +++ b/app/utils/review copy.js @@ -0,0 +1,96 @@ +import { Alert, Linking, AsyncStorage } from 'react-native'; + +import { isIOS } from './deviceInfo'; +import I18n from '../i18n'; +import { showErrorAlert } from './info'; +import { STORE_REVIEW_LINK } from '../constants/links'; + +const store = isIOS ? 'App Store' : 'Play Store'; + +const reviewKey = 'reviewKey'; +const reviewDelay = 2000; +const numberOfDays = 7; +const numberOfPositiveEvent = 5; + +const daysBetween = (date1, date2) => { + const one_day = 1000 * 60 * 60 * 24; + const date1_ms = date1.getTime(); + const date2_ms = date2.getTime(); + const difference_ms = date2_ms - date1_ms; + return Math.round(difference_ms / one_day); +}; + +const onCancelPress = () => { + try { + const data = JSON.stringify({ doneReview: true }); + return AsyncStorage.setItem(reviewKey, data); + } catch (e) { + // do nothing + } +}; + +export const onReviewPress = async() => { + await onCancelPress(); + try { + const supported = await Linking.canOpenURL(STORE_REVIEW_LINK); + if (supported) { + Linking.openURL(STORE_REVIEW_LINK); + } + } catch (e) { + showErrorAlert(I18n.t('Review_app_unable_store', { store })); + } +}; + +const onAskMeLaterPress = () => { + try { + const data = JSON.stringify({ lastReview: new Date().getTime() }); + return AsyncStorage.setItem(reviewKey, data); + } catch (e) { + // do nothing + } +}; + +const onReviewButton = { text: I18n.t('Review_app_yes'), onPress: onReviewPress }; +const onAskMeLaterButton = { text: I18n.t('Review_app_later'), onPress: onAskMeLaterPress }; +const onCancelButton = { text: I18n.t('Review_app_no'), onPress: onCancelPress }; + +const askReview = () => Alert.alert( + I18n.t('Review_app_title'), + I18n.t('Review_app_desc', { store }), + isIOS + ? [onReviewButton, onAskMeLaterButton, onCancelButton] + : [onAskMeLaterButton, onCancelButton, onReviewButton], + { + cancelable: true, + onDismiss: onAskMeLaterPress + } +); + +const tryReview = async() => { + const data = await AsyncStorage.getItem(reviewKey) || '{}'; + const reviewData = JSON.parse(data); + const { lastReview = 0, doneReview = false } = reviewData; + const lastReviewDate = new Date(lastReview); + + // if ask me later was pressed earlier, we can ask for review only after {{numberOfDays}} days + // if there's no review and it wasn't dismissed by the user + if (daysBetween(lastReviewDate, new Date()) >= numberOfDays && !doneReview) { + setTimeout(askReview, reviewDelay); + } +}; + +class ReviewApp { + positiveEventCount = 0; + + pushPositiveEvent = () => { + if (this.positiveEventCount >= numberOfPositiveEvent) { + return; + } + this.positiveEventCount += 1; + if (this.positiveEventCount === numberOfPositiveEvent) { + tryReview(); + } + } +} + +export const Review = new ReviewApp(); diff --git a/app/views/RoomsListView/index.js b/app/views/RoomsListView/index.js index 84aa0027b..f99e010f2 100644 --- a/app/views/RoomsListView/index.js +++ b/app/views/RoomsListView/index.js @@ -533,7 +533,7 @@ class RoomsListView extends React.Component { getUidDirectMessage = room => RocketChat.getUidDirectMessage(room); - goRoom = (item) => { + goRoom = async(item) => { const { navigation } = this.props; this.cancelSearch(); this.item = item; diff --git a/ios/Podfile.lock b/ios/Podfile.lock index dc2766403..ab85def74 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -24,6 +24,9 @@ PODS: - React-Core - UMCore - UMImageLoaderInterface + - EXLocalAuthentication (9.0.0): + - UMConstantsInterface + - UMCore - EXPermissions (8.1.0): - UMCore - UMPermissionsInterface @@ -439,6 +442,7 @@ DEPENDENCIES: - EXFileSystem (from `../node_modules/expo-file-system/ios`) - EXHaptics (from `../node_modules/expo-haptics/ios`) - EXImageLoader (from `../node_modules/expo-image-loader/ios`) + - EXLocalAuthentication (from `../node_modules/expo-local-authentication/ios`) - EXPermissions (from `../node_modules/expo-permissions/ios`) - EXWebBrowser (from `../node_modules/expo-web-browser/ios`) - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`) @@ -551,6 +555,8 @@ EXTERNAL SOURCES: :path: "../node_modules/expo-haptics/ios" EXImageLoader: :path: "../node_modules/expo-image-loader/ios" + EXLocalAuthentication: + :path: "../node_modules/expo-local-authentication/ios" EXPermissions: :path: "../node_modules/expo-permissions/ios" EXWebBrowser: @@ -707,6 +713,7 @@ SPEC CHECKSUMS: EXFileSystem: cf4232ba7c62dc49b78c2d36005f97b6fddf0b01 EXHaptics: 013b5065946d4dd7b46ea547b58072d45a206dbd EXImageLoader: 5ad6896fa1ef2ee814b551873cbf7a7baccc694a + EXLocalAuthentication: bbf1026cc289d729da4f29240dd7a8f6a14e4b20 EXPermissions: 24b97f734ce9172d245a5be38ad9ccfcb6135964 EXWebBrowser: 4118b18d151fd03c935bd9de4cd312d2b33ec2c5 Fabric: 706c8b8098fff96c33c0db69cbf81f9c551d0d74 diff --git a/ios/Pods/Headers/Private/EXLocalAuthentication/EXLocalAuthentication.h b/ios/Pods/Headers/Private/EXLocalAuthentication/EXLocalAuthentication.h new file mode 120000 index 000000000..44a177344 --- /dev/null +++ b/ios/Pods/Headers/Private/EXLocalAuthentication/EXLocalAuthentication.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-local-authentication/ios/EXLocalAuthentication/EXLocalAuthentication.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/EXLocalAuthentication/EXLocalAuthentication.h b/ios/Pods/Headers/Public/EXLocalAuthentication/EXLocalAuthentication.h new file mode 120000 index 000000000..44a177344 --- /dev/null +++ b/ios/Pods/Headers/Public/EXLocalAuthentication/EXLocalAuthentication.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-local-authentication/ios/EXLocalAuthentication/EXLocalAuthentication.h \ No newline at end of file diff --git a/ios/Pods/Local Podspecs/EXLocalAuthentication.podspec.json b/ios/Pods/Local Podspecs/EXLocalAuthentication.podspec.json new file mode 100644 index 000000000..1e81c75b3 --- /dev/null +++ b/ios/Pods/Local Podspecs/EXLocalAuthentication.podspec.json @@ -0,0 +1,26 @@ +{ + "name": "EXLocalAuthentication", + "version": "9.0.0", + "summary": "Provides an API for FaceID and TouchID (iOS) or the Fingerprint API (Android) to authenticate the user with a face or fingerprint scan.", + "description": "Provides an API for FaceID and TouchID (iOS) or the Fingerprint API (Android) to authenticate the user with a face or fingerprint scan.", + "license": "MIT", + "authors": "650 Industries, Inc.", + "homepage": "https://docs.expo.io/versions/latest/sdk/local-authentication/", + "platforms": { + "ios": "10.0" + }, + "source": { + "git": "https://github.com/expo/expo.git" + }, + "source_files": "EXLocalAuthentication/**/*.{h,m}", + "preserve_paths": "EXLocalAuthentication/**/*.{h,m}", + "requires_arc": true, + "dependencies": { + "UMCore": [ + + ], + "UMConstantsInterface": [ + + ] + } +} diff --git a/ios/Pods/Manifest.lock b/ios/Pods/Manifest.lock index dc2766403..ab85def74 100644 --- a/ios/Pods/Manifest.lock +++ b/ios/Pods/Manifest.lock @@ -24,6 +24,9 @@ PODS: - React-Core - UMCore - UMImageLoaderInterface + - EXLocalAuthentication (9.0.0): + - UMConstantsInterface + - UMCore - EXPermissions (8.1.0): - UMCore - UMPermissionsInterface @@ -439,6 +442,7 @@ DEPENDENCIES: - EXFileSystem (from `../node_modules/expo-file-system/ios`) - EXHaptics (from `../node_modules/expo-haptics/ios`) - EXImageLoader (from `../node_modules/expo-image-loader/ios`) + - EXLocalAuthentication (from `../node_modules/expo-local-authentication/ios`) - EXPermissions (from `../node_modules/expo-permissions/ios`) - EXWebBrowser (from `../node_modules/expo-web-browser/ios`) - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`) @@ -551,6 +555,8 @@ EXTERNAL SOURCES: :path: "../node_modules/expo-haptics/ios" EXImageLoader: :path: "../node_modules/expo-image-loader/ios" + EXLocalAuthentication: + :path: "../node_modules/expo-local-authentication/ios" EXPermissions: :path: "../node_modules/expo-permissions/ios" EXWebBrowser: @@ -707,6 +713,7 @@ SPEC CHECKSUMS: EXFileSystem: cf4232ba7c62dc49b78c2d36005f97b6fddf0b01 EXHaptics: 013b5065946d4dd7b46ea547b58072d45a206dbd EXImageLoader: 5ad6896fa1ef2ee814b551873cbf7a7baccc694a + EXLocalAuthentication: bbf1026cc289d729da4f29240dd7a8f6a14e4b20 EXPermissions: 24b97f734ce9172d245a5be38ad9ccfcb6135964 EXWebBrowser: 4118b18d151fd03c935bd9de4cd312d2b33ec2c5 Fabric: 706c8b8098fff96c33c0db69cbf81f9c551d0d74 diff --git a/ios/Pods/Pods.xcodeproj/project.pbxproj b/ios/Pods/Pods.xcodeproj/project.pbxproj index c8f0d3921..493ec549b 100644 --- a/ios/Pods/Pods.xcodeproj/project.pbxproj +++ b/ios/Pods/Pods.xcodeproj/project.pbxproj @@ -210,1905 +210,1908 @@ /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ - 000601D6585E358B4C5C687C9A463409 /* RNUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = B731E1D065FE038F0659D216D2F696DA /* RNUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 000F50E0CF2A97F28B1403D1775EDC99 /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 111BBF6A1A8F20F888226023AC96D7F2 /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00250E9281073575CB7BAE32F1DF4B29 /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 704B3006AE3C4DF9E816A98C0AD58C74 /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0060810FB3851F5761DD7524A5AD905E /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 300582BDD4E0D559A2CE123B7583EB2F /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00AAC400E3418EF5114C52242349B8D9 /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D8B44D8422C4E7EDE9D751882D45B82 /* UMNativeModulesProxy.m */; }; - 00BA8C3B91567B84EF6FD94C5173292E /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 13569BD963332ED5AA1C999B78DBE3D9 /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00D097B559FAE95D0AD2BEFD359653A4 /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AD1462F43B9EA1A2C859223A1FF5567A /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00FD715D554BEF2B43C4A77344A2A2F9 /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46B968E1FEFB521DD402C79813D222DA /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0110988CDD0DA3F7F49434DAB8BA87E1 /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 19BC37419BDC3327F6A7C33802840939 /* RCTProgressViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 013E97EF0B110B48D15D8445F1D3C24A /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = ACEA68F757D72584A695A3324B50BAE5 /* RCTEventAnimation.m */; }; + 000601D6585E358B4C5C687C9A463409 /* RNUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 014EF95AAC4DFB40DC1F1AFC58414C97 /* RNUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 000F50E0CF2A97F28B1403D1775EDC99 /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D10630D29AFCDED6505AC01F612060B /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00250E9281073575CB7BAE32F1DF4B29 /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 13B3D5DF0D3F1C1EDF9FBF32FB4D10A8 /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0060810FB3851F5761DD7524A5AD905E /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DB5C006FFFD6248BB1DE2BD1FDAA845 /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00AAC400E3418EF5114C52242349B8D9 /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6400266D477D2FA1A5BD7E46E08C1FC8 /* UMNativeModulesProxy.m */; }; + 00BA8C3B91567B84EF6FD94C5173292E /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = DC7329CA9428EC0F785B6A190B581E9E /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00D097B559FAE95D0AD2BEFD359653A4 /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 715DE3D61DB2B9F0C8ED94D9195A2359 /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00FD715D554BEF2B43C4A77344A2A2F9 /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C07F9EEC2DBABECAACCAC8A87228BBF /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0110988CDD0DA3F7F49434DAB8BA87E1 /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D9CF80F3F009E6064C67C573894F6D9 /* RCTProgressViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 013E97EF0B110B48D15D8445F1D3C24A /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 24ED047780F990FDE45C495CB8C81BE3 /* RCTEventAnimation.m */; }; 0168747D9FDB61A33B92889060F5D4B8 /* FIRInstallationsKeychainUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 4341798946137AA9F80EA098E35B9931 /* FIRInstallationsKeychainUtils.m */; }; - 01AF68C56B353F0273A4AC2CD9C55356 /* BSG_KSCrashCallCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = A2CD12992CBD145D2479A48A3068C9C6 /* BSG_KSCrashCallCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 01CF128DB818B5C83EC67F1FB8C044E2 /* BugsnagUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 38A49AE2DBA5F87E93363A96C360CB02 /* BugsnagUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01AF68C56B353F0273A4AC2CD9C55356 /* BSG_KSCrashCallCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = A10936A5CFE73F4649919F750A19356F /* BSG_KSCrashCallCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01CF128DB818B5C83EC67F1FB8C044E2 /* BugsnagUser.h in Headers */ = {isa = PBXBuildFile; fileRef = 93ADFE4CAD9451B1B196CECC916633D8 /* BugsnagUser.h */; settings = {ATTRIBUTES = (Project, ); }; }; 01F1D84FDAD0AF47FF1C2166C9A2D3EC /* pb_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 383A35C11C4C2DD2BADC793667564783 /* pb_encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 02218BCD8452C372E4ACC4A4C8325932 /* rescaler.c in Sources */ = {isa = PBXBuildFile; fileRef = DCB23ABFC8B49A5E319D843667A25D15 /* rescaler.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 02D7F16622CA9A03D5F5BC227F111F09 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = A30CA10BD3D0FFFC75579BEDA72F4322 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02FD14CFE42783E886506F2E17859960 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46CA0C2F0C64FDE17DA59C7E8EBA9F7C /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02D7F16622CA9A03D5F5BC227F111F09 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 420B51DB8652B52DD1B92079DF6EFBB8 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02FD14CFE42783E886506F2E17859960 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 702CADBFFDC7EF3FBCCA9A11A221319C /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0343D94D2D5E8E2E318BA28B81964C30 /* GDTCCTUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = C0DCE0BB52AF13A0B41211860EA0CDCA /* GDTCCTUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 034BC962567065301B3E423CEEFF6493 /* ARTTextManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 98761D46C834D39986CE5E71ADB846AF /* ARTTextManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 037A597C46854C7EAE1349B3B682C044 /* FFFastImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 471AD333F94D649505072A135F27151A /* FFFastImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 038DCB497B0C163EB9C86859E531AFFA /* BSG_KSMach_x86_32.c in Sources */ = {isa = PBXBuildFile; fileRef = 5E26F9DB6B30AE836D67F78AF01ED7FD /* BSG_KSMach_x86_32.c */; }; - 03A091EF0A44A9313367BD851F9685DB /* RNFetchBlobConst.h in Headers */ = {isa = PBXBuildFile; fileRef = C56EBCBD2F78347186FCB4464E9090B1 /* RNFetchBlobConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 034BC962567065301B3E423CEEFF6493 /* ARTTextManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AA0F80AA3E4AA05D56513CF3F9689879 /* ARTTextManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 037A597C46854C7EAE1349B3B682C044 /* FFFastImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3405BF8C28915A35FDCF0DC28DD6C452 /* FFFastImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 038DCB497B0C163EB9C86859E531AFFA /* BSG_KSMach_x86_32.c in Sources */ = {isa = PBXBuildFile; fileRef = 5C236F69F20B76124FCDF88A46243966 /* BSG_KSMach_x86_32.c */; }; + 03A091EF0A44A9313367BD851F9685DB /* RNFetchBlobConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BB8D1658E6620DC5BD8F056364B9CAD /* RNFetchBlobConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; 03FC1A870235ECB216F4737C694F3747 /* GDTCORUploadPackage.h in Headers */ = {isa = PBXBuildFile; fileRef = 8174EE8838427BE46A0885CA8539CA9D /* GDTCORUploadPackage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04148C0C198379E5C1D179F18BF512A9 /* BSGSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 540B7ED49A5F3F474F0EBACB3DB2446F /* BSGSerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04148C0C198379E5C1D179F18BF512A9 /* BSGSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = B2FF970C74101530C9A7D48B65A4F84C /* BSGSerialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; 043F127F8BCEE1CF57B50F26BC40EEC6 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B9414D353B3774B94F6BC07EDA11C7C /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 043F132113151E6ADEDCE2882496167D /* FIRInstanceIDTokenOperation+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DA120FFE328161A90702286BAB6CDA6 /* FIRInstanceIDTokenOperation+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 049781277A4DF708130AF68AA1C925EC /* FIRInstanceIDAuthService.h in Headers */ = {isa = PBXBuildFile; fileRef = 297C759A2A6FB64610A331F75C41FC8D /* FIRInstanceIDAuthService.h */; settings = {ATTRIBUTES = (Project, ); }; }; 04AA55BE7FB64746D55ECB9C8714BE6C /* RSKImageScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = BDEA5C38759AB791A74D4E71063DB293 /* RSKImageScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04B9B85ED8CA97838E08E90F268B5A6A /* BSG_RFC3339DateTool.h in Headers */ = {isa = PBXBuildFile; fileRef = BC966FD6065991B6F5FDF77BD5F5F17E /* BSG_RFC3339DateTool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04B9B85ED8CA97838E08E90F268B5A6A /* BSG_RFC3339DateTool.h in Headers */ = {isa = PBXBuildFile; fileRef = 36A03901B4DC6ECFD9F75A20F0D222A6 /* BSG_RFC3339DateTool.h */; settings = {ATTRIBUTES = (Project, ); }; }; 04F32CC017A5B4680D550DF38F6F630D /* FIRInstanceIDVersionUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 3995372A68A43A67B051244F80037938 /* FIRInstanceIDVersionUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 052731026452AD40E65E87DCF5BF37D2 /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 7162B9122B699629FFC39E4D5BDADCAC /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 052731026452AD40E65E87DCF5BF37D2 /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D871EA5370D99BCBA2545E46BA94F97 /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; 053BA4F3C75D35BCBAA8F8891D611B84 /* animi.h in Headers */ = {isa = PBXBuildFile; fileRef = FF00CDB7A8232AE4158B172CB16D57C2 /* animi.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0550E1CF6AA520F2250C08EDB7D025EB /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = E082D662966C508D951D9CD0D9C2EAEE /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0550E1CF6AA520F2250C08EDB7D025EB /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = E08543FDC39180F83C50169CA50E00A0 /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; 055E3CCCC565B32662B62AEB2687DFD6 /* dec_clip_tables.c in Sources */ = {isa = PBXBuildFile; fileRef = D34AAFE9C37C1A4DC2FFAF19DFF69CDC /* dec_clip_tables.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 05756863C1BD6A6522B1046F4351B6BD /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 830855003F2BC474FB1CEAB2DF280F62 /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05756863C1BD6A6522B1046F4351B6BD /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B598E756408A131151E0D606053991B /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 058A0E6FB778E47AC2ACEED1729900C5 /* enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = CC558CC663CA045F998F5CA528ADEDB7 /* enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 05AADAF87C7C8F45EB17F1D2055547DB /* UIView+FindUIViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 48517FA6EAE6675023544BDCE0566F22 /* UIView+FindUIViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05AADAF87C7C8F45EB17F1D2055547DB /* UIView+FindUIViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = FA5AEFCC8F782FF9FBAC5916C7863513 /* UIView+FindUIViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 05B0D839ADEDCA18BCB0342D8850023C /* decode.h in Headers */ = {isa = PBXBuildFile; fileRef = AE42AA2FA59AF812E73CBB61E72ECEA8 /* decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05B8061B8AE0708A11C2E65F08069385 /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46FDA105CF97FF6CDA83F151FAE0A177 /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05B8061B8AE0708A11C2E65F08069385 /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 75B4456387FD1F49F14C09F38D397A6E /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 05C1FD03B0C4673F79EC7E77569B14EC /* nanopb-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F62A51F0D87C21CBDCC1B8756AE451C6 /* nanopb-dummy.m */; }; - 05D27696F3A8F3906AAC9F552AA9EEF6 /* ARTRadialGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E64EB3A2D9EFBB4C3058273DDDFD253 /* ARTRadialGradient.m */; }; + 05D27696F3A8F3906AAC9F552AA9EEF6 /* ARTRadialGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = F9ECBE21F9340188A655F5682239E588 /* ARTRadialGradient.m */; }; 05D69A135B67FBAE73D5F583B05D8AB5 /* SDImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = F87F6A22FB4F600954FB2663E53340C6 /* SDImageIOCoder.m */; }; 05EEE113DA8195D1A8446E6E0223F87B /* quant.h in Headers */ = {isa = PBXBuildFile; fileRef = F02ACAE8DEE115DBBC18C44F0AE2128C /* quant.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05FA51F562C7976518F650F5858E7149 /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = B6E7F6CFF7243FCCB557211BFBC39627 /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05FD9CBC49A9036945A855E5976925F8 /* REASetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B3A82089B5A614E7E34AF6F3B858EA0 /* REASetNode.m */; }; - 06290A0DBEBB396363D9CB31FC2FFA27 /* RNFetchBlobReqBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = DF1715F2F79E73DD52ADEA3D557A2037 /* RNFetchBlobReqBuilder.m */; }; - 062F8BE5952FAF7F5CF3E6966A337F28 /* RNBootSplash.h in Headers */ = {isa = PBXBuildFile; fileRef = 5556350F9460002DC1E3E77702D479EE /* RNBootSplash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 067CF6E901ED664FD2842890860A5713 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 12EE46404C88EE4302878276636C0E0D /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05FA51F562C7976518F650F5858E7149 /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = FCD33AC7A683628CABF9B4DE61ECAC31 /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05FD9CBC49A9036945A855E5976925F8 /* REASetNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A6FDFA32B8295040197988E798C0AB0D /* REASetNode.m */; }; + 06290A0DBEBB396363D9CB31FC2FFA27 /* RNFetchBlobReqBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = D428A5F89B83BAC3FD6FC10F08524F4F /* RNFetchBlobReqBuilder.m */; }; + 062F8BE5952FAF7F5CF3E6966A337F28 /* RNBootSplash.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ECEE9B7AB6E325C452EC27C706345B5 /* RNBootSplash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 067CF6E901ED664FD2842890860A5713 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 249EA4001666958E10159EC31E37103B /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 068627D6351492A400D81DA04B4AAEE1 /* histogram_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = D21939B5F49D3C368E0AE91BCDCB1CF4 /* histogram_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; 06922EF69D044B6F0042385A661A6B60 /* SDImageHEICCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 82F6DE05F32E14B763473B91688324E1 /* SDImageHEICCoder.m */; }; 06C78FC8169996E806BE536269C185CD /* yuv_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 8E103C191260FD8059A70EBEAD980250 /* yuv_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 06FBD958C231090762361344B123CACD /* SDAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F107D99DE30C03FC83538F1745C81DE /* SDAnimatedImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 07141BDF264104502C0D2041648F7880 /* FIRComponentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E5CC8F6A5743198CEE068F4A629834B /* FIRComponentType.m */; }; - 071E58B8852567A971AABBB61B4BF64A /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = 2AE2B723F436453C6040D6D557661B98 /* RCTProfileTrampoline-i386.S */; }; + 071E58B8852567A971AABBB61B4BF64A /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = F824E024621647C5329420E194FC7C22 /* RCTProfileTrampoline-i386.S */; }; 072340F95F41D91DADDE392ACB4F7665 /* FIRInstallationsIIDStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 06736283C77882D931377C3AF94D64FD /* FIRInstallationsIIDStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0764A6EAFA3A7BEBA50E99A74A95F549 /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 31645AE84C7DA065EB63BA5D17B21D67 /* QBVideoIconView.m */; }; + 0764A6EAFA3A7BEBA50E99A74A95F549 /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 325E1317AEFB463846E7C2AE2C8706D0 /* QBVideoIconView.m */; }; 0769A9F39A25A9A976CCD0C87C3D2CFA /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 965EC53F67148F2FB7C1C52C636A654B /* Format.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0770FB987A4D038938191C2B33C4846C /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DACC85D8938DA90A1AF8939908B569A /* RCTActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0770FB987A4D038938191C2B33C4846C /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E18A88BAD923B062DD7A8FDDE0FC019 /* RCTActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 077A5F8C4B9C33DFA15873A399B2597C /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CFEB116ECB9A495D54B314D795B805B /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0801F2E7F7115B2A1B2836000ECB42BE /* BugsnagHandledState.h in Headers */ = {isa = PBXBuildFile; fileRef = 24D838D0CDBA90432CA9CB4B6F72CEE9 /* BugsnagHandledState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 080E1D5D33742F3791A8FC5C709FE265 /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6F59D85A8A002DE35AC8727160034612 /* TurboModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0801F2E7F7115B2A1B2836000ECB42BE /* BugsnagHandledState.h in Headers */ = {isa = PBXBuildFile; fileRef = C70418FD985ABB340521F3E3B73FD6B9 /* BugsnagHandledState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 080E1D5D33742F3791A8FC5C709FE265 /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 30327B3BBCCCAE76BB48273350864929 /* TurboModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 081E6B601B49FE4F98631AE9F6594C9F /* dec_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = C31EC300C1418FF40CB367611BE8EB41 /* dec_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 082930C05486B2E939CD2D2046D6E8D4 /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7A06B4F1CF0684015B0878877963A935 /* RCTLog.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 082930C05486B2E939CD2D2046D6E8D4 /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 88648F732932432F6DAC9EBED580C353 /* RCTLog.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 0831A0057F646251FD8B9F72008F0F52 /* CGGeometry+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 112CFA9961DCCEA1D55E037EE24E1C38 /* CGGeometry+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08386AF2FE7E61FFAC513C0EABDE2BF5 /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D25CB766616C651F32FBDCF84AEEE4 /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08751D5B412E7F5CF628EA5003D23DC0 /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = 803AE5834C4E91DED51B2FC9ADFF2954 /* UIImage+Resize.m */; }; - 08AB7661CC1560CE0AD28729D69DDB72 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B03D8EA1C5F8BD52B4994EE0D4A0F02 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08F038226206BFA4EC2E474742BCCCBE /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FBBB6EEEBE7AC41A3555F9B18167F6CD /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08F5142CBA48202DB5E2CD6DD24AB790 /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = AD20E09F0FE02C9FAA4E0DDE1869D0BE /* RCTMultipartStreamReader.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 090CD0CBDC7A1A0ADFAF53F574E31D2E /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EC5FE22EE3F05BCC7AB588F5B43EF411 /* Instance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 08386AF2FE7E61FFAC513C0EABDE2BF5 /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = F39DA98B4560F63097808A59C778BF0F /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08751D5B412E7F5CF628EA5003D23DC0 /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = 894F1ED2B6368487AF330CAA982A116A /* UIImage+Resize.m */; }; + 08AB7661CC1560CE0AD28729D69DDB72 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 885AA0A3C1FC7159967E28C438FE0FB7 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08F038226206BFA4EC2E474742BCCCBE /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F2DF0505AC6DD488E90BAA79F1E6DB9 /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08F5142CBA48202DB5E2CD6DD24AB790 /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C055DB23C96B16780E4FB84A89F34E2 /* RCTMultipartStreamReader.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 090CD0CBDC7A1A0ADFAF53F574E31D2E /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF68036D1CCEC3D01E8537FEC9697AB /* Instance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 09BC7875E6D801E8C3A5D78A944B7127 /* neon.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B0188F1CFA087DDC5889F8B0B0301C3 /* neon.h */; settings = {ATTRIBUTES = (Project, ); }; }; 09C185F1C7A5642A99FC851468FCD3E0 /* GULSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CE153AFAE2F96D0F934D1BAF6939CCD /* GULSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 09E32B915F68813180BCB425D417A907 /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = F72625A8093D89ACAEF9ACBC3883C014 /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 09F2344CDF2289F7B806ED72CB1E16C9 /* FIRAppAssociationRegistration.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C8B9AF946127A4CCC12F6DA5E9EFD4E /* FIRAppAssociationRegistration.m */; }; - 09F8EE9A887212FC0B2154E979B8E097 /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = E16A382094A038ECB6A60E86DDFB51FD /* UMAppDelegateWrapper.m */; }; - 0A062F2E4946A573D13ADBCC08C63259 /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C9EA76FCBB390F7393463F23865DB10 /* RCTComponentData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0A1AB2547E41AAF64E97BFB18FD29C6B /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B254C9C4A303F02DB2DDD0A2B7553FC /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A7A1BCCD1D5D7238DC06CB7E38E76F9 /* RNNotificationParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 65A4F2A64799EAED8949F270492D2D0D /* RNNotificationParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A7FF47E30F61AFB6AD9CA895EE1A4F9 /* RNDateTimePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 36AD9D0FA195AE1A6D496664B6D5DCB4 /* RNDateTimePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 09F8EE9A887212FC0B2154E979B8E097 /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 14A8661687FD61C71A893E1752F079E7 /* UMAppDelegateWrapper.m */; }; + 0A062F2E4946A573D13ADBCC08C63259 /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BF3A95DB37F815FF43D7EF1E503E1E5 /* RCTComponentData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0A1AB2547E41AAF64E97BFB18FD29C6B /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E76F3759E8407C982EDBF7A405F370E /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A7A1BCCD1D5D7238DC06CB7E38E76F9 /* RNNotificationParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 34CC6521D5F9809960F39C9D570662BF /* RNNotificationParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A7FF47E30F61AFB6AD9CA895EE1A4F9 /* RNDateTimePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BD8DE34D2A5336EA6C638A092D29F16C /* RNDateTimePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0A92A4EB11AC3149D6C51E87E22A1A5B /* cost_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = E24A9D8245F7C2A76A8F628651409D86 /* cost_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 0AB9B568C6742A432B80BF2477E83C45 /* REATransformNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 41DC7C4805BBBD20FFF14A0764206278 /* REATransformNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0AE12686EC6C465D8435BAB4DC808603 /* RCTVibration.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C1D1BE7C9966B221DE569ECEB4D3CF2 /* RCTVibration.m */; }; + 0AB9B568C6742A432B80BF2477E83C45 /* REATransformNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A0BD5F45347AF241ACD522068EE2A13F /* REATransformNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0AE12686EC6C465D8435BAB4DC808603 /* RCTVibration.m in Sources */ = {isa = PBXBuildFile; fileRef = 20C369594F3002EE0F7D495BDFC51219 /* RCTVibration.m */; }; 0AE630EDDF3087755FB7900375791D51 /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 67126F01CF3D1827B3B8FF2A8F677A2F /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0AF837F5FF8B37A2F687B3A1B0940884 /* RNNotificationCenterListener.m in Sources */ = {isa = PBXBuildFile; fileRef = E716E272500F2B1D0BB5707BFA53C18B /* RNNotificationCenterListener.m */; }; - 0AFBACEB31E8CB9878295D470B31031A /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6140E340775F0F13F7E2A6E9282B98D8 /* RCTModalManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0AFF41962269C89779046793E1AE0FE7 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 070D8D1C1B32FFBE094021C01913F8BC /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B36FBB44F665720229F62FC21CFABAE /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 08408B034BD4895C8154293305785149 /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0AF837F5FF8B37A2F687B3A1B0940884 /* RNNotificationCenterListener.m in Sources */ = {isa = PBXBuildFile; fileRef = EDA960B488DC6DD0DC8848BF6E76941F /* RNNotificationCenterListener.m */; }; + 0AFBACEB31E8CB9878295D470B31031A /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 759973C61B3A8903A686499A76905E4C /* RCTModalManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0AFF41962269C89779046793E1AE0FE7 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1308887462257AEAE38116C2EF6147D7 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B36FBB44F665720229F62FC21CFABAE /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = B751636E9EB237E78796852019202781 /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0B7207001D16534DDF0C56E7C6F71B7B /* UIColor+HexString.h in Headers */ = {isa = PBXBuildFile; fileRef = 93FD2FCA283A90F02414FA05025F9086 /* UIColor+HexString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B83B8382AA1631C302C6BE3F5CC6264 /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = F14D8994925A0A0BEE1B08369B56247E /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0BAFAF4887E747EA3A91FED76A3C5031 /* RCTAlertManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 22B34F12C3336D3E628AAEBD664D5DC4 /* RCTAlertManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0BC16804FAEBD375BEC98962EA320575 /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = B6FF46DC4869A47D4B1A79A2F7D9FCE1 /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C1C730E79113657836F7BC8F9978974 /* RCTActionSheetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C2191B7CF81D4C1F7B3391CDB0A323CC /* RCTActionSheetManager.m */; }; - 0C1E401FFDCA511E1D3524CC7B71C1A5 /* RNFirebase.h in Headers */ = {isa = PBXBuildFile; fileRef = 77CA10718DB1A0C7E6A87F0F720C0ADD /* RNFirebase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C2A5DC47FE2D6837EA44C99ABFD5834 /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D5FB42ADEAA4E9B94CDE9C1D07EEB21 /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C551985E8686CC886A539921C3EE668 /* RootView.h in Headers */ = {isa = PBXBuildFile; fileRef = B890DFC7A7421FAC89BAB926874BFA9F /* RootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C87EB9D64AFD0A91F25F704C6523B0D /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 69CDFAD076C44A8B83929C1858218924 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0CC1E600C980393FC929683003BC8A11 /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = CA67F08689BB731E0B8CA7E994A94636 /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0CCF45BDC92B6384522785AEDE8F0ABC /* RCTDevMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = 79D38FA4D831B0DF6C21AE95B915D46E /* RCTDevMenu.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0CE586BF83E29531A0E1FA35876120DF /* REASetNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C538518209552D98575CD695F5E613F /* REASetNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0CF293FEA013686D3F2F8067F3713336 /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8058A6BEC15AFD2FDA6968BF3CB977EA /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D5AA62B5CBCFDB275A50E0BDC16DF22 /* RNPushKitEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B1B81E22DF015F475881295299C2BF2 /* RNPushKitEventHandler.m */; }; - 0D5FFF5C460BF47C00EC6A2A4BCB89F8 /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = CCBC60AE51C7D42660263B60D020BCE6 /* RCTUIManagerObserverCoordinator.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0D6DAE408F66820DF20E6D416582ADB3 /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C37418C0B0B572D6758F5424E172D58 /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B83B8382AA1631C302C6BE3F5CC6264 /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = 450A06AFE47875867D6D007603239D97 /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0BAFAF4887E747EA3A91FED76A3C5031 /* RCTAlertManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6976F471728D539A443214A0E81DB102 /* RCTAlertManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0BC16804FAEBD375BEC98962EA320575 /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = 356A307C6ABF12EF11CA33E44EACF4E6 /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C1C730E79113657836F7BC8F9978974 /* RCTActionSheetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 40E6B5A6BDDAA03117709635756F3EF8 /* RCTActionSheetManager.m */; }; + 0C1E401FFDCA511E1D3524CC7B71C1A5 /* RNFirebase.h in Headers */ = {isa = PBXBuildFile; fileRef = FE1964BB79974C13D7002EC611C003A2 /* RNFirebase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C2A5DC47FE2D6837EA44C99ABFD5834 /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = A728F9090C0195D0BF044B3BC36C5CAC /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C551985E8686CC886A539921C3EE668 /* RootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 35F0BA05BEECBF2107FEA371E9D74683 /* RootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C87EB9D64AFD0A91F25F704C6523B0D /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = A595B6DD138E016E5D80F615167C7FCB /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CC1E600C980393FC929683003BC8A11 /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 357FF7EA38456A76C452E63689055EDB /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CCF45BDC92B6384522785AEDE8F0ABC /* RCTDevMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = 3100F37554E286058370BD062FAC1D47 /* RCTDevMenu.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0CE586BF83E29531A0E1FA35876120DF /* REASetNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EF13686829746A2F67F9C4179C93609 /* REASetNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CF293FEA013686D3F2F8067F3713336 /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A472B29A06F533DC8055155CB0C7DA06 /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D5AA62B5CBCFDB275A50E0BDC16DF22 /* RNPushKitEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A3108E867C080F1BF3DD43EBB8CC6D7 /* RNPushKitEventHandler.m */; }; + 0D5FFF5C460BF47C00EC6A2A4BCB89F8 /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 071D90A52285C5F4B905B6DD3028570D /* RCTUIManagerObserverCoordinator.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0D6DAE408F66820DF20E6D416582ADB3 /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 83669ADFC2BA035A11A398BCCDFB4819 /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0D7E2BB25F84CFE2561BE6FCCF597EF7 /* FIRBundleUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 108CB420FAB407BE3178EAEC6141D97E /* FIRBundleUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0D9556D98C79F485EE8896FC3AC92523 /* GDTCORTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 55ABCD868D69EBB8B226D955E9B65C94 /* GDTCORTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0E1B3276561F7EB341FA907EB1A86F04 /* upsampling.c in Sources */ = {isa = PBXBuildFile; fileRef = C6624A128D06B1B7C27D2FBFA0584A44 /* upsampling.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 0E89AE392BB117EBA5EF898E3D243727 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = FD1D39BC3FB463B61BE62887185FD727 /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E9A96BC607353897B6F33133E636884 /* RCTAsyncLocalStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B926F3CE50538B2642D217F1B08F0FF /* RCTAsyncLocalStorage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0EB90738C1AEE8890CC35B181C099BA8 /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EF922E575D5906A5203BE5B1A83E0ED0 /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E89AE392BB117EBA5EF898E3D243727 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = 91D1EFE5F226BBD145CE95DAC5EA45FA /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E9A96BC607353897B6F33133E636884 /* RCTAsyncLocalStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AA5BE73650483C36940FEB822F5FEFF /* RCTAsyncLocalStorage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0EB90738C1AEE8890CC35B181C099BA8 /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C89485CBD68603701DFD1CF78BD93BCC /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F0C237F0948F4A86466E10DEA439B7D /* SDAssociatedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 23AF27BB8FC1D90102AF761B02C48033 /* SDAssociatedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0F112286F11B894F72C66676A5BAC325 /* SDWebImageWebPCoder-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DAD1EC07061CD01D8DB00C1DF9CBA5B9 /* SDWebImageWebPCoder-dummy.m */; }; 0F2C29D27A4A81991C787404478AF099 /* UIImage+WebP.h in Headers */ = {isa = PBXBuildFile; fileRef = 30B2778F70E9E7B0D2AE6C69B7F5FA18 /* UIImage+WebP.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F3C55B3AD23D445D2C973DC06EF00BF /* BugsnagCrashReport.m in Sources */ = {isa = PBXBuildFile; fileRef = A8A1EF5AA6F5AB825D6721E345CD4D02 /* BugsnagCrashReport.m */; }; - 0F3D589E134AAC1A8C2D94EF3BE48EA7 /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 542E2DB12C2236A6721B9893F8699B41 /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F3E8D4BB17DBFF30E41EFB555B29895 /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = C09B08B9F9590C063A274292A00ED08A /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0F4D40CEBE58229EC7B0B854D6E5FAD9 /* BSG_KSCrashSentry_User.h in Headers */ = {isa = PBXBuildFile; fileRef = 91CE1C2FF65D6D5645F184280CB2BF87 /* BSG_KSCrashSentry_User.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F74D6E0F1A38843AB6578A45C4430F2 /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 7310E9459A1058540B7F1B3D743A662C /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F9A9B467AFA8D375F679F23590C7A04 /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 7C87A67899A617619D2A1D2147AADDB0 /* ja.lproj */; }; - 0FAA30AD698ED824A3B229298FEEA782 /* BSG_KSCrashReport.c in Sources */ = {isa = PBXBuildFile; fileRef = 3998B4CB5D7BE16B616E7C240476509E /* BSG_KSCrashReport.c */; }; - 0FB7D0FA0AEE71186610F43B04E89482 /* BugsnagSessionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EA1D090A682A9E2453410A8C657DBBD /* BugsnagSessionTracker.m */; }; - 0FCF8A6D7D770156352EFB7F8B790D7C /* NSError+BSG_SimpleConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = B7A2694A8E0D25AA9F3005F9D6B28B45 /* NSError+BSG_SimpleConstructor.m */; }; - 0FD44CE17B9EDD07C17D8409BBB20765 /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = AC73932DB13C2FFCB3452CFEEAC680A4 /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0FD596FBE550953CD15F5607D99F958B /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = DB2062E0D7315AA34648E455A6E299B0 /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 10168B721987DC2FA1F6508094876B8D /* BSG_KSJSONCodecObjC.m in Sources */ = {isa = PBXBuildFile; fileRef = 24D442B49D8704EC885290B27F4261E6 /* BSG_KSJSONCodecObjC.m */; }; - 101E1B4ACE356E9F4F94FD5EBB71BE85 /* BSG_KSSysCtl.c in Sources */ = {isa = PBXBuildFile; fileRef = 0E236CE2865A5040C193A4DFAFD30940 /* BSG_KSSysCtl.c */; }; + 0F3C55B3AD23D445D2C973DC06EF00BF /* BugsnagCrashReport.m in Sources */ = {isa = PBXBuildFile; fileRef = E0CFCA19099474C4FB8877DE89AE37CF /* BugsnagCrashReport.m */; }; + 0F3D589E134AAC1A8C2D94EF3BE48EA7 /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DECC37F011305E4F8D5201A3D90010D /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F3E8D4BB17DBFF30E41EFB555B29895 /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 124B50748AC829D4F462CD6D1806C564 /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0F4D40CEBE58229EC7B0B854D6E5FAD9 /* BSG_KSCrashSentry_User.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D86346C2AE41566D1B246082A4B399A /* BSG_KSCrashSentry_User.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F74D6E0F1A38843AB6578A45C4430F2 /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 81143DA51A172C18B1CD38A0FD36407D /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F9A9B467AFA8D375F679F23590C7A04 /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = FB336E236A070DCDE8ACF59ED7B49D2E /* ja.lproj */; }; + 0FAA30AD698ED824A3B229298FEEA782 /* BSG_KSCrashReport.c in Sources */ = {isa = PBXBuildFile; fileRef = 7DA61CD0F80A05EAE58026DA7C88C082 /* BSG_KSCrashReport.c */; }; + 0FB7D0FA0AEE71186610F43B04E89482 /* BugsnagSessionTracker.m in Sources */ = {isa = PBXBuildFile; fileRef = A2A6138081D3600CEEF94F4879B26747 /* BugsnagSessionTracker.m */; }; + 0FCF8A6D7D770156352EFB7F8B790D7C /* NSError+BSG_SimpleConstructor.m in Sources */ = {isa = PBXBuildFile; fileRef = C36359EBCDDD39DCBDD63F8A091AF733 /* NSError+BSG_SimpleConstructor.m */; }; + 0FD44CE17B9EDD07C17D8409BBB20765 /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 99AC0483E6DC8F46D5EF5A81815C0919 /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0FD596FBE550953CD15F5607D99F958B /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DE3D54D2AA53A71F3B57D92ACDD7671 /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10168B721987DC2FA1F6508094876B8D /* BSG_KSJSONCodecObjC.m in Sources */ = {isa = PBXBuildFile; fileRef = 2842B5FFC5432783179FF44CD633B830 /* BSG_KSJSONCodecObjC.m */; }; + 101E1B4ACE356E9F4F94FD5EBB71BE85 /* BSG_KSSysCtl.c in Sources */ = {isa = PBXBuildFile; fileRef = 06277AF1991D365E5B1E771917DD49D7 /* BSG_KSSysCtl.c */; }; 1045178BFBC6E58CEDC65E19F91A7CB9 /* GDTFLLPrioritizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 500E76CDFB8113AFD9AC1DB0CB454843 /* GDTFLLPrioritizer.m */; }; - 107C4519DAD004793550C86DB342BF13 /* JSDeltaBundleClient.h in Headers */ = {isa = PBXBuildFile; fileRef = F9DF1E342E98C711D63EE7113CD4DE7D /* JSDeltaBundleClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1092BB8011776EF67080DC8649C68F22 /* RNFirebaseAdMobRewardedVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = 52ED7149F0530BAF25F6FC7EDC45E587 /* RNFirebaseAdMobRewardedVideo.m */; }; + 107C4519DAD004793550C86DB342BF13 /* JSDeltaBundleClient.h in Headers */ = {isa = PBXBuildFile; fileRef = AAE04C89918794FD8CEB73ED15E0C056 /* JSDeltaBundleClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1092BB8011776EF67080DC8649C68F22 /* RNFirebaseAdMobRewardedVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = F524D386BD08B9CEE9E5CAC22FFEFE24 /* RNFirebaseAdMobRewardedVideo.m */; }; 10B88123E4B69BD0762CDB5A90CF066A /* GULSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 238912792225FCFD2816B4E4CF1D3D79 /* GULSwizzler.m */; }; - 10D68B02FDF05C99237E067F9918509D /* RNFetchBlobRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DB94419CD67EC0E57F01CDB71BBEDFF /* RNFetchBlobRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 10F2442EBE6313786A5CD8D0DB09736C /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 979F8F7FCE58E9A2AC564E172E069713 /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10D68B02FDF05C99237E067F9918509D /* RNFetchBlobRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 1879999503453BFC58A6601D7FAA72B5 /* RNFetchBlobRequest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10F2442EBE6313786A5CD8D0DB09736C /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = BDD4EC0D01813218623B5372433F8219 /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 110663446F2A96F5275705CA7143F736 /* FIRInstanceIDLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = FBB3943BA57703F03AC1AE6E9180EC2B /* FIRInstanceIDLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 110686C3B9BFABED7EF510599B8F4BA4 /* RCTKeyCommandConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 75C00F147A90C528C89CF4C55C3B7E47 /* RCTKeyCommandConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 110BBF5833CF8C4CA65E11D6C0374191 /* BSG_KSJSONCodec.h in Headers */ = {isa = PBXBuildFile; fileRef = BA78A1772740B4E478C916E6E8A882DE /* BSG_KSJSONCodec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 110686C3B9BFABED7EF510599B8F4BA4 /* RCTKeyCommandConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E93ECCDA1756C61A19DA411120DAAB7 /* RCTKeyCommandConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 110BBF5833CF8C4CA65E11D6C0374191 /* BSG_KSJSONCodec.h in Headers */ = {isa = PBXBuildFile; fileRef = B43642FD0E1029A07935168BAA1A3FE9 /* BSG_KSJSONCodec.h */; settings = {ATTRIBUTES = (Project, ); }; }; 111BF626ABBCE8E04BB4E1EEB8787C09 /* SDWebImageCacheSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = C98669397B6EB380F73981625F007E41 /* SDWebImageCacheSerializer.m */; }; - 1152E236D3BFBB5B1171698F8642FE45 /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0D1A6C113D375ECC144BAE47C35619DA /* JSIndexedRAMBundle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 116192D11F0F7C27B891EC46BEB67776 /* BSG_KSCrashSentry_NSException.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F6D899B01559CE22200709ABCCA5208 /* BSG_KSCrashSentry_NSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 111D765C73417F5F3D9DB4A549BF16B7 /* EXLocalAuthentication.h in Headers */ = {isa = PBXBuildFile; fileRef = 61ACE6EF73A38A8530394E258344A58E /* EXLocalAuthentication.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1152E236D3BFBB5B1171698F8642FE45 /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E5D773D06094FC95830D197D526EAF1C /* JSIndexedRAMBundle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 116192D11F0F7C27B891EC46BEB67776 /* BSG_KSCrashSentry_NSException.h in Headers */ = {isa = PBXBuildFile; fileRef = 856E1B287658CC783C39D96BB611437E /* BSG_KSCrashSentry_NSException.h */; settings = {ATTRIBUTES = (Project, ); }; }; 11629DF38EC6C86FE4002B0EF764297B /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = AF56195464AFAF7C34D6F48C7CFF702E /* UIImageView+WebCache.m */; }; - 118927A3BC6A658BB88536CE7C1B0BE3 /* BSG_KSCrashState.h in Headers */ = {isa = PBXBuildFile; fileRef = B6FCCC857829E3AADFB1FD2840A10FC9 /* BSG_KSCrashState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 118ECA72611CB2FD2EEC1AC53D8E029C /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E325B1606A5D238A63D17132321A066 /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 118927A3BC6A658BB88536CE7C1B0BE3 /* BSG_KSCrashState.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DAA2E69EEF67212019EA6FF8CD3E96E /* BSG_KSCrashState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 118ECA72611CB2FD2EEC1AC53D8E029C /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 86990969EC135D10A5E2D91C04647541 /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; 11AB86078F205218D679E1C0BB086684 /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B60F0B412AB14099AD2E2BCB853B9F5 /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; 11B33B2F8BB6CFADE2A5ED140CFEC8C1 /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 993AC02EC1C111E4334D17D3E0BBE05E /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; 1229180557BB3A7AD13E3DC16B283B14 /* SDGraphicsImageRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = A2CB7B6EE46AF3166A4B3053A322A61C /* SDGraphicsImageRenderer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1234DA362C104A5687EE842DEE6540AE /* BugsnagErrorReportApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A4190ED83DB8EAE5795F16E262F348 /* BugsnagErrorReportApiClient.m */; }; - 12478C3DEA4C049CB9A2CA1CD20C89DA /* rn-extensions-share-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 69228D228ED58E48577E1E205972A156 /* rn-extensions-share-dummy.m */; }; - 125342FA79F416BFC2462CBEB29FBD3B /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 57EF022C73BD0F88A58907CD6F984194 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 126F40666E812A4A6E90817FF328B49D /* RNFetchBlobFS.h in Headers */ = {isa = PBXBuildFile; fileRef = 0036AEE678787725C977E1A36F674AD6 /* RNFetchBlobFS.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1234DA362C104A5687EE842DEE6540AE /* BugsnagErrorReportApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 5780B4F8BC5641AAB90E5090C945C115 /* BugsnagErrorReportApiClient.m */; }; + 12478C3DEA4C049CB9A2CA1CD20C89DA /* rn-extensions-share-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EB4958C1AAE02BF779DE65F281D502C /* rn-extensions-share-dummy.m */; }; + 125342FA79F416BFC2462CBEB29FBD3B /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FFD0AEBB89BB36C053458AF452310619 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 126F40666E812A4A6E90817FF328B49D /* RNFetchBlobFS.h in Headers */ = {isa = PBXBuildFile; fileRef = 47F3DD333F04504A9B36039EB3EBC91E /* RNFetchBlobFS.h */; settings = {ATTRIBUTES = (Project, ); }; }; 127076FAD518DE8F520B404457D45FF5 /* FBLPromise+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C015C102D6AB79D534F16ADF531CE8A /* FBLPromise+Testing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1281344D19FA3223B267A1EAA6DEA09F /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5052E068A4355F42522D18101FD6C7DE /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12A09B07EAE7194E9F183DF6EAEB4850 /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 515773303247D3067EB6FBB51226837D /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12C621AF654295B051104624EC13F961 /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = BE6361C2C7231939D52869D9648726BE /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12DD5DE7278177DF30D74E5E4991BEA5 /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D1FE3F14A74BC1C3E1C6D3007D6703E /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 131A4F913E2F1E98913D8D766736C5C1 /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = D155EBCDFBC684096F05862E01325617 /* JSCExecutorFactory.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1328941F49991BEB7900B9FAE0861076 /* RCTI18nManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 83882F5B7809A24B561A246EDBFD3F52 /* RCTI18nManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1328F683A4C0D079350259A18A68938A /* JSINativeModules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D36CA742E8FB53ACC7C054CA44A455B /* JSINativeModules.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1281344D19FA3223B267A1EAA6DEA09F /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BEDD643D44C870406004853F80397131 /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12A09B07EAE7194E9F183DF6EAEB4850 /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 30E517EE6A81BC1E2A5ABBEB29553B67 /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12C621AF654295B051104624EC13F961 /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D34EDB4F334F9A61289CC7A8CE81336 /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12DD5DE7278177DF30D74E5E4991BEA5 /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 388E38F332625087DCF2599BD7A2301D /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 131A4F913E2F1E98913D8D766736C5C1 /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = AC97BD08333B42572B8A6C3044067098 /* JSCExecutorFactory.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1328941F49991BEB7900B9FAE0861076 /* RCTI18nManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E1E29DDBDC1101D3DCDB77C88EA79F65 /* RCTI18nManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1328F683A4C0D079350259A18A68938A /* JSINativeModules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1C9D9B0AD38BEEFDC45CED6AF59EA439 /* JSINativeModules.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 1340A92BC48BF0D0E320FFD57737B166 /* FBLPromise+Catch.m in Sources */ = {isa = PBXBuildFile; fileRef = 9338EA7FE417C2BDF76DEEE30198B2B8 /* FBLPromise+Catch.m */; }; - 1352441B7E9907AD4E56358E520341F0 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 17B79ED9D31C625708EBCDCECF41D213 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1354B5A202FE5B927603FE3F3934ADF1 /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 750A887CC9515799F336697AF4FFAEEC /* RCTNativeModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 135CA47E90F11A11511D769C60754F77 /* REATransitionValues.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F03D14446D09D90638B1413DA22CEF7 /* REATransitionValues.m */; }; + 1352441B7E9907AD4E56358E520341F0 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 493FAAFD3937E8A839C0988482F7CEB9 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1354B5A202FE5B927603FE3F3934ADF1 /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 55D3CD657EE4B6F69D3372EF182FD636 /* RCTNativeModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 135CA47E90F11A11511D769C60754F77 /* REATransitionValues.m in Sources */ = {isa = PBXBuildFile; fileRef = C57ADAB61AC6F95EDE1531DCF48B51A0 /* REATransitionValues.m */; }; 13908C215FAF98E1987E6DD3F7A6C858 /* GULNSData+zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 93C7F9D33807C629347B5CC327303501 /* GULNSData+zlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13910E80E165B0FD5041DF222C1B3339 /* ARTShape.h in Headers */ = {isa = PBXBuildFile; fileRef = A5ABA0E10FE37349D53EF47074C017B0 /* ARTShape.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13B3A8F3BBFB94FC266C8B2D127F2001 /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = 8546F819E0C95CF881DADD48DF3FEBA9 /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 13910E80E165B0FD5041DF222C1B3339 /* ARTShape.h in Headers */ = {isa = PBXBuildFile; fileRef = B85468D6D253824D2ADD8B2A0CB3AA2C /* ARTShape.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 13B3A8F3BBFB94FC266C8B2D127F2001 /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = B5218BA52902DA678B5816D60E5C2B27 /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; 13DB00DEA52829F591682707236F7779 /* FIRInstallationsIIDTokenStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 09A8F5B7DA6974622D6C9A6189F7FAEE /* FIRInstallationsIIDTokenStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13EAEB1E6CFD48E9CFE15F88743AC92C /* RCTAppState.m in Sources */ = {isa = PBXBuildFile; fileRef = F066D29AC5292924001F77DF2C215838 /* RCTAppState.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 141CB062270AB0D64040EE9FF7CCDFC0 /* RCTCustomKeyboardViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 44BE015BEB9560624AB2F0EDA99AED32 /* RCTCustomKeyboardViewController.m */; }; + 13EAEB1E6CFD48E9CFE15F88743AC92C /* RCTAppState.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FA43C006EA2B6CF298FE00569849C4E /* RCTAppState.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 141CB062270AB0D64040EE9FF7CCDFC0 /* RCTCustomKeyboardViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 93397AD379506B0DFA85AB22E1858FC5 /* RCTCustomKeyboardViewController.m */; }; 143514A20BA542FDEC6E1C150B00248B /* FIRInstallationsStatus.h in Headers */ = {isa = PBXBuildFile; fileRef = 226470D5AC918D710F1EE1BDBAADC256 /* FIRInstallationsStatus.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14422B587C7D1474F869D259CFF998CC /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 686B2034BBE247CCD34FA7167EE6C12A /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14422B587C7D1474F869D259CFF998CC /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B3147B54DEFE43FB858A7D64F5171C34 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1451A870A667B770CA7921A66DF1382B /* FIRInstallationsItem.h in Headers */ = {isa = PBXBuildFile; fileRef = D3ABC6469D72A242803A91AF2DA0B153 /* FIRInstallationsItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14660286F6DC6FCABD38E2C1F70CFC01 /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = BF271218309EEE07EE2F305F9BD4CA0C /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14660286F6DC6FCABD38E2C1F70CFC01 /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AEEFA27BA1AF4F108E5CAD8B09C5DD8 /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1478C97F0EFA9E58B5A017551A091B98 /* SDWebImageError.h in Headers */ = {isa = PBXBuildFile; fileRef = 726CEC5D657E14C2D28E2608DB007104 /* SDWebImageError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1479BA84B9B30E6D9879CA6C0135D930 /* EXVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 02B778A4B4AB6FC889FF15E6943BFC10 /* EXVideoPlayerViewController.m */; }; + 1479BA84B9B30E6D9879CA6C0135D930 /* EXVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8120E4F98D1D00F4339976D8EDC1057F /* EXVideoPlayerViewController.m */; }; 14A3CA4B77271ED4415356A1FBA7362F /* dsp.h in Headers */ = {isa = PBXBuildFile; fileRef = C74C60148A4948BAD446E2F2B11586EB /* dsp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14AA7CA15F034772E8B2636CFE2A5C85 /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 79384E3DF198EE6F9073B43F79D0E5BE /* ReactCommon-dummy.m */; }; - 14BCE7072FC4CE33BC35324A78BE2FAE /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C8E045F2FD5C7D631C293C0F73C0604 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14DD05E4CFBF56241AC5D65134AF6AB8 /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = A93D3241B9A61C0E3AF6A18EE3C01E28 /* RCTSinglelineTextInputView.m */; }; - 14F9F3C4C0A1E8EF80C71FA3A569FDF1 /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 900603B2A3FF1E8D2B04E7D5A416BB3B /* RCTInputAccessoryViewManager.m */; }; + 14AA7CA15F034772E8B2636CFE2A5C85 /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D237A584B9F9D09B744C5B9A291ED87F /* ReactCommon-dummy.m */; }; + 14BCE7072FC4CE33BC35324A78BE2FAE /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CE7F2C3E9991FC3578F7E67BE5C9393 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14DD05E4CFBF56241AC5D65134AF6AB8 /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 978DA240A5DA324CB45468880D17880F /* RCTSinglelineTextInputView.m */; }; + 14F9F3C4C0A1E8EF80C71FA3A569FDF1 /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F35E076CF529C953D063452BE7B556C9 /* RCTInputAccessoryViewManager.m */; }; 14FBD8CB3447A6D5C521A0193AF4C43E /* GULNSData+zlib.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B3000A1D45E185CABEFD0B060F04FC4 /* GULNSData+zlib.m */; }; - 15135A9A67B4019F2CC03E7D5FACA0FE /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BD9BB7CAAB97EC50B163F88F0959E1C5 /* RCTTypeSafety-dummy.m */; }; + 15135A9A67B4019F2CC03E7D5FACA0FE /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 26E43B346470D073A3946E6E3CE86745 /* RCTTypeSafety-dummy.m */; }; 1536DE229D62C9EF155775D756DD3921 /* SDAsyncBlockOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = C4539C0D5139FA433EA40799F1AC83A5 /* SDAsyncBlockOperation.m */; }; 153C36E5468C038F1974115A982058E8 /* GDTFLLUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B8FEC8581AD19DDD78ABBB18ECE2F22 /* GDTFLLUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 154C752B3AAEDBCD978036AE32CAB1BD /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = EB5684495A6F8B21DC40DE6D45F5775C /* RCTValueAnimatedNode.m */; }; - 1557BAF14C9A6976E7C40616CCA7944C /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 681FD24565105508386EF131BF1F8550 /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15AF61B7B72DD93E6B1F6FC5B420F7DF /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = DC4479DD14256D476C9D0287D63ACBDF /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15B714B84953652DA8EAD8B5661F5D17 /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 04BD6390C90806014868F7551406BFDA /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15D79F4277BA759EC85E7DD868E3A4C4 /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B69802FE5D6973E0F3F74B9BA5769C1E /* RCTSwitchManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 154C752B3AAEDBCD978036AE32CAB1BD /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F9325A0ED5CAF49D74FE46655BD88863 /* RCTValueAnimatedNode.m */; }; + 1557BAF14C9A6976E7C40616CCA7944C /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 807E1456005CC3EAD5A089FFF018EF8F /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15AF61B7B72DD93E6B1F6FC5B420F7DF /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ABA252CBB6E3B2F8D94515CDAFF5ED8 /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15B714B84953652DA8EAD8B5661F5D17 /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C7515F3955A7A7A6F1E0A8089381F968 /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15D79F4277BA759EC85E7DD868E3A4C4 /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EB7D50EFBEB2E508AF716F3712D90713 /* RCTSwitchManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 15D7CCF59D45A8AEB4224BD291FC9910 /* huffman_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C4857A0842D2EBB815D30CCE3A20B92 /* huffman_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15F44C32023C26032714E53545E8B3F5 /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D7F538041CF2C487C74839BB4E2EF1F6 /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15F44C32023C26032714E53545E8B3F5 /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 943E9B246FD22B5A90F44E9DEE7538D3 /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 15FA0CEC28541CA4EF930A1163CEAB50 /* lossless_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = D93D3654709D1331D79514EC1B960450 /* lossless_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 164A3F991FCC1341F1E46E003371F224 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = B8584EC9E59E9179ECDECB66BCB46139 /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 16899D5B9029FB6D5A400783A624C1C8 /* EXWebBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = 02780F2B2D2239DCC2F77193E2D15E82 /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 169B31B58BC0F2BBFA82EAC8F165F361 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = E58A1CD42F0356C6697E2AC06FEA30E6 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 170322932D8FC0F02AA360A25D994D98 /* UIResponder+FirstResponder.m in Sources */ = {isa = PBXBuildFile; fileRef = CE01AF03A65439C83A9931393091FF1C /* UIResponder+FirstResponder.m */; }; - 1728749B028AD1D781945AAA91BE736E /* AudioRecorderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A5FA4F553903242373D9D4AA2A1E8ED /* AudioRecorderManager.m */; }; - 172E676A7EEA5B4EB058AFE8453B62C0 /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 088B3B353DE06ECB638B9C33B6563F45 /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 173B9B2399E756F996763591588AFE57 /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = B78E97CB66220ED2682AD60E2CFDE2C9 /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 176E21BC9C50FFBB8929F3C72F7E3241 /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = A13E80AE6A729D77A5B03D2453A07BFF /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17DFF9A451798288365E8AB8A0784530 /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E8C0C5F92CD5E2E03FE5D8BD19B7A42 /* RCTScrollViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1832399A5D86191FBC62039FAA886F24 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 0728E8867E1424D47A7CDFCDD3463E04 /* EXWebBrowser.m */; }; - 18508BF0F3BB7FB5771E7208D859296F /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 723E63AFFF5020146327CCB941345F0D /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 187D94A9F0B845CEE3B305C8ECBA9A13 /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = BB7FD58A664FF21E433E04797D15A3C4 /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 189B638C3899F769A08E0DE1EFB64FB3 /* EXRemoteNotificationPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D0188ABDD81B9AA39D4779AFAEAE851 /* EXRemoteNotificationPermissionRequester.m */; }; + 164A3F991FCC1341F1E46E003371F224 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2323F367B32053EA27F9D766634A5DDB /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 16899D5B9029FB6D5A400783A624C1C8 /* EXWebBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = ACD51DA66542BC940D4A5FB04D6C0DAB /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 169B31B58BC0F2BBFA82EAC8F165F361 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 14A1909E30018152870D41BE4CF7E326 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 170322932D8FC0F02AA360A25D994D98 /* UIResponder+FirstResponder.m in Sources */ = {isa = PBXBuildFile; fileRef = 75E365638CA123FC673096D535EC8E84 /* UIResponder+FirstResponder.m */; }; + 1728749B028AD1D781945AAA91BE736E /* AudioRecorderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 76E8F7051C8AE4EB9A276F0FA68D5A5C /* AudioRecorderManager.m */; }; + 172E676A7EEA5B4EB058AFE8453B62C0 /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F9250A90777B0FF446D2599F1718133 /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 173B9B2399E756F996763591588AFE57 /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 77B65A07E70545FED8EB9F3870F539D4 /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 176E21BC9C50FFBB8929F3C72F7E3241 /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = EEDE915C22C65B42CE4277C418DB3213 /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17DFF9A451798288365E8AB8A0784530 /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5567F41097BA02556E86FC147A5DA435 /* RCTScrollViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1832399A5D86191FBC62039FAA886F24 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = C78CF85D200C3733B1D747C9702711F1 /* EXWebBrowser.m */; }; + 18508BF0F3BB7FB5771E7208D859296F /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E12037BC069B82359BD9130847A65C00 /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 187D94A9F0B845CEE3B305C8ECBA9A13 /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 87F1FB06E4034624ADF89C7264155A30 /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 189B638C3899F769A08E0DE1EFB64FB3 /* EXRemoteNotificationPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = E3D1E7716CC44DDA6ECFCA7F38BAFD28 /* EXRemoteNotificationPermissionRequester.m */; }; 18A68BC1A619AFFD7CCB45B0AEB98715 /* SDInternalMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CA3042722DE6BE862DDD182F6A65072 /* SDInternalMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; 18CE7AC942DCECCDCE8C8153D7CA9E2C /* SDImageIOAnimatedCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 0078CF9DAC8CC4187F6E291B8F51727E /* SDImageIOAnimatedCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 18E054C5BBDA83CCE21A718C8DD17262 /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 05D21B2E62B525961EA9BE1309FB1D32 /* Unicode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 18F803F363DA4D252D73E4C3C33535F6 /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = AC93F64C4FF795DA7D71958ED0C0C12C /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18FF465AC2ED82AD0A5A0501AACD0956 /* BugsnagCrashSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = B22482A857E4CE1F9EC4A91267459DEE /* BugsnagCrashSentry.m */; }; - 1921059D97551DED6DBBA916DBA150C5 /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 30041F3D20F1C7B733ACFE6E47146E4B /* QBAssetsViewController.m */; }; - 19389D1DC51D68F8312739317DE39C2A /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 42365822458AAD28BC429F6D3DB3E7F9 /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 195EDF63D05599454DC50CD6100A1D14 /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = B773A8910CCA99ECC89E2A7DA066B7E2 /* RCTPerformanceLogger.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 19A77F5198AE35F6170EF743E166358A /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 032D1211FB26C186977EF1BE4D4D822D /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18F803F363DA4D252D73E4C3C33535F6 /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = DD7B1DDC7B038544A875E6A822F28386 /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18FF465AC2ED82AD0A5A0501AACD0956 /* BugsnagCrashSentry.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E74D502DF45C3DB6C2002E30237D083 /* BugsnagCrashSentry.m */; }; + 1921059D97551DED6DBBA916DBA150C5 /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = ED51C0ACBD2A3F1EE152AAFEDCDCE3AD /* QBAssetsViewController.m */; }; + 19389D1DC51D68F8312739317DE39C2A /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 04ED4DEE7B509B2575509E63CEB2B1AD /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 195EDF63D05599454DC50CD6100A1D14 /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = B65DD7A796FA1FE4E5337786362D6ADF /* RCTPerformanceLogger.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 19A77F5198AE35F6170EF743E166358A /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 30B150C99EB1AAE67D345BC94069538D /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 19B3BC4E2828FB30D6FE19E66BBBC724 /* token_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = A99DA828BE8FDFE29CCA18FF1A666E27 /* token_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 19BB6A5959515A1DBDDC1B41C2E63739 /* FIRCoreDiagnosticsConnector.h in Headers */ = {isa = PBXBuildFile; fileRef = 52CDBAFD1C6554282FCD586FFBA8FFFD /* FIRCoreDiagnosticsConnector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A02EAB59D9B047FEBAC7C67C5DF51E5 /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C7816C48F52BFEBC58707E468ECDB58 /* RCTSurfacePresenterStub.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1A10FA3F9DF4CDF788BDB424013C402F /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6797C894856069CDC3C86C11A7403793 /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A1290C7A860E755FC08591CB199176F /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 984EC3D8454467D54E7F433691CF8B2D /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A02EAB59D9B047FEBAC7C67C5DF51E5 /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = B0A171BA2CE9A319FDABBC541555819E /* RCTSurfacePresenterStub.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1A10FA3F9DF4CDF788BDB424013C402F /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = B6983AF95B39257FA2BE471713F402B1 /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A1290C7A860E755FC08591CB199176F /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A9503EF536E523F96203052014C6BAF4 /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1A491A5EF79205088E6544696C92D02F /* GDTCORTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 92839ECA01AD51593C6AC08DBD9EBCC2 /* GDTCORTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1A8C26E48B802ECAF127BAB17E884ABA /* FIRInstallationsStoredItem.m in Sources */ = {isa = PBXBuildFile; fileRef = C7EFB60008DF9B71E0BF22DE8B9F1110 /* FIRInstallationsStoredItem.m */; }; - 1A9087134F848791F290A446F14D53BA /* react-native-notifications-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8378085AD74EAA67AB32C6A675D5FA25 /* react-native-notifications-dummy.m */; }; - 1A91DAC8DA3EBEAA0D5111513D568D69 /* RNUserDefaults-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A3D1F7342DC265DEEA84026C599DFFD /* RNUserDefaults-dummy.m */; }; + 1A9087134F848791F290A446F14D53BA /* react-native-notifications-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 83E049A998106BC1D48E224B840B4E17 /* react-native-notifications-dummy.m */; }; + 1A91DAC8DA3EBEAA0D5111513D568D69 /* RNUserDefaults-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 604580A241970FCE2252B38D3AD2EB26 /* RNUserDefaults-dummy.m */; }; 1ABA2B507962FB92E51A2CA70A819741 /* FIRErrors.m in Sources */ = {isa = PBXBuildFile; fileRef = F43FC1D38479CA8483FA503030EE4B5B /* FIRErrors.m */; }; - 1AC5F470D468CCBF2A8B1D2FC1CA7A01 /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = B4A19504AAFCFCDCAB0D4D298165243D /* RCTDecayAnimation.m */; }; - 1AFB7660AED3CB914CF01D42131CECAD /* RNFirebaseAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = 65B09B7C2B056521DA317BC0C7FDA36C /* RNFirebaseAuth.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B0BF1AFE2A309247EC3F75FFF585413 /* LNAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46966B32B9B5CCB0A50F9C507E414FEE /* LNAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B10D25B28351FF12A8C17090C5309B3 /* RNFirebaseMessaging.m in Sources */ = {isa = PBXBuildFile; fileRef = C814CFC1A87CD8295FCE71C6CCC1F35C /* RNFirebaseMessaging.m */; }; - 1B11B7875E992E06B9CF0335A921EA94 /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = FA5E06582BE3DC32D7AF5953A9CF4512 /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B72DD3B96B82F7387FC92F861EB8BAC /* BugsnagSessionTrackingApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = AAB1736337E11BB29D3ECDF0F8A97C9A /* BugsnagSessionTrackingApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B7460A41AE9C572291675EBBA73DBF3 /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AE63784DCC7682872AEA595CE8F18A1E /* UMViewManager.m */; }; - 1BB646B47D3E345D72B5CFBDE7DAC2EA /* READebugNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 300E13D8CD9ABBBE84F65966C2E2D89F /* READebugNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1ABD61549684E693C9ABD854DE580471 /* EXLocalAuthentication.m in Sources */ = {isa = PBXBuildFile; fileRef = FB1F2A873B83D185B95AD54D4488C69F /* EXLocalAuthentication.m */; }; + 1AC5F470D468CCBF2A8B1D2FC1CA7A01 /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = E2170B422AE233CA0E843E1C6F8C5AF6 /* RCTDecayAnimation.m */; }; + 1AFB7660AED3CB914CF01D42131CECAD /* RNFirebaseAuth.h in Headers */ = {isa = PBXBuildFile; fileRef = 392498665B438714F134FCBC21214666 /* RNFirebaseAuth.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B0BF1AFE2A309247EC3F75FFF585413 /* LNAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = C1FCBE451CF25A5140A2A3847F531E84 /* LNAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B10D25B28351FF12A8C17090C5309B3 /* RNFirebaseMessaging.m in Sources */ = {isa = PBXBuildFile; fileRef = 54E3C1C3BCCE56C706BFA114BE0B4287 /* RNFirebaseMessaging.m */; }; + 1B11B7875E992E06B9CF0335A921EA94 /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E5A3FB0E0F5259719BE815748EA69DC /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B72DD3B96B82F7387FC92F861EB8BAC /* BugsnagSessionTrackingApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CAD3E89099CF2EC94DA2040159C4FB1 /* BugsnagSessionTrackingApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B7460A41AE9C572291675EBBA73DBF3 /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E879EE624715C69DD9F0F4E2CE434B74 /* UMViewManager.m */; }; + 1BB646B47D3E345D72B5CFBDE7DAC2EA /* READebugNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 50134151E35E1B96FD28AC7ED0800892 /* READebugNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1BB7DF35DA8BC3E5E76D9ADB62B3BAC6 /* lossless_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 32964D290663FAA0AEFD17DAEBD90947 /* lossless_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 1BD314A43A3B0FD30BACF7FB0DD8E89E /* REAAllTransitions.m in Sources */ = {isa = PBXBuildFile; fileRef = DA6FEACD26AD2407B6B041023035776F /* REAAllTransitions.m */; }; + 1BD314A43A3B0FD30BACF7FB0DD8E89E /* REAAllTransitions.m in Sources */ = {isa = PBXBuildFile; fileRef = 91EAA0DE0CBBA7A05103808C326CDA3E /* REAAllTransitions.m */; }; 1BDF6BD96EE33DE39DB37AB25232CA12 /* FIRInstanceIDAuthKeyChain.h in Headers */ = {isa = PBXBuildFile; fileRef = F3EA4E1C67B5BF8BD4E1E55A6409EB28 /* FIRInstanceIDAuthKeyChain.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1BF065CBF59F4DBF141D3E85E32C7599 /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = ABD85E9167567FF451D281EBDF949DE6 /* RCTBridge.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1BF555E94A7BE625ACB1CF2549EA79E4 /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A9C9B65963A8EB86816AA8302B70D7B /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C7684185263BD3216BDDDCD068B795D /* BSG_KSCrashSentry_MachException.h in Headers */ = {isa = PBXBuildFile; fileRef = 763596D554F9B7C3843E77D1371DBAB0 /* BSG_KSCrashSentry_MachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1CC75EE4B0889B7CD5ABC6A55A77378E /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = FD39BEAA0C9C24C04CD7EF232446E9DE /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1CE0A3B74BCACF590A1E1A2BE0BF258A /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 258C24D3057222DDA044B5BA0B208E1C /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D286B93CF69BD522436DB068478A6F6 /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 58016F2081EF1C207B2899B6AED25B75 /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DC21330146F0910DFE00A496CBC37E5 /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EF2041609FEE8332151E60184ABDACE /* RCTTrackingAnimatedNode.m */; }; + 1BF065CBF59F4DBF141D3E85E32C7599 /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F0C2E0E933DF322244E10D335D3AA3B /* RCTBridge.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1BF555E94A7BE625ACB1CF2549EA79E4 /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = A0B4A06232EC276DAB783F7F1D6C5866 /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1C7684185263BD3216BDDDCD068B795D /* BSG_KSCrashSentry_MachException.h in Headers */ = {isa = PBXBuildFile; fileRef = AA0C881E8B3849CF7F576CD086990F1B /* BSG_KSCrashSentry_MachException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1CC75EE4B0889B7CD5ABC6A55A77378E /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = B5D0F0CB7563A5D8E055CE05B4F8A3A2 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1CE0A3B74BCACF590A1E1A2BE0BF258A /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 656E117710D129BCC5F46D0693DF9AB1 /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D286B93CF69BD522436DB068478A6F6 /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D8B9F732954D86D82A441E9B1D642CD /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1DC21330146F0910DFE00A496CBC37E5 /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DF6D5E0AF58DEBC7EFDA3E4CF9D871E5 /* RCTTrackingAnimatedNode.m */; }; 1DC47F2B7B43257E19EC099965EC544C /* SDImageAPNGCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 7612B1F9763549EA1DC383D43FC8950C /* SDImageAPNGCoder.m */; }; 1DC8D5909F0CC6F24EF0084ECF759D64 /* GULUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BE1EB0C0D097F1CEF044EABD60FA2B0 /* GULUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DCC3147F0B0324DA6BEFF22166809C5 /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D9CE7D0FA1F5BD8EE21C37BD6C1D84D /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1DCC3147F0B0324DA6BEFF22166809C5 /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 30C43C73342C9D6D4D64749F10018473 /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1DE2ED65A6C32CF6CC486B9DD6BEE45D /* GDTCORTransport.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D432FED92D53468BB148EBC674FF927 /* GDTCORTransport.m */; }; - 1E0A1261A07124778FD4B3B42FA9020B /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = B0D69AB0552916946CFE8510B362A05C /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E0A1261A07124778FD4B3B42FA9020B /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = 62D1CDB94E5DC720C62258096FB8F188 /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1E9BE88FA1550744658E5DF4C5E27E30 /* NSImage+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = A6C7344EA1DD6836B5D82E682D0A59D7 /* NSImage+Compatibility.m */; }; - 1E9D0476202EAFDEC48D83008CD69D7E /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = EFC4985609864B233AA0967A35A7475E /* RCTEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1E9E9841ECD43A7B59D4B9C4A24373CD /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 4537D660F139B7A00246C28ED343398A /* RNSScreenContainer.m */; }; + 1E9D0476202EAFDEC48D83008CD69D7E /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 9EBE1FD358D5DB444D1994A23AF5B744 /* RCTEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1E9E9841ECD43A7B59D4B9C4A24373CD /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = A152BFA1C5A859956B6D2415A42FDCA6 /* RNSScreenContainer.m */; }; 1F0C67962D2BB44987FD1B99593098A3 /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B408AE390C2CD577F7EF23E9F2D97CA /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1F2F9B4108921F0391A9CC05C304D013 /* SDImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 70BF969C7EE75D6BABCC43461AAEF644 /* SDImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1FBA5703F009E2F9E3B454CF8B31AA2F /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = 84ED2683F6DA3A2351D5771E9A1DCB47 /* NSTextStorage+FontScaling.m */; }; - 1FD3F9BD427A14B0A7DBE59A9ED28AEB /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E14416BDCED8734451ED493A72627EA /* QBAssetCell.m */; }; + 1FBA5703F009E2F9E3B454CF8B31AA2F /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = C9E77FEC3EF67F96CC4AC77AB9D73516 /* NSTextStorage+FontScaling.m */; }; + 1FD3F9BD427A14B0A7DBE59A9ED28AEB /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 08AC8CB8E44B9D7D19D80AA1B56368B0 /* QBAssetCell.m */; }; 1FF2393253B66E225DBF6E7B48F3860C /* FIRBundleUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = E2FDE91FD70FFC43E88F683DC84004E6 /* FIRBundleUtil.m */; }; 2001857FBC4E5A92A474A1694AE23BD6 /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08ECB6371492FBD46314AE3703CD8DAF /* json_pointer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 202AAEBEC0D471F0AC6005E0ECEE1203 /* BSG_KSArchSpecific.h in Headers */ = {isa = PBXBuildFile; fileRef = CBB61D1C8E5DC016AF00232150B33604 /* BSG_KSArchSpecific.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 202AAEBEC0D471F0AC6005E0ECEE1203 /* BSG_KSArchSpecific.h in Headers */ = {isa = PBXBuildFile; fileRef = 83DE6C3F3438F8E994848E8EFA9A1D28 /* BSG_KSArchSpecific.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2060620FDFF5B1A5D8C07E8EF403882E /* SDWebImageDownloaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = E76F1E8AD66134342407C6C7C3FD17A8 /* SDWebImageDownloaderConfig.m */; }; - 206924EB5DF82EE6DD0FCCF6588714D2 /* UIView+FindUIViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 20395FB1CD366D878DCC8C5C4C999A82 /* UIView+FindUIViewController.m */; }; - 2070FF6A8B3C8ABBD14E748FC74E8231 /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 2938D2A489876F5A5BFD04A997E25489 /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 206924EB5DF82EE6DD0FCCF6588714D2 /* UIView+FindUIViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 03E428AC1A9B8C1B06A9AE52D832972D /* UIView+FindUIViewController.m */; }; + 2070FF6A8B3C8ABBD14E748FC74E8231 /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = BCC85C917F9308976AC6ED6C364D618A /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2076F59F6E240771A5E9CFFD8205AAC3 /* GDTCORRegistrar_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 78D16CA96B3633E9D5C63D2D8DEB3AFD /* GDTCORRegistrar_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 208F0F89A59307CFD4DBEE7148C57E22 /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4F3DF8CC066372315A0987F5ADAB7C79 /* RCTImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 209B337BCC8D29242D29EDFAE0AC53E7 /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = AF2C13F10534DCE134F4B309C3D6B264 /* RCTSurfaceHostingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 20A3DBEBF84B486EEB93BD75A146033D /* REAConcatNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C05FA934427F21B6B65325D242CAB121 /* REAConcatNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 208F0F89A59307CFD4DBEE7148C57E22 /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = E17056756AD03B5D1A3A24AE1C8217A1 /* RCTImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 209B337BCC8D29242D29EDFAE0AC53E7 /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = FC106E9BE9BF1893772A66FAF3F9D3C8 /* RCTSurfaceHostingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 20A3DBEBF84B486EEB93BD75A146033D /* REAConcatNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DE8A4F7C409117A3DC6A2E37ED2DF60 /* REAConcatNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20A5F474212746352B444046C98E45C2 /* SDWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 85852013697E914BA35F277826FB9CEE /* SDWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20B2CC1FA97984EE397092FF8B25018B /* ARTGroupManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 96AA77E0285EDD12927EF15AB23471E4 /* ARTGroupManager.m */; }; - 20B95512DF1DDE97DC9AB8856B976D55 /* RCTBlobCollector.h in Headers */ = {isa = PBXBuildFile; fileRef = 80A2424271BAC935A2EA038E05CD2945 /* RCTBlobCollector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20E395C9875740A8A614B3B3F1739656 /* RNFirebaseAdMob.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A07FFDF4D4BA10363CB9C0F65B38D36 /* RNFirebaseAdMob.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20B2CC1FA97984EE397092FF8B25018B /* ARTGroupManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D499DB14204DC262235EAD034FA63FC1 /* ARTGroupManager.m */; }; + 20B95512DF1DDE97DC9AB8856B976D55 /* RCTBlobCollector.h in Headers */ = {isa = PBXBuildFile; fileRef = 78444D9D4D9D3C0917B8998976E40C70 /* RCTBlobCollector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20E395C9875740A8A614B3B3F1739656 /* RNFirebaseAdMob.h in Headers */ = {isa = PBXBuildFile; fileRef = D629257FE572D69ADAC74927CF7D729B /* RNFirebaseAdMob.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20F03A0EE0116A9EDABC5AB21DC39778 /* GULSecureCoding.m in Sources */ = {isa = PBXBuildFile; fileRef = 76248F9402D4DD786D6A8E7AA04A7A4C /* GULSecureCoding.m */; }; - 21227AB74B4FBEF7FEE5EA1C0AEA6708 /* RNFirebaseAdMobInterstitial.m in Sources */ = {isa = PBXBuildFile; fileRef = DCEEDFB15DFD2A72A2E61D28D62EDDAD /* RNFirebaseAdMobInterstitial.m */; }; - 214C64C44656A5B63CAF20CF8DDCAD76 /* BSG_KSCrashC.c in Sources */ = {isa = PBXBuildFile; fileRef = 6FE59B916214115894E2C40051662512 /* BSG_KSCrashC.c */; }; - 21B97B8F1D7EE4D61F5ED7BA11086BAA /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F61848737EFDD7070BDC3E278979E0B /* RCTMultipartDataTask.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 = 35D78EEAD48E1A7E264E5562768CAF17 /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21227AB74B4FBEF7FEE5EA1C0AEA6708 /* RNFirebaseAdMobInterstitial.m in Sources */ = {isa = PBXBuildFile; fileRef = DE6B237DE91DF63A64ABC835E1448A62 /* RNFirebaseAdMobInterstitial.m */; }; + 214C64C44656A5B63CAF20CF8DDCAD76 /* BSG_KSCrashC.c in Sources */ = {isa = PBXBuildFile; fileRef = 4255DDF37217B80A6FC1AA87E7D961BB /* BSG_KSCrashC.c */; }; + 21B97B8F1D7EE4D61F5ED7BA11086BAA /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = B8B19FA68A32FFF3FCFA024A6DA603B3 /* RCTMultipartDataTask.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 = D6CCC3839226668399756AA19C5F9EB5 /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; 21DCB3C8CBBB0BDCA5B2F4F7D875A352 /* GoogleDataTransport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EA1D92B58046A683FB99792F54C738E /* GoogleDataTransport-dummy.m */; }; 22136FA91117A1F7ED3FF91BBC609979 /* GDTCCTPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 037048A23ACDD15887BD75AFB6F14662 /* GDTCCTPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2257612A49356B139C85021FDCFEA687 /* REAAlwaysNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D746F514705510EAC14794BD0BBB40D /* REAAlwaysNode.m */; }; - 227134EEB40138501F42DCB74D501A8D /* RNFirebaseAdMobInterstitial.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A2FEFC65024873FA80E3F728D63377D /* RNFirebaseAdMobInterstitial.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 227182585B91FF43E82847A96669088C /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = C9A1BDEB848A1F99DCC1C09C349EC3D3 /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2272F6FED3223D260ED9C5088C7B64D4 /* BugsnagSessionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = B12EE8602A823E14F0D9E8BA32311AA1 /* BugsnagSessionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2275CDE2F9E72781DD15023D75195980 /* RNFirebaseStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = DA5F0022896D247ADE85F1FC69ECDB7C /* RNFirebaseStorage.m */; }; - 22A449213EF7B85E0E070E14646F1142 /* REAStyleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 669C987C4F92702E7B0DFEF7CAAAB0F1 /* REAStyleNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22B289E96781F25C04ECCDA39C4E63F0 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3797855F893F6A103D159850627A8C6F /* RCTActivityIndicatorViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 22C893769DB69620D10DB6343A1BF40C /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = F8301A0F6A92FF3E7FBDCFC398D25ABB /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22C92FEB3B04579CFF0378E618DFB3BA /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = DA82FAFB6CA82B371281E4DB9A3EE98F /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22CEFC35D6BE5B9099CB736853ACAC54 /* KeyCommands-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EA4BAF13052EDA8C425D31E6EB4660B /* KeyCommands-dummy.m */; }; - 22FBC041FA6BDB8D31F52C96B4D0A174 /* RNBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EC16A3302BEFE7D1A384A0E2B860F87 /* RNBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2257612A49356B139C85021FDCFEA687 /* REAAlwaysNode.m in Sources */ = {isa = PBXBuildFile; fileRef = ADBB374290ACC42CF28CA9F3155AE096 /* REAAlwaysNode.m */; }; + 227134EEB40138501F42DCB74D501A8D /* RNFirebaseAdMobInterstitial.h in Headers */ = {isa = PBXBuildFile; fileRef = A2A0865FC59C46533EFBE99829F2C6E2 /* RNFirebaseAdMobInterstitial.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 227182585B91FF43E82847A96669088C /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = A94EF12DA4840DCF1D416FD566715F02 /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2272F6FED3223D260ED9C5088C7B64D4 /* BugsnagSessionTracker.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E95DBCAC6C998F70DC53712A6BECC62 /* BugsnagSessionTracker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2275CDE2F9E72781DD15023D75195980 /* RNFirebaseStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 39C1FDADC71496F9DD3313658F36CD5F /* RNFirebaseStorage.m */; }; + 22A449213EF7B85E0E070E14646F1142 /* REAStyleNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CC1C8636F6E342DC363373509099EC9 /* REAStyleNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22B289E96781F25C04ECCDA39C4E63F0 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 59B44F2096A5FF0B60BDF62BAD0EB766 /* RCTActivityIndicatorViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 22C893769DB69620D10DB6343A1BF40C /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ED91A38D50BB121286DD13CE08A30CF /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22C92FEB3B04579CFF0378E618DFB3BA /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FB14AEB040EF55E079AD9DF8E45383B /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22CEFC35D6BE5B9099CB736853ACAC54 /* KeyCommands-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 01FB45C7FD3C9C71EE2326C6D2C35FB0 /* KeyCommands-dummy.m */; }; + 22FBC041FA6BDB8D31F52C96B4D0A174 /* RNBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = D1652AA28A4E5BB9606FA0F0223880BA /* RNBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 23179720D87885A6C7BCFE8789B76AFF /* GDTCORTargets.h in Headers */ = {isa = PBXBuildFile; fileRef = 43670C6003CB892BF4EEBCCCCF5B1628 /* GDTCORTargets.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 232A5F0ADAC6F28BA824008C57E88A6F /* LNAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = BF8CBE83E30879887DB3CF9E8377D2A3 /* LNAnimator.m */; }; + 232A5F0ADAC6F28BA824008C57E88A6F /* LNAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = A6B3BE6B96843EC4E2C030914285AAE3 /* LNAnimator.m */; }; 23314833370A97855835848E48AF9CB8 /* SDAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 6689EFD327C141249C36F84B370FCC15 /* SDAnimatedImage.m */; }; - 23B2B5118824C36E0A8F3FCC2DE98C3F /* RNNotificationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 70B8EA6D227EF252F62CF777A6100305 /* RNNotificationUtils.m */; }; + 23B2B5118824C36E0A8F3FCC2DE98C3F /* RNNotificationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = D90DB9772E9FBE6044ED0537B3D578FA /* RNNotificationUtils.m */; }; 240F76F7437478A24B599EF0EB8A0881 /* FIRInstanceID_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 28FAFC7FE3AEBCDC53B7E984681EB602 /* FIRInstanceID_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24245B52141EA46A7042F4BE99AEB86E /* RNFirebaseNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DFBCBC2AB042618C7603F21EE7D8E7D /* RNFirebaseNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 243E5A16194B1BAD6EC6D914F6D1AD3A /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = C789D6FA9773A57091FEF46BF5B246F2 /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24245B52141EA46A7042F4BE99AEB86E /* RNFirebaseNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 14227FAAE815AD5DE3A7008DC8C3F31E /* RNFirebaseNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 243E5A16194B1BAD6EC6D914F6D1AD3A /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 430AB1CF43FF88FADBEFA7054F43AD7C /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 24570C884E7B05506960B1ADE2EBA32E /* demux.h in Headers */ = {isa = PBXBuildFile; fileRef = 2536DE7D124E9784E2285002DB68F17A /* demux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 247AF2B7F6D31B2F8D692A841B08815F /* LNInterpolable.h in Headers */ = {isa = PBXBuildFile; fileRef = CD0DCBF9B0CF8C7D468B1236B3A03BB6 /* LNInterpolable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24B97F4F26D06C097C3E12F6B68F04CD /* RNBackgroundTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A6DF8A0837F3F1166E6F512F59A7B8 /* RNBackgroundTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24C7E525A367ABCB6718748137DD44EE /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = F373606318091C64D597999803ADB485 /* RCTKeyCommands.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 24DC681EB1AA4E65ADA6DF92E3F69D9B /* BridgeJSCallInvoker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 71F4B7C09F01C5DE42516579F63E0ABE /* BridgeJSCallInvoker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2520BA6FFB511E1F3B13760E919E35B9 /* BSG_KSCrashType.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FAD805A430894F1296F6BEC00C7A1C6 /* BSG_KSCrashType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 247AF2B7F6D31B2F8D692A841B08815F /* LNInterpolable.h in Headers */ = {isa = PBXBuildFile; fileRef = 4772B7623E21753987A7130E8621862E /* LNInterpolable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24B97F4F26D06C097C3E12F6B68F04CD /* RNBackgroundTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = B79A67A682917EF788EB5DD261DEE70B /* RNBackgroundTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24C7E525A367ABCB6718748137DD44EE /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = 87D2BC77CB55F4F29196EF2403D8C31A /* RCTKeyCommands.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 24DC681EB1AA4E65ADA6DF92E3F69D9B /* BridgeJSCallInvoker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DF8C4FB84FC5CC63827683833BF23659 /* BridgeJSCallInvoker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2520BA6FFB511E1F3B13760E919E35B9 /* BSG_KSCrashType.h in Headers */ = {isa = PBXBuildFile; fileRef = CEB6F60F08AC675430616A8B7C20CF96 /* BSG_KSCrashType.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2521216CE078E953104465D53D96B1AC /* GDTCORAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = CB0E66A3C33EB8EEC21616C116ABB4A4 /* GDTCORAssert.m */; }; 2538800F60EA068402CA799DB74EC4BE /* GDTCOREvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 921B01A30EBFEA00540CF83973A575F9 /* GDTCOREvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 25464C199156B6F34863455C64857399 /* bit_writer_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 5890F013C17AD08F673E9838E1CBC85D /* bit_writer_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 2565B9310EC364F58EDF6D7C3E9D9E74 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5EE46B386E95AC9FBBEE856CF2383198 /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 257E5695DD14352106A5F9F2324F7403 /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F79D12827D685E7336B5329A37851D0 /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25C10CF7700C88922C4053826BE8422E /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2ABC4B4056075957F83785B658032BEF /* RCTPicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 25D1EE7FFDCEE0EBC3F03EB316E69F59 /* RNCCameraRollManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EB10853BBA6FD236AA44C5772B7ECC42 /* RNCCameraRollManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25E00F43E1EDF928FD21D8275DAD3A20 /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = A4C26C6A086FE97D34ECA021258C2368 /* RCTRefreshControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 25ED384032B9D13C5127B75C00C81489 /* BugsnagApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = BA4535A50B3AB47322F5447F92AF1689 /* BugsnagApiClient.m */; }; + 257E5695DD14352106A5F9F2324F7403 /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = C637E0FACF0DC21188B21A19BE3893CD /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25C10CF7700C88922C4053826BE8422E /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = D1D8016FFF808566998E371FEB3F3DE0 /* RCTPicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 25D1EE7FFDCEE0EBC3F03EB316E69F59 /* RNCCameraRollManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EB13EAAC29F39342E66D644585186CD7 /* RNCCameraRollManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25E00F43E1EDF928FD21D8275DAD3A20 /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 980334210A70EC8FFACDA9AE9DECBEE1 /* RCTRefreshControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 25ED384032B9D13C5127B75C00C81489 /* BugsnagApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = EFFE34F8E17395B29CF1438DC93C6FEC /* BugsnagApiClient.m */; }; 261F32A1FA02D5BF8B24CB71FD71F10A /* SDImageIOAnimatedCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 8047865EF52BDB8F74E450253525FD98 /* SDImageIOAnimatedCoder.m */; }; - 263275AD02EEDA619AF605D8A57C8549 /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = DCA6CC491564CE520978D54B064C768E /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 26D5892C49257B552E50E5D953378DB1 /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 25AF19ED10701324D121CDC03B977D52 /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26EADB2B1F91B0E98325CE377339AB6C /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C217182A631F4DEB8799FFDF7CFBBA2 /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2705398BF3B9198CC897D23D396A7586 /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BD60FBE2B26A28936FC126532D2A021 /* RCTVirtualTextViewManager.m */; }; - 2707704D222AF75C77C0C75D36884A07 /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = 18C92882E94F93D5A0FAA6D08847E13B /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2765C99C5AB7A70535A4695E30345CA9 /* RCTConvert+ART.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B5CA053F72DF799277DEF4F9F9FBA0B /* RCTConvert+ART.m */; }; - 2767B6F483EB91FC1AF72B9E56C9EA93 /* BugsnagFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FC3B607140F53423F46D748AB0779C7 /* BugsnagFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 263275AD02EEDA619AF605D8A57C8549 /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BA98710C34DBCE9064FE58C234DF6F4 /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 26D5892C49257B552E50E5D953378DB1 /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = E3D450362CFE85BDCA37A5CBBA9C6911 /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26EADB2B1F91B0E98325CE377339AB6C /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 52D8B368C340C9FE894310C8E9484B1A /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2705398BF3B9198CC897D23D396A7586 /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C8648AE914FA3B915EDC121CDE3F064B /* RCTVirtualTextViewManager.m */; }; + 2707704D222AF75C77C0C75D36884A07 /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = 44EABB9CB5B9D0D74454496877665506 /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2765C99C5AB7A70535A4695E30345CA9 /* RCTConvert+ART.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D67570D241C8BD96DF9CB19D2E70141 /* RCTConvert+ART.m */; }; + 2767B6F483EB91FC1AF72B9E56C9EA93 /* BugsnagFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FF59804677A068BCFC8092661D8A2E5 /* BugsnagFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 27905779CF00AA72248BCE35B952D351 /* GULAppDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 921C25810B4533D9E001D73370A577B6 /* GULAppDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27B32BB91B5592AA463BED8039D4A34F /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D1E699B565C85CBADC8A2C7F7725F5AF /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27C1A69C52BB15DC67850E468B12D649 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 854137F5C0ABC4A4846F9700635C0DFF /* RCTExceptionsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 27C583D37081F7F3510722DF66158B32 /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 59C082FCEABEBA37724CCF76C16DECE1 /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 280340EB2BB4FBED12529AA52158B665 /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DC24A7E89EB53B595EF360D6C42ADF3D /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27B32BB91B5592AA463BED8039D4A34F /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FBF562C3060334988DA10DB6D86B54E2 /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27C1A69C52BB15DC67850E468B12D649 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = E5F4B99ABD683869879D48CC022775B4 /* RCTExceptionsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 27C583D37081F7F3510722DF66158B32 /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9766B809AC1E5C70E1EF8A7B6FB8914A /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 280340EB2BB4FBED12529AA52158B665 /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2506D056FF1B5F554E6B1F7F8CA98110 /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 287E7C771C9169D90BC1BFCA9CED0679 /* FirebaseInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D0B134B634581BF0AB4FFB905334766 /* FirebaseInstallations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 28927F940A72BCEB4A44F42EFBA0B02C /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 77C391A3102EC9FFECFDA582C1B03FD4 /* RCTTextAttributes.m */; }; - 28BB381A7C6B3B83811D50FE70E938DD /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = EDE20208E9FEAB94B7ACC8BAB763D758 /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28927F940A72BCEB4A44F42EFBA0B02C /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C33912CA546600E42493C322862CA45 /* RCTTextAttributes.m */; }; + 28BB381A7C6B3B83811D50FE70E938DD /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C2DF73102D11D25584EE0473C499831 /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 28DE633C2791D8880A18411419955E80 /* SDGraphicsImageRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = A88DF20441288B71F15D147211C1C64B /* SDGraphicsImageRenderer.m */; }; - 28EDFE782C03971D26A94DABC42882E1 /* RCTNetworkTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 02226A43F8307859A386CB61543C5E17 /* RCTNetworkTask.m */; }; - 28F5181CAF14D2F0597691A3E405F985 /* RCTConvert+ART.h in Headers */ = {isa = PBXBuildFile; fileRef = E94E82CA6CBE7E903DB83CDF94E22AAC /* RCTConvert+ART.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28EDFE782C03971D26A94DABC42882E1 /* RCTNetworkTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A2DBC6972F10CB3F42935FAA3D7FEA6 /* RCTNetworkTask.m */; }; + 28F5181CAF14D2F0597691A3E405F985 /* RCTConvert+ART.h in Headers */ = {isa = PBXBuildFile; fileRef = B1852732427A5BFF71AFCD908B912F49 /* RCTConvert+ART.h */; settings = {ATTRIBUTES = (Project, ); }; }; 28F938C614393C2E27ED714D9579FC8E /* rescaler_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = D8183FDF6CBBC2458D910575E0B9AE45 /* rescaler_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 294DF61467891D4A15B8BE8DA7B249C8 /* FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = 0162C892BDD766E04E2714F47090AB60 /* FIRApp.m */; }; - 2971D2756E69D3A1B1B0B05CB44883FA /* RNFirebaseDatabaseReference.h in Headers */ = {isa = PBXBuildFile; fileRef = AA3A9F0F068955AF9A1FE1F0F2362AF8 /* RNFirebaseDatabaseReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2994820A161009C46BCA0F5CE653EA23 /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A00452FD6F9F80CC6BFD7541B8E9480 /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2971D2756E69D3A1B1B0B05CB44883FA /* RNFirebaseDatabaseReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 56768CE84A6E4F7706E8349354FD227B /* RNFirebaseDatabaseReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2994820A161009C46BCA0F5CE653EA23 /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 06AF9DEAB18ECA63C1C7E00A032CB825 /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 29BC45BF5AE5015D46B969B85561BEA0 /* firebasecore.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = A15D9453B10C17715504A05E32605847 /* firebasecore.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29BE103541578385234026751F8ACE67 /* RNRootView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FA49BCFA23CB06D68B401F3F82DE2353 /* RNRootView-dummy.m */; }; - 29D9E419C855902AC95C921BDC6A1124 /* BugsnagErrorReportApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = AEC5798F259B20AF35F1CD204E5E88D1 /* BugsnagErrorReportApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 29BE103541578385234026751F8ACE67 /* RNRootView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A060D275F6FB2202E39824FE20772A14 /* RNRootView-dummy.m */; }; + 29D9E419C855902AC95C921BDC6A1124 /* BugsnagErrorReportApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = A3D30A327658332768723A3C7A5AD074 /* BugsnagErrorReportApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 29EF263F0219112B7A83EB6282AC6BC8 /* FIRAnalyticsConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E799F0463BF1E9CB29AB2DD41EB7846 /* FIRAnalyticsConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29F9DF5B489E9D84B67ED4897106E0BB /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D2BDE2A8E9321E6BBFBD4DD0F868D7D /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A0924AB7815CCF0A58FF53C9F9DD715 /* RNFirebaseNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 765838AF981D83C8AD2FD83BB0F79731 /* RNFirebaseNotifications.m */; }; + 29F9DF5B489E9D84B67ED4897106E0BB /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = DCC990FEA4CF0D91B5AA704511B9A366 /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A0924AB7815CCF0A58FF53C9F9DD715 /* RNFirebaseNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B4CE24F6E1081A73953291129C65004 /* RNFirebaseNotifications.m */; }; 2A0CFDAFE1D323DD59F8CC55D2BF21A2 /* FIRInstallations.m in Sources */ = {isa = PBXBuildFile; fileRef = DC834FE770DBAFD4CAD544AB5F592ED4 /* FIRInstallations.m */; }; - 2A271C1605508A90C3BA1EAB6BAADC3E /* react-native-document-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 796D6FF12732B49AFA11231E67982356 /* react-native-document-picker-dummy.m */; }; - 2A6155E5BEB10B758FA689BF7FE14AE8 /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E9EE5BA8DB4608918A7792F0BC4BDA8 /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A96EC20BE6E26342579B6EEEEDE35BD /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D30B2E8BB541572E0CFED72143B2D5FB /* jsilib-posix.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2A271C1605508A90C3BA1EAB6BAADC3E /* react-native-document-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A45F0030699924CE63A3BE1A1E04032C /* react-native-document-picker-dummy.m */; }; + 2A6155E5BEB10B758FA689BF7FE14AE8 /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F385180DE11379132F14DAA02D3F24F /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A96EC20BE6E26342579B6EEEEDE35BD /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B62FD50583D50449408683A8512DD85D /* jsilib-posix.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 2AD4C462CA3933A8FE83A9AE6C424AC8 /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DCB7B74B4C2EC6C5BAFC108D409C754 /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2ADFF29E38F4061AD30EE837833ADAAC /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AA61D2586DEC3E69D8458995082E1EB2 /* RCTSliderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2AE22261C2F0CC82CDFBB9435346A3A8 /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = DD82588AC2076B1662424883141FFD22 /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2B2A1CCDBA8AD8D264967730D01F3FA4 /* UMPermissionsMethodsDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 67591D72716A6D2B030010BEEFABDD20 /* UMPermissionsMethodsDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B4B674BADB4E8A18006C2676BA1EAE5 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B762AC40BC975F6953559AAEA9DA262 /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B57AD2AFDB9147504E562E1E6F17751 /* Bugsnag.m in Sources */ = {isa = PBXBuildFile; fileRef = 31B6D24AA10E41A54BB260C04EB641B0 /* Bugsnag.m */; }; + 2ADFF29E38F4061AD30EE837833ADAAC /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 86F87738549F13FD7A93B2D9A9E7AE3E /* RCTSliderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2AE22261C2F0CC82CDFBB9435346A3A8 /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = FF47DDBF0E22453293ECB197BA2FC0C5 /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2B2A1CCDBA8AD8D264967730D01F3FA4 /* UMPermissionsMethodsDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 505D956DD6CAAC97A19BD66A10131789 /* UMPermissionsMethodsDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B4B674BADB4E8A18006C2676BA1EAE5 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = EB72252CAC0049312C0A632E2F8F719B /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B57AD2AFDB9147504E562E1E6F17751 /* Bugsnag.m in Sources */ = {isa = PBXBuildFile; fileRef = F6B99648326FDB329C014550E639277A /* Bugsnag.m */; }; 2B59524284711BD287A3812E9E981486 /* NSError+FIRInstanceID.h in Headers */ = {isa = PBXBuildFile; fileRef = 325C4D831CC5588DA91A39FF53FA5BB0 /* NSError+FIRInstanceID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B5B62C5708555CC396B26DEA29C08AF /* ARTShapeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A705E35F333CB64E04A16117FAD3D78E /* ARTShapeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B7AD03BE3907FBE6A6161BE67B9585E /* BSG_KSCrashDoctor.m in Sources */ = {isa = PBXBuildFile; fileRef = BE3BFBECD1E15553378524DA541FB1BF /* BSG_KSCrashDoctor.m */; }; + 2B5B62C5708555CC396B26DEA29C08AF /* ARTShapeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 50D140D10C5D3ADF647AD0DAE5449594 /* ARTShapeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B7AD03BE3907FBE6A6161BE67B9585E /* BSG_KSCrashDoctor.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AFC3FDE725E9FAA7A4B64F82BF4B32A /* BSG_KSCrashDoctor.m */; }; 2B8F067276102FA6915006D607D487FD /* UIColor+HexString.m in Sources */ = {isa = PBXBuildFile; fileRef = D7593711A2E6EAD105E206B03D6E3616 /* UIColor+HexString.m */; }; 2BD172C6FB7DF31CC3EFA3CE085B4126 /* predictor_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = F41672D8B6EA45CF462409479614FB31 /* predictor_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 2C0C31B7505BC8E94D6FAFBE26E70005 /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 6554F5D74748C27365568140A4796FA9 /* fr.lproj */; }; + 2C0C31B7505BC8E94D6FAFBE26E70005 /* fr.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 6AE78AC48248757E5F4481B82B2EB069 /* fr.lproj */; }; 2C2703DF3EEE37D3A30ECEB1DCD36D94 /* SDImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 9823CB2C7479BFFC9C9AA170BD0CBB10 /* SDImageIOCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C3B70E550F6BE498EA5F00CBC159890 /* RCTDataRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FA9A20AB47A7A1EAAA6D8FE40813C35 /* RCTDataRequestHandler.m */; }; - 2C4337F44EA78BED73792EE210819525 /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0096C45B37BCEA61A77CC464024A90FC /* QBCheckmarkView.m */; }; - 2C4587AD15A7973ECE6637EDA1DFBF08 /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 42BFE991830D7F84E916413983023C1D /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C45E8CE187BD8D93820C40615AC1E4F /* RCTAccessibilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 685CC9ED7AA857F8F83C5CE07C555EE5 /* RCTAccessibilityManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2C4AB1C100D4C8F549F3B391F96BF82C /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 05B1E533FC7DC6FD39092E4978318E1A /* RCTRawTextShadowView.m */; }; - 2C6754F57D3F7E17CA74E5B2EEB0D7F9 /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 042BD1F843AF0B4A4B0B1CF490C929B6 /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C89CAC103055E4326DDE29E97713CE6 /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A06933249D6B6F3242FD631D34B3769 /* UMReactNativeAdapter-dummy.m */; }; + 2C3B70E550F6BE498EA5F00CBC159890 /* RCTDataRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = C5360E5CE48DB05E73CBCFEE94B489CC /* RCTDataRequestHandler.m */; }; + 2C4337F44EA78BED73792EE210819525 /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = F36BE07D7433CF6314EDF014BE65D359 /* QBCheckmarkView.m */; }; + 2C4587AD15A7973ECE6637EDA1DFBF08 /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 597D35020229D35A237C0209B93C47B7 /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C45E8CE187BD8D93820C40615AC1E4F /* RCTAccessibilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 337AE88C9B8A03E812F00B5F40AA869E /* RCTAccessibilityManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2C4AB1C100D4C8F549F3B391F96BF82C /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6721B45513882BF506BDB6A743EF761F /* RCTRawTextShadowView.m */; }; + 2C6754F57D3F7E17CA74E5B2EEB0D7F9 /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = C8FECFA964F448691E08DBF24527F38B /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C89CAC103055E4326DDE29E97713CE6 /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 52F5092222245D907FA715A5E5B4B37D /* UMReactNativeAdapter-dummy.m */; }; 2C8B9B59A5D2050A4FC678FA0A65D5D5 /* SDDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FFD07CA8CC396C11428C8593FC6E959 /* SDDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2CD5D4D9AB0BB12808E36B48405592A4 /* BSG_KSCrashState.m in Sources */ = {isa = PBXBuildFile; fileRef = 57FF5C5617AFBBBF704DAFD06A05E61B /* BSG_KSCrashState.m */; }; - 2CDAC043E586A4E33786C82BEFBB0DBF /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 94B487F259C39A019C26E498C77F346A /* RNRootViewGestureRecognizer.m */; }; - 2CE08EC7BA09068921151F10810607FF /* RNJitsiMeetView.h in Headers */ = {isa = PBXBuildFile; fileRef = B74F33AD034F479DC84E3E7D503C826C /* RNJitsiMeetView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D0E5271D5737630B32CBDBE8AF16971 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 56AFFBA8F4384DFAB0FA919B7EAC03AD /* UMReactNativeEventEmitter.m */; }; + 2CD5D4D9AB0BB12808E36B48405592A4 /* BSG_KSCrashState.m in Sources */ = {isa = PBXBuildFile; fileRef = EDBFA5777814B21574051F46F39A63C7 /* BSG_KSCrashState.m */; }; + 2CDAC043E586A4E33786C82BEFBB0DBF /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = CAA81A8AB89E8C8D069C8BDE6728CC72 /* RNRootViewGestureRecognizer.m */; }; + 2CE08EC7BA09068921151F10810607FF /* RNJitsiMeetView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E02B942ACBEE1C0746FCBD61B1B0D35 /* RNJitsiMeetView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D0E5271D5737630B32CBDBE8AF16971 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = AD2B06DCAB11F3B99CDEB99300E8B31D /* UMReactNativeEventEmitter.m */; }; 2D20AB1269B163E91C616DA631432A23 /* SDImageCachesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AD5C654D5F9C65609BC75BEDEB1C2EF1 /* SDImageCachesManager.m */; }; - 2D9B31280B8E5294977D5CC7EA819B25 /* BSG_KSCrashReportFields.h in Headers */ = {isa = PBXBuildFile; fileRef = BDB51361ADC5F8786F4F64E304B59085 /* BSG_KSCrashReportFields.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D9B31280B8E5294977D5CC7EA819B25 /* BSG_KSCrashReportFields.h in Headers */ = {isa = PBXBuildFile; fileRef = 43D89E7B92F1FB75487CC4507EFEDE97 /* BSG_KSCrashReportFields.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2E0BEB13B0C41568EC020EFDECAACFD9 /* GDTCORDataFuture.m in Sources */ = {isa = PBXBuildFile; fileRef = 93B448CC3FB8A5E0A529641BC3F578C2 /* GDTCORDataFuture.m */; }; - 2E6C0A66C6CE67C359435223E0B96692 /* RNNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = DD142B9C3FA055FEF54B9906D8623CCF /* RNNotificationCenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2EC239D84B20011AE1A05A0CFCE4E647 /* EXAudioSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A64C866B4047D0514B63E16B07FB086E /* EXAudioSessionManager.m */; }; - 2EC6448F6874BE18BCAC7E4B8750436D /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AA0F52207F6680AC6CC12E0FC833672B /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E6C0A66C6CE67C359435223E0B96692 /* RNNotificationCenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FD67A5A0A0E791A241650D09B2C852B /* RNNotificationCenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2EC239D84B20011AE1A05A0CFCE4E647 /* EXAudioSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E78BB7DD764E162B6A016C59A4F38920 /* EXAudioSessionManager.m */; }; + 2EC6448F6874BE18BCAC7E4B8750436D /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EB63F685143CFE850F245E806125F4AE /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2EE1214FC3E8D03CDD99006494DDCA55 /* FIRInstanceIDTokenOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 50B1336BF0B799990F11A2C6C846FEC9 /* FIRInstanceIDTokenOperation.m */; }; - 2F14DEC7E589201E4ADE8E61F5CCCB8E /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = 11F111103A19458BC91CBDEFB769696D /* RCTNetworking.mm */; }; - 2F37E13839018122C7584B33BD63610D /* react-native-video-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BD3FCBF820DB8AF7BF20EAD86AB6F26 /* react-native-video-dummy.m */; }; - 2F3E6CFDE51DA53D85F9F0B1E585D2C2 /* RNCAppearanceProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 06FFFF82DF3F0B943AF0E0DE7CF1E19E /* RNCAppearanceProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F4B5D8A9B7B3F427CD7F280DF2FA890 /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 24C7B04FC9CA895172C6D273309C5B5A /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F51852AA11405085D9282ECDBA680A8 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = E58A1CD42F0356C6697E2AC06FEA30E6 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F14DEC7E589201E4ADE8E61F5CCCB8E /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = 443E3FEB5021F5AE568876B2ECE7DAEE /* RCTNetworking.mm */; }; + 2F37E13839018122C7584B33BD63610D /* react-native-video-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B1E97A9F2C1BC67CEFC4ED914700AD2 /* react-native-video-dummy.m */; }; + 2F3E6CFDE51DA53D85F9F0B1E585D2C2 /* RNCAppearanceProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = BD506638DCCF06CB0434974BFC80C00A /* RNCAppearanceProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F4B5D8A9B7B3F427CD7F280DF2FA890 /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = DA37F07249FFF2BB589D466D199150AB /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F51852AA11405085D9282ECDBA680A8 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 14A1909E30018152870D41BE4CF7E326 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2F5AE014543358BAEE4B4D6CD5A371E3 /* FIRSecureStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2987EA104168329CA646DE0B0609C594 /* FIRSecureStorage.m */; }; 2FA53DFC789880672A8C658D69915008 /* GULMutableDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = B64A61A851185348B2695008405AD490 /* GULMutableDictionary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2FF2BE53DCA8EE04DBC53FA3A07AF916 /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CC49CCB50E8D515DFCF0030F894F241 /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 300A7BA55DB2E2C8576B6CE7FB0A34CD /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = 399FB2A30095FB474545D0C004D85B60 /* RCTFPSGraph.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3035872384B71512B8644A2C9491AD6D /* RNCommandsHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AFE95B12ED7C3B2AACA5787F66BFFBF /* RNCommandsHandler.m */; }; - 307F3607934710DF997A7298180F7E98 /* RCTImageStoreManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E55C212DD52DAE10D8D1AF4C1840B73F /* RCTImageStoreManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 2FF2BE53DCA8EE04DBC53FA3A07AF916 /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C4240233ECFEFFB1E31A2BDB0900128 /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 300A7BA55DB2E2C8576B6CE7FB0A34CD /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = F4B6286766BAB16F75C8F3961268387E /* RCTFPSGraph.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3035872384B71512B8644A2C9491AD6D /* RNCommandsHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = E222CCBAE4B8B73A1E7FD6E8F2E67F1F /* RNCommandsHandler.m */; }; + 307F3607934710DF997A7298180F7E98 /* RCTImageStoreManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BD2997D0C57A5E9834A3F6E7D5A2CDC9 /* RCTImageStoreManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; 308EE9EA4C9727C5413B848F42523151 /* FIRInstanceIDTokenFetchOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 08419E1C07242E0A29A26A675DC67E63 /* FIRInstanceIDTokenFetchOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 309E081F63A76DB6AB8C9F3CE25D9B9C /* SDImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = F26BB59FEC9CBF96A4426D94923EF71D /* SDImageLoader.m */; }; - 30EA45CE3AE07BC35CEF6C9986E2E1F6 /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C22718127A43B28BB68438E3B47B6B23 /* InspectorInterfaces.cpp */; }; + 30EA45CE3AE07BC35CEF6C9986E2E1F6 /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 924751E7D1039F4FB0EDC9094378B4BF /* InspectorInterfaces.cpp */; }; 30EA63D0E95EB523F359EAA9BCADC1F1 /* lossless_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = B4A567AE04DB13B59FF8430E58211E82 /* lossless_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 30EFA1CE7F1133015F0E3E10A28316CF /* quant_levels_dec_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0500B10E6BA68DF16917B05F920FA4CE /* quant_levels_dec_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 31008478AA016544A263E99504DE8C56 /* FIRInstallationsIIDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B1BB1A3C8627427538472C2BEF119CE /* FIRInstallationsIIDStore.m */; }; 31104DDF23E644091D0B208B51B3F550 /* upsampling_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 288BE286F03060115DD9AF8F02177A9A /* upsampling_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3117D5AFA4E546F9B2CEA3EB35965A82 /* REACondNode.m in Sources */ = {isa = PBXBuildFile; fileRef = D0B6EF8F03028FC6F7F2C227AA0305ED /* REACondNode.m */; }; + 3117D5AFA4E546F9B2CEA3EB35965A82 /* REACondNode.m in Sources */ = {isa = PBXBuildFile; fileRef = FD58DB39F9A32D84F2801237B4423F13 /* REACondNode.m */; }; 315F128047475CF8C8E82CB2C51AC69E /* FIRInstanceIDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BC2EF7B3BFD238AB12617D31274CEF8 /* FIRInstanceIDStore.m */; }; - 3178E2FFAF91C8CD5462E8492D7EFE77 /* ARTRenderableManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4631337CD80EF607C5F83FA3455A02A9 /* ARTRenderableManager.m */; }; - 31935F903EB3421E32FCD701A8DBD38F /* RNCSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 237A1CC6D459F6C0934647A1B05F8B77 /* RNCSlider.m */; }; + 3178E2FFAF91C8CD5462E8492D7EFE77 /* ARTRenderableManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FBD67DD275E4D2357C19CDB02960A2E /* ARTRenderableManager.m */; }; + 31935F903EB3421E32FCD701A8DBD38F /* RNCSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = F367B9EDD6B2025C9972D1F38FCEAC6C /* RNCSlider.m */; }; 319B2207EC617BEAACE39E7183364D0F /* GDTCORLifecycle.m in Sources */ = {isa = PBXBuildFile; fileRef = 40C0ACE417B604A869EFEBF0F8727F90 /* GDTCORLifecycle.m */; }; - 31F10CDB791C2620DD0B1A31A0F82884 /* RCTFileRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BE307A8282194964DBE9E8481B9E1B0 /* RCTFileRequestHandler.m */; }; + 31F10CDB791C2620DD0B1A31A0F82884 /* RCTFileRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 84D49A7A06647CABE0B3ED5B1854533F /* RCTFileRequestHandler.m */; }; 31F3C1F1C0E29CC26D3A6B81776FC9E1 /* RSKImageCropViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 6853D0C0275C488A7AFF75D5BF9ACC72 /* RSKImageCropViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3216E3B96EA52D8BDB8D9F86571D35AB /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 77F287F15F75C2EFD978EACE93861BD3 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3240E20C3A58ACFE15D21D48E1D40A6B /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 5043F25CA2387BAADA8248011A6F6F29 /* RNForceTouchHandler.m */; }; - 32622CE75F78F8E2F8D5400CD2CB17DC /* FFFastImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C9259CE14FDF2FF3EDE76809513EB2A /* FFFastImageView.m */; }; - 3268AC6F8341AD59A356F49E24D7A68C /* EXVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = E7D2442F6309A532AB05953CA63E31B1 /* EXVideoView.m */; }; + 3216E3B96EA52D8BDB8D9F86571D35AB /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = E69F4D5FA2EEA2CCC03B5241F06B998F /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3240E20C3A58ACFE15D21D48E1D40A6B /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = AA7A8DA70DD67769DD72D97B9581CC98 /* RNForceTouchHandler.m */; }; + 32622CE75F78F8E2F8D5400CD2CB17DC /* FFFastImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = BB42A1E41CF00DC707700CBBB3D7BD80 /* FFFastImageView.m */; }; + 3268AC6F8341AD59A356F49E24D7A68C /* EXVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = AFE2B58EC2E3690530A64E04F5FEA198 /* EXVideoView.m */; }; 3292BA9319F6A044C79AE28E0D918FC5 /* utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 037F5EC90407C5CE3418149B6C7A824B /* utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3313337DEB72DBE20A1BC168A06E68F8 /* KeyboardTrackingViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A0B0145EB41C3A38809588C7EC1B0453 /* KeyboardTrackingViewManager.m */; }; - 3317D2669464A6DE7D7DFD3DC080C7B8 /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 40FC5E306ABABA27B01035E205968CA8 /* RCTDiffClampAnimatedNode.m */; }; - 333803FE324E27588D21B11BCB0C9D06 /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5396DDCF0BBA58C5B926F5A36A397334 /* RCTCxxBridge.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 33457000C73C1BA5BC2352B54AB16160 /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = A083A60E952FD6845E06C3B5AB4F25ED /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3313337DEB72DBE20A1BC168A06E68F8 /* KeyboardTrackingViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 639DAC10EE5EA1A619AB562FD75ED18C /* KeyboardTrackingViewManager.m */; }; + 3317D2669464A6DE7D7DFD3DC080C7B8 /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B39C5E381ACE6F64E9BB458AE03BD63 /* RCTDiffClampAnimatedNode.m */; }; + 333803FE324E27588D21B11BCB0C9D06 /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = B98F6E1E04F546506E19AD6C416C6AF0 /* RCTCxxBridge.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 33457000C73C1BA5BC2352B54AB16160 /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F91D027E837C20A326639C1BDCE6567 /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; 33988475BC9754D18D14BF27766A2C0D /* GULSceneDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 21A7E3A6A97682E28E064E912B3B4371 /* GULSceneDelegateSwizzler.m */; }; - 33C906D21E0095E99444F2130D76E9F4 /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3755593CDB9E2AD6966475C8A7F9414F /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33C906D21E0095E99444F2130D76E9F4 /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F0E564DE338119666276106356B8119 /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 33FE4DEEBCA383ED7755A9CBC51B108D /* GDTCORStorage_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = D76568A132A5A42C9799FAF84FB8BD09 /* GDTCORStorage_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 34056CD84DEBCDD1C746695C686393F5 /* BSG_KSCrashReportFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = A3B3F076BBD3556DC3A8D807870D4889 /* BSG_KSCrashReportFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3413CDA8B5470DCFC4C8E5FB4BD1A291 /* RNPushKitEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B4C5BCB61E597C069C849723B7F1F56 /* RNPushKitEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34056CD84DEBCDD1C746695C686393F5 /* BSG_KSCrashReportFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = CF1DA6CA493E93D7AFA97F5096626F49 /* BSG_KSCrashReportFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3413CDA8B5470DCFC4C8E5FB4BD1A291 /* RNPushKitEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = DE11E99498B7A9823D6DA87A938589A6 /* RNPushKitEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 341859F7AE772790EC9DE0E1AB2AB792 /* FBLPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = 919435F4CD2ADBE3C210FD10F56B568A /* FBLPromise.m */; }; - 3467E57D037D208C62BFFE18DF8E348E /* BSG_KSCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 192F177DEC925CC3D5188479BC0B162A /* BSG_KSCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3467E57D037D208C62BFFE18DF8E348E /* BSG_KSCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = 97BE7BFFF182E661D432FFE8E3898511 /* BSG_KSCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 34B59CB8CE7F33E4AEFA4F8D21FAF94C /* SDImageTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = A38CE196FAF4456B06F77B5B9E0CFDBE /* SDImageTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 34E56652AA0AEE4823E7F31D025B69C5 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = DD271C1F5DDAE181D2540027CC7958AB /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34E56652AA0AEE4823E7F31D025B69C5 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = D79973939CE8EC7D031363E1E2FC21FD /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 34EA20ADEFC65F6118975776F29B5ABE /* picture_csp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 51EE49DA7F1EB208F9461CB6483D55F0 /* picture_csp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 35269B5057CDDCC7DEA2FE786C99AF9E /* RNFetchBlobConst.m in Sources */ = {isa = PBXBuildFile; fileRef = EA06FB90254188CC7BD42C9ED915003F /* RNFetchBlobConst.m */; }; - 3532F5EE6268C8BC44E880EF1AF4FB8E /* BugsnagSessionTrackingPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = 94F7CCF3B0B5DC48EA13397ECEEA57AC /* BugsnagSessionTrackingPayload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3537CE1621452E04CE333F76DC5EA2FE /* RNFirebaseAnalytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 9069EDCD5B7C9BC4E2C548959AC4BD59 /* RNFirebaseAnalytics.m */; }; - 35772BB3CEED422E3D0575B000524EC7 /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 839A00AACC59C72809D6413C1673766E /* React-cxxreact-dummy.m */; }; - 35832F60A513B34B1EEA6BDD6419FE8C /* RCTVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 716A1455A0AB1C6D01F7DD42CCE95CA5 /* RCTVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 35DB32595AFE292384F7082E4EDB8D9B /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 7F5F07B6674B84204E253987EF689317 /* zh-Hans.lproj */; }; + 35269B5057CDDCC7DEA2FE786C99AF9E /* RNFetchBlobConst.m in Sources */ = {isa = PBXBuildFile; fileRef = DF625B9FFD7CA277275930691C3AB5F2 /* RNFetchBlobConst.m */; }; + 3532F5EE6268C8BC44E880EF1AF4FB8E /* BugsnagSessionTrackingPayload.h in Headers */ = {isa = PBXBuildFile; fileRef = 12B539A266AA947F50A5C2AA6BD5C8AA /* BugsnagSessionTrackingPayload.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3537CE1621452E04CE333F76DC5EA2FE /* RNFirebaseAnalytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 528CEBD803180BFA178C982103478889 /* RNFirebaseAnalytics.m */; }; + 35772BB3CEED422E3D0575B000524EC7 /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ECC8DCC2ABEC6C02D9002EA8DB15B51 /* React-cxxreact-dummy.m */; }; + 35832F60A513B34B1EEA6BDD6419FE8C /* RCTVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B139C6C451896FB33A71909257B218F /* RCTVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 35DB32595AFE292384F7082E4EDB8D9B /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 003F77A050EC3E8996B044A5976155EA /* zh-Hans.lproj */; }; 362992C88541C7E04A9D3CC4D08CB8F9 /* GDTCORUploadCoordinator.m in Sources */ = {isa = PBXBuildFile; fileRef = 38CB235F9B094ECF8F8B1B1C082AB298 /* GDTCORUploadCoordinator.m */; }; 3656E1A7C7F5703F0068F479C0F68F58 /* FIRInstanceID+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 62E764263319E7C9A53A9AF39D7723E5 /* FIRInstanceID+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 366116BABF4984007964E29E1D5ABD22 /* RCTConvert+UIBackgroundFetchResult.h in Headers */ = {isa = PBXBuildFile; fileRef = FDFF3C5DAABF31BF9C9877B8AA180EBA /* RCTConvert+UIBackgroundFetchResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36B30A72BB2A2EB9D72BACEBA5A74C69 /* RNBootSplash.m in Sources */ = {isa = PBXBuildFile; fileRef = 65BEA74BA7488C6DF4D1DBFB14D902CE /* RNBootSplash.m */; }; + 366116BABF4984007964E29E1D5ABD22 /* RCTConvert+UIBackgroundFetchResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 290E8035DD3CE29392F2FF8F1F3E0AA9 /* RCTConvert+UIBackgroundFetchResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36B30A72BB2A2EB9D72BACEBA5A74C69 /* RNBootSplash.m in Sources */ = {isa = PBXBuildFile; fileRef = F4BB57F2C8342D0890921AD00DE04C23 /* RNBootSplash.m */; }; 36C7EF28833E6681D834301FE13A86F9 /* FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D31DB622D9EBAA4FBD560D40618BCBA /* FIRApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36D80615F4DEE0F645C306DFED51FB52 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 71F3CA809072964CCC65C1EF386C65F7 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36D80615F4DEE0F645C306DFED51FB52 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = A98B8012F144C30D6A38B0B3B345ADF1 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 37561D58917BF3DD193FA026B4DC7819 /* buffer_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 079482D8D03370ABEA3B4293E9E0F902 /* buffer_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 3785F7EB165DAE2A7047D3376A8A5DB2 /* SDWebImageDownloaderRequestModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 62DCD8FC43D8554520EF5C154FB8D476 /* SDWebImageDownloaderRequestModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; 37A8A74509CB140CA1CBD2862791F6C1 /* thread_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 21BCCE9D22EB85259CE081E0A923EDB6 /* thread_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 37C0A3BF90F97D08F52212FF1DBF170A /* SDImageIOAnimatedCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EAF77B51624F49BDB16C3865BA59750 /* SDImageIOAnimatedCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 37FCEB31D086A0F531245307B9F7C801 /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F0C3E5F49ADE324BFA3AEB74AA646D0 /* EXFileSystem.m */; }; - 3825F7BBADE0E2636469ABA15B1C2FE3 /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = C962AADFCD1221DD7497DC79B7A37C50 /* RCTTurboModuleManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 37FCEB31D086A0F531245307B9F7C801 /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = DA5AB0196EA5FF764173A516F590D921 /* EXFileSystem.m */; }; + 3825F7BBADE0E2636469ABA15B1C2FE3 /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1DD923C6F64649147DDB235950480E46 /* RCTTurboModuleManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 3834792EC9BABDBC3BEC609A77EC0B45 /* FIRInstallationsAuthTokenResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 30B6C6D8A65E6CF1025DC7B7A6DEE0CD /* FIRInstallationsAuthTokenResult.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 383C5B89C2949BBFEA55565E4DCFCB15 /* ARTCGFloatArray.h in Headers */ = {isa = PBXBuildFile; fileRef = BD120D0B9EBE42B9FF56074133CF8095 /* ARTCGFloatArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 383C5B89C2949BBFEA55565E4DCFCB15 /* ARTCGFloatArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A71F41A03D4C4E9AEB5A2AF289501D8 /* ARTCGFloatArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3842C7262C69AD90463B43931CE9B8D4 /* backward_references_cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 47848D888973B34379A73A1129C8E494 /* backward_references_cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 38442B0F8709B30A6EDA4CD0454A21A5 /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = F4110D159EB83763AAC648B1B81D2F9D /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3883B5815DBFA4EF2FE84C41BC335FB8 /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = BA75D4667D10405301A74A8CA846A155 /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 38A4CA283B119D95B0A0E732C2331660 /* BSG_KSCrashAdvanced.h in Headers */ = {isa = PBXBuildFile; fileRef = 107135BEBA6EA7330C01077FA39CD6DF /* BSG_KSCrashAdvanced.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3883B5815DBFA4EF2FE84C41BC335FB8 /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = B57D43FA12903105F3A9F573F3EE96A9 /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 38A4CA283B119D95B0A0E732C2331660 /* BSG_KSCrashAdvanced.h in Headers */ = {isa = PBXBuildFile; fileRef = 569BB4CE80475699AABC611932B19F3B /* BSG_KSCrashAdvanced.h */; settings = {ATTRIBUTES = (Project, ); }; }; 38A8686E3AE8C9948AC8E16A0FF259FD /* GDTCOREventDataObject.h in Headers */ = {isa = PBXBuildFile; fileRef = D3601FC2175A7805C42496F6D3F25E1D /* GDTCOREventDataObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; 38CD1EEFACF1F4E85CAC904A501B0876 /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 438B0AFC915C650C7DD6BBD7E1482856 /* SDWebImageTransition.m */; }; 38D058F638351726858D7A563A8982A7 /* FIRInstallationsIDController.m in Sources */ = {isa = PBXBuildFile; fileRef = AA4F5619775B05EAF3BD82EDACD91B98 /* FIRInstallationsIDController.m */; }; - 38D4C661B8BBC385A0AB2B4AB1558258 /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 6987CC8C81C7008AD5DA1E776395751C /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 38D4C661B8BBC385A0AB2B4AB1558258 /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 10A3D7035CD7D2F0C8454D9EDC73BA99 /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; 38E6BCA7EF6AEE0500A1E457935A37AD /* FBLPromise+Delay.h in Headers */ = {isa = PBXBuildFile; fileRef = 68041748F69925013F2E5E2E941E5D0B /* FBLPromise+Delay.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39A8B0F0C8877BB15AD04CD38C7C9161 /* RNFetchBlob.m in Sources */ = {isa = PBXBuildFile; fileRef = 57DF598250C2ABB82FB71706AB22D7FE /* RNFetchBlob.m */; }; - 39B19D68538AE0FC980A4351FA0EB0FF /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = E6B2FAB6C78DAD30C101A8E0C7C8ACE0 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39FE229CE1651E2B524FEE20F0222100 /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = 34B0035A78BDF37E294278080430ECD8 /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3A218CA173C1EE76D958B3AD0C9BC0CD /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 77F287F15F75C2EFD978EACE93861BD3 /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39A8B0F0C8877BB15AD04CD38C7C9161 /* RNFetchBlob.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DBF90403D226FD4BA9D802C0772DC56 /* RNFetchBlob.m */; }; + 39B19D68538AE0FC980A4351FA0EB0FF /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 56C4203FB922C2EAEC70E9EF0E3F2ACA /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39FE229CE1651E2B524FEE20F0222100 /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D7213217E40522F94758DC70EE7305B /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A218CA173C1EE76D958B3AD0C9BC0CD /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = E69F4D5FA2EEA2CCC03B5241F06B998F /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3A2AB10764D649D2C494B8ACE9F93C74 /* FBLPromiseError.h in Headers */ = {isa = PBXBuildFile; fileRef = EF4EB3533CCB7A84BFF17BE881F535D0 /* FBLPromiseError.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3A41B9C4BAA9C197A9D08F1ACC7C7CC8 /* SDImageGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = D525C8CC60B15909F0B82D63E338E963 /* SDImageGraphics.m */; }; - 3A588C35CF59D1DA0D42450E2D7D237C /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = 977FEB663707366C327C47CC27CDA8C7 /* EXConstantsService.m */; }; - 3A5DB1E5EC7C9DB692B411AC12981758 /* UMAppLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6531AD763044370F6EA7D5EC3E63C94A /* UMAppLoader-dummy.m */; }; + 3A588C35CF59D1DA0D42450E2D7D237C /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = B5F7B9DC5DBD0A04BB45CF9ABB1FE54F /* EXConstantsService.m */; }; + 3A5DB1E5EC7C9DB692B411AC12981758 /* UMAppLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C6CCFD413FEFB4F283862EE812234243 /* UMAppLoader-dummy.m */; }; 3A6B7B5EA8B4C74A3B3628907AF2C361 /* FirebaseCore.h in Headers */ = {isa = PBXBuildFile; fileRef = 325556A95664EB529C31870C6A52D5D8 /* FirebaseCore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3A90F40F02279EE028931CE48514D66F /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9CC2E2273ED5FE89DBB756223A07E524 /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 3A922CDA2316846097056591F696D6F7 /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = ADE4BB14EF822D38A1B0B6893FC53797 /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3AAFEFC4AD799AFDB98222D0B36F097B /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = CB341B9DEC90F07ABD0A89BE587702B9 /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A922CDA2316846097056591F696D6F7 /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 77B1EBB82F5E7296CDCBF6DECA8539D9 /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3AAFEFC4AD799AFDB98222D0B36F097B /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = B2A0D22A3DECC27109C0E62487A5D8E9 /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3ABBA80F6C061E7A70AF047FF9B2595C /* GDTCCTCompressionHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 5847FD2633BC9047F028FE38A7084AD7 /* GDTCCTCompressionHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3AC6D38871E11794AACBDDD94449CE63 /* BugsnagReactNative.m in Sources */ = {isa = PBXBuildFile; fileRef = BF20113E5333E238C790CD7D1BE83741 /* BugsnagReactNative.m */; }; + 3AC6D38871E11794AACBDDD94449CE63 /* BugsnagReactNative.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D2B51DD4DF417B10B71E8B822A93A9B /* BugsnagReactNative.m */; }; 3B19116ABDED6431782A3A8BB569F8C6 /* GULAppEnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 9266B058E00473F5A3D7D31E6AFE30EA /* GULAppEnvironmentUtil.m */; }; 3B333F775A3E42130B41AE2EF4E0B53D /* near_lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 099A43376A0723FBD49B492ED1DA139D /* near_lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3B426494F084B4127219E522755411FA /* RCTKeyCommandConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B71D632E9BFB739138DDB7552F5C4ED /* RCTKeyCommandConstants.m */; }; - 3B565DC355CC5A6C542619592FAE3C31 /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 35A9DF7A800D0D82E8400F538C8B28EA /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B426494F084B4127219E522755411FA /* RCTKeyCommandConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = D87D4BF4E569C615C848E73CD7326793 /* RCTKeyCommandConstants.m */; }; + 3B565DC355CC5A6C542619592FAE3C31 /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 16DC5622C62C49184B49E9D362BB3A3E /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3B5A6465606762C6EB7BF68923C55487 /* FIRAnalyticsConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FE52EC86FAD6477499E13343ED2C1DF /* FIRAnalyticsConfiguration.m */; }; 3C0FCF93B0ED1741AC247835CC335F80 /* UIImage+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 91CF14832C73F2B333714483F06B3C9A /* UIImage+Transform.m */; }; - 3C3A3FB4AFFF88F2C17EA07185AC0663 /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = A084251F44171146FE7CC4E3973E0896 /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3C57B9928E0E9E9146182C7BB5615F19 /* UMAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = F17A2E32705BC84AD814FD6ECD2D115D /* UMAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C766293FB7619D510FF59F15B150FAD /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D43239CC218A848CC0C62AF8E7DE48D7 /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C3A3FB4AFFF88F2C17EA07185AC0663 /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 83448ADF44CF1911CCE4D8AAB2164880 /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3C57B9928E0E9E9146182C7BB5615F19 /* UMAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = F49BE03F87BDF1DAC772E82BCB319DCA /* UMAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C766293FB7619D510FF59F15B150FAD /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 280D196B50B06623BAC88F7C17580D75 /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3CD9657B5CDE67AE647DA7FC86A341A7 /* RSKTouchView.m in Sources */ = {isa = PBXBuildFile; fileRef = BB3994268A3900BB3EC0B6E41C8ACEEC /* RSKTouchView.m */; }; - 3D1507020B4C2DC1A841168F7B2F2095 /* BSG_KSCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 07E0234DD7051C7D65C2E4D36FFF87BF /* BSG_KSCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3D2BDDA5696E0248B91335C53007C1D8 /* RCTKeyCommandsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A54A2C874DBDF53D30E7B00C51E872E6 /* RCTKeyCommandsManager.m */; }; - 3D62B6B0650C43E889B249FA6981903E /* REAModule.m in Sources */ = {isa = PBXBuildFile; fileRef = B1F80EF5F75C98FB7CEB07165A04BE38 /* REAModule.m */; }; - 3D68D2557A63C01FD65F87F4565A0A53 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 6812983EE2AFE8C95A06E38C75B88694 /* UMModuleRegistry.m */; }; + 3D1507020B4C2DC1A841168F7B2F2095 /* BSG_KSCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C7A25419288AB12A311C9B8590BA7ED /* BSG_KSCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3D2BDDA5696E0248B91335C53007C1D8 /* RCTKeyCommandsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FA3FAD6F5216E43A3167EBEBE8B8167B /* RCTKeyCommandsManager.m */; }; + 3D62B6B0650C43E889B249FA6981903E /* REAModule.m in Sources */ = {isa = PBXBuildFile; fileRef = AD3109680E3C1C5D2D4F6F6E043B9C7C /* REAModule.m */; }; + 3D68D2557A63C01FD65F87F4565A0A53 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 47EEF3AE669D34F0C6B77A1B1C77409D /* UMModuleRegistry.m */; }; 3D8BE5BF644BE9BB4F41CAB6B7D79A09 /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4D7305392656B07787D0BAA87B5735C4 /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 3D9F8FE3C127F89AEAD65F09969FE642 /* muxedit.c in Sources */ = {isa = PBXBuildFile; fileRef = E71363AF216BF6A9FDEDA89C8D14B6A2 /* muxedit.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 3DA3978096D5C53CBFF6D5DCE1A25655 /* GDTCCTUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 23D5AA523F9126F7D30ECF8AA9BBE433 /* GDTCCTUploader.m */; }; - 3DB2B8FFC504E9B2209D51E0471B3072 /* NativeExpressComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A12EFF825E1C0081EE3DF98F8A217E9 /* NativeExpressComponent.m */; }; + 3DB2B8FFC504E9B2209D51E0471B3072 /* NativeExpressComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = D322A8477E1753B864B19AED1740C45E /* NativeExpressComponent.m */; }; 3DB6D861B1BED3FE02246D09E892A49B /* FBLPromise+Always.h in Headers */ = {isa = PBXBuildFile; fileRef = 47B052E1FD1233F07E279610681D4C0B /* FBLPromise+Always.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3DC6AD9F4EB8CA917DAA18FC2C54697A /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = CABA644F0321E5D4E71EA4106921CB01 /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3DF0FC2AAEEB2CD774228809E76A36EA /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FFC82B5E27A8347992ABB24503A3FE1 /* RCTWeakProxy.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3DF2CF12BAE1442A3F18E366DCF1E367 /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E20DF5FFBA43BBBC8DC829D1C5C88996 /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E0588C6F38C12F8417DEA53E703E771 /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = D763A9AC9FAC548815F93A714B0A32E2 /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E31ADE4D01843AFE94E6B95687C36C1 /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 152D99BDB721B1EAE79C96126E72B1BD /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E79EBF873CC80665DB87799FE8B85CC /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = A8CCE3A8FF1C2BB3A9A71D15A2E11C73 /* RCTShadowView+Internal.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3DC6AD9F4EB8CA917DAA18FC2C54697A /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 05FCAD5BF02AFE224924B65BD9903055 /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3DF0FC2AAEEB2CD774228809E76A36EA /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AB3E49F970E4FD72D9971F0C86245C4 /* RCTWeakProxy.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3DF2CF12BAE1442A3F18E366DCF1E367 /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 82D163B62D58A7DAAC4F67FE5DB44B93 /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E0588C6F38C12F8417DEA53E703E771 /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = B24AA181DDDACF562563B87E0E060460 /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E31ADE4D01843AFE94E6B95687C36C1 /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CEAC4E463CAC8251214B1C9557FCEAF /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E79EBF873CC80665DB87799FE8B85CC /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 0722D2EC567F23AE93ADAE6D32994A8C /* RCTShadowView+Internal.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 3E7CFC6BBA278D60B2DEF04E96E41275 /* SDAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 22DA47BB069C91769B82987265E8AA4F /* SDAnimatedImageView.m */; }; - 3E9B846063DBDF34FBAF2E13B2104ECC /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D25603DCDBD905C3E3280D640D6E574 /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E9B846063DBDF34FBAF2E13B2104ECC /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F9C8922FC2D0B6600C814C1B3382B23F /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3EC8C2462B60DB403104F22B294A4B24 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C2373D7CD550A7BB6746818ACCFF4A9 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3ECD97BBD34E2AEF1DB283897AEBB626 /* NSImage+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B4C2C687BA9A4F482BCC6E3550747BE /* NSImage+Compatibility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3ED49C84C1C1A124F30F61E18033F6E1 /* REATransformNode.m in Sources */ = {isa = PBXBuildFile; fileRef = FD50D6AB7F115CD02425C3732120EE43 /* REATransformNode.m */; }; - 3ED530EBB19DB479636138A65FFFC9D9 /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = CFF6C5FEBA77BC2E8951FC79B34E88E0 /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3ED49C84C1C1A124F30F61E18033F6E1 /* REATransformNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 19F051C398E0E0CF5604A783AA3D061F /* REATransformNode.m */; }; + 3ED530EBB19DB479636138A65FFFC9D9 /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = A89F5903324F1CD3F6DF49F596580EE9 /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3F16574039A61B5C86268A6D9E5BD931 /* picture_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = CE50447D6089FD034C451BE7675B6D7A /* picture_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3F4D09BB757DC2587425562E435DD7DB /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = FECC64914591B823F88D64281B8C448E /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F4E6AB35F55AE7DF736BE8E399AF815 /* RNFirebasePerformance.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B421201BC61B8A0A51E7C35E7439D26 /* RNFirebasePerformance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F8DC9E3686D8CA5C3C1DCAE5CA38D5F /* RCTSourceCode.m in Sources */ = {isa = PBXBuildFile; fileRef = FB82D4881857C78D4F580048CDB64972 /* RCTSourceCode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3FAECAD98E39575A2C864CE080401E9F /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 917F61313C78913F2EF1E925E1D23E9A /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3FBB88E0254E6E6972826A7C76C136B3 /* UMModuleRegistryHolderReactModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 876BB29C527125661AD20D22BE844A7D /* UMModuleRegistryHolderReactModule.m */; }; + 3F4D09BB757DC2587425562E435DD7DB /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = AC1A12E7FB760FCD374C12F15429F063 /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F4E6AB35F55AE7DF736BE8E399AF815 /* RNFirebasePerformance.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ADB38322F34A3E62427612768AE218F /* RNFirebasePerformance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F8DC9E3686D8CA5C3C1DCAE5CA38D5F /* RCTSourceCode.m in Sources */ = {isa = PBXBuildFile; fileRef = D29CB606B28145D0F34A30E8E92C3AE6 /* RCTSourceCode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3FAECAD98E39575A2C864CE080401E9F /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 65CE45D203BEB30B53094FFB8F23B2C7 /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3FBB88E0254E6E6972826A7C76C136B3 /* UMModuleRegistryHolderReactModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 31EE95149D57FDB9540F3A45E93F2594 /* UMModuleRegistryHolderReactModule.m */; }; 3FE6DC36C896C99E4F0E10B92E1FE061 /* frame_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 535AA0B78CF70BA9675FAEC421BED1E6 /* frame_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 3FFF42A16F8EB91750162C36C8843027 /* RCTClipboard.m in Sources */ = {isa = PBXBuildFile; fileRef = 37D411FC895F637092612CAA667C9BA8 /* RCTClipboard.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3FFF42A16F8EB91750162C36C8843027 /* RCTClipboard.m in Sources */ = {isa = PBXBuildFile; fileRef = 4708508DB230A1AFFC0276E5EB866F98 /* RCTClipboard.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 403E9D49D8232B1F6A6BACED3679104F /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = ECFF7646CDA1C9BC7B92C2364D35EB4F /* SDAnimatedImageRep.m */; }; - 407DE17E311F50FDA9BC4ED4C4759FF6 /* RNFirebaseAdMobNativeExpressManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B81DDCD44C011136B37C39D17850F69 /* RNFirebaseAdMobNativeExpressManager.m */; }; + 407DE17E311F50FDA9BC4ED4C4759FF6 /* RNFirebaseAdMobNativeExpressManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 45EA2FFCA9384FA8754DA17B8016F72B /* RNFirebaseAdMobNativeExpressManager.m */; }; 407DF13B0A6D61F156D84B50D25A3E2D /* upsampling_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 6A5DB3B95A61733B29846B836C5FE77A /* upsampling_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 41131751C2A30224DA39830C7FABDC37 /* JSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 25F73B3BFFF7C0486C9D4B4E4DA9572C /* JSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41131751C2A30224DA39830C7FABDC37 /* JSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 0302318BE1A4996F6362DEECA23878B8 /* JSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 411A3C1B75FB16BE3B6C5709BBB21AD0 /* upsampling_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 6C8FC56CD5FE60871A148C7D2580D8D2 /* upsampling_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 41305B5E2E38F44BB750E2C3EB2ACEBA /* BugsnagSessionFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 36344A43FF1BCC39C2B7467B3E7EF95F /* BugsnagSessionFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4151149DD2912D71C7B2B5BE90FF6BCA /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C45DAB98AE19CF1600DF224DA3FAD26 /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 417C1F0F90CD0DF24740636DDA0E766F /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = 95ABB6B55BA602D3BBBAD1058697200A /* FBReactNativeSpec-generated.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 41A875AF9B80762A227B0C9FCDADC17B /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BBFCB5E60AC63130656AA75C26A0AA98 /* EXConstants-dummy.m */; }; + 41305B5E2E38F44BB750E2C3EB2ACEBA /* BugsnagSessionFileStore.h in Headers */ = {isa = PBXBuildFile; fileRef = CE263CBE0E4D45E11B34822EEB6F179A /* BugsnagSessionFileStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4151149DD2912D71C7B2B5BE90FF6BCA /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D4F3FD31ED29FABC56321FF1335434E /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 417C1F0F90CD0DF24740636DDA0E766F /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = CAC8F0CFB05A73A670C9E3F2D08A0640 /* FBReactNativeSpec-generated.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 41A875AF9B80762A227B0C9FCDADC17B /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BD7860900942ED5179416ACEE2CAC40F /* EXConstants-dummy.m */; }; 41C778DE498447ED87070B6D37C30A85 /* GULAppDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = D4389EC289745BCEF60BEA7CDAC784D2 /* GULAppDelegateSwizzler.m */; }; 4200E4BFCB23A3C2905D0525513F68CA /* GULLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = F12DAF7528A201C09ADE0D2FC9600260 /* GULLogger.m */; }; - 420273C9877ACFCFBB918F211EA0EC2C /* RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 11B20C54AC294E8BACE99BCDC7C20891 /* RNNotifications.m */; }; - 4205ADAF94B00946E01FCE633872C359 /* EXVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D0C142362A2D417012FCB7FD075FCC32 /* EXVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4291025987BAFF7204F5EF33EC8B11FA /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DF5B5A8F386B04CF4A0E30232BAC970 /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 430E21DB1E40C00BBCD1A57AD6A66D7E /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CE6D4B16FA4BB2AFCB6D2BCD6F485365 /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 420273C9877ACFCFBB918F211EA0EC2C /* RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = F0035AD75AF409EED99CE638FCD79F36 /* RNNotifications.m */; }; + 4205ADAF94B00946E01FCE633872C359 /* EXVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FF032A05D37EC27E5991CF4F8AB0560 /* EXVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4291025987BAFF7204F5EF33EC8B11FA /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = FE682E6879BA8154495887920D01926F /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 430E21DB1E40C00BBCD1A57AD6A66D7E /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 93E0A184E9DA535352EF48AF9C5EBF68 /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 431786DF93882E8D7B28D5DAD61598CB /* GULOriginalIMPConvenienceMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = C8AAC00DA3B23BFCDC15277B87A9557B /* GULOriginalIMPConvenienceMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; 43179FC00D84AEC590B6246AB2749BAA /* GDTCORDataFuture.h in Headers */ = {isa = PBXBuildFile; fileRef = D5B3BDB0DF8A0EE45046BCB479E4B62C /* GDTCORDataFuture.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 432416CCB63DC7456440129E2B240E24 /* EXUserNotificationPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = A5C5AA0F62E63156EFCEC5C452B46EE3 /* EXUserNotificationPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 432416CCB63DC7456440129E2B240E24 /* EXUserNotificationPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E5DD8E9C4EDFA25C3D2507671F7D2AB /* EXUserNotificationPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; 43A35C1D3B3938A25ADA1DAE6C41540A /* cct.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = C67A04FD4DB80B332055C981539D61A1 /* cct.nanopb.c */; }; - 43DC0AC2630D1973E947E9A504AD5F74 /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54E20EE1DCF407DC3DDABFF462686954 /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4401917CF3FFE099B7EE236875BE77E1 /* BugsnagUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 70533C394B7A6E044FCBDB9D4D35FCBD /* BugsnagUser.m */; }; - 44077BE7DC478E91BB1F7FBCBD475D79 /* RNBootSplash-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 305EF1AA6F32D05EBF526DDE7C61764E /* RNBootSplash-dummy.m */; }; - 4425EE6E7CE196D6CBE6414B491A2DB3 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 59D99653C038F838A82E5EFF0C321F93 /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 442AAD764C2B5335D2D63EC64FDCABAE /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = DCA36AA1CA0B92BA681E7562A9AB8210 /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 43DC0AC2630D1973E947E9A504AD5F74 /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D29D20BFE80E1488AD42B308B8135E12 /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4401917CF3FFE099B7EE236875BE77E1 /* BugsnagUser.m in Sources */ = {isa = PBXBuildFile; fileRef = EF1B8A56E41BE51A02DB11D725652A30 /* BugsnagUser.m */; }; + 44077BE7DC478E91BB1F7FBCBD475D79 /* RNBootSplash-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A5783075A6C9B523DDA3C0B60647B0FD /* RNBootSplash-dummy.m */; }; + 4425EE6E7CE196D6CBE6414B491A2DB3 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EC3AF692C410BF61B4507625A2481B4 /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 442AAD764C2B5335D2D63EC64FDCABAE /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = B5CC36CEC47C85A96A7807D3215B2C99 /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4456E28CE66464D55C0363C9BE7A328D /* FBLPromise+Catch.h in Headers */ = {isa = PBXBuildFile; fileRef = 47BAFD858ABCC55478AF6AB0854547DF /* FBLPromise+Catch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 447005F902B950F31D9B84B31863C6C2 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = AA6AABAC22A2C9E92D9FDC47AE29EF1B /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 44A5A16ECF6812A67354E03D10FED517 /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = AE6E23B77F7FD55BED26239ACD359A3F /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 447005F902B950F31D9B84B31863C6C2 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 98A7A347CA351FBD29C63ECE2C510116 /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44A5A16ECF6812A67354E03D10FED517 /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E795BB03EFA38DE1BDD66FE34A941BC /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 44C3BFF27B3A00065E0694106B6BBC65 /* FIRInstanceIDStringEncoding.h in Headers */ = {isa = PBXBuildFile; fileRef = A0DE2AA756FD1093A58487EEF833F499 /* FIRInstanceIDStringEncoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 44CE88088F17C4DA76F31DB5A23EF1C0 /* RNFirebaseCrashlytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 3EBF48C9031FDA0CBFCC41EB218C1371 /* RNFirebaseCrashlytics.m */; }; - 450237AE946360B4D86A82DF9108EF63 /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DE49638ADFC5C297F8F611DD713D98D5 /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44CE88088F17C4DA76F31DB5A23EF1C0 /* RNFirebaseCrashlytics.m in Sources */ = {isa = PBXBuildFile; fileRef = 2765B792B467115750BCB85AC04C7374 /* RNFirebaseCrashlytics.m */; }; + 450237AE946360B4D86A82DF9108EF63 /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F75CC06C0F97AC2F75B76FDB40EFFA9D /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4511E4C8DFD1706C322BEFECAB639B93 /* FIRInstanceIDCheckinPreferences_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = E7DE8C91E01DA1613F5EC7CD66F28061 /* FIRInstanceIDCheckinPreferences_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4512CF639ACCB7CC62CD0336CC637A95 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E7A2E2AC47B7F0AEE9D9E54095643D5 /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 452641E607EA42EAB0D4C7FC7F68438A /* RNFirebaseRemoteConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F089F3A124DB6CECEAC5C113F2A71FE /* RNFirebaseRemoteConfig.m */; }; + 4512CF639ACCB7CC62CD0336CC637A95 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = 680D7CA3D690389D5E2F3571CA82F65D /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 452641E607EA42EAB0D4C7FC7F68438A /* RNFirebaseRemoteConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A6893A7A9B3D5FFC6BCCD9C7FA26417 /* RNFirebaseRemoteConfig.m */; }; 4532353CD119D76BF82B67891C680DD6 /* FirebaseInstanceID-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E05491038895B9B893771A35A083EAA8 /* FirebaseInstanceID-dummy.m */; }; - 458E43E940D2058F9A68BBD0956A7644 /* BSGConnectivity.h in Headers */ = {isa = PBXBuildFile; fileRef = C4C82D0794DA98040D5A7DCF691567B8 /* BSGConnectivity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 458E43E940D2058F9A68BBD0956A7644 /* BSGConnectivity.h in Headers */ = {isa = PBXBuildFile; fileRef = F1AF26638D4F4A5094918242AACCFA05 /* BSGConnectivity.h */; settings = {ATTRIBUTES = (Project, ); }; }; 45B509EAE6F30C8FD22CB2AF7B72D785 /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 3479DAFDB6E7103FA78860240F0C3A7C /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 45FE11CB3CB7BBE3D49D3B126DB75BA1 /* ARTPattern.m in Sources */ = {isa = PBXBuildFile; fileRef = 053250B4E1F9B565A8C721AFF28B912D /* ARTPattern.m */; }; - 460EDFD72035E6D5F088C95B73F30305 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 216C4A3EEEEA592CE9AD2CD1077DD9A5 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 463558BBD4C758646B3A100042977D4A /* RCTCustomInputController.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E5E117548E693E5E485250BC8BB48D8 /* RCTCustomInputController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4647F15E0AAB72AAF4365266C1EB0F4E /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = 617FBCF995CE49D04C8237AFF1BF4720 /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 45FE11CB3CB7BBE3D49D3B126DB75BA1 /* ARTPattern.m in Sources */ = {isa = PBXBuildFile; fileRef = 0AF4CA0BA956D4476ADBBF1B6E4E78FA /* ARTPattern.m */; }; + 460EDFD72035E6D5F088C95B73F30305 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 058883D577F30E4210855B6DE5283D8B /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 463558BBD4C758646B3A100042977D4A /* RCTCustomInputController.h in Headers */ = {isa = PBXBuildFile; fileRef = C2E6C2B575F24F9FA7B0F2C3AAEA8577 /* RCTCustomInputController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4647F15E0AAB72AAF4365266C1EB0F4E /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AF7A5FFD96AE3C7E2610CCA4A7EAB54 /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; 468D4662C2082CD37B39EE1999FC6DD1 /* GDTCCTNanopbHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = 583F2384046EE63CCD0360AE527E4565 /* GDTCCTNanopbHelpers.m */; }; - 468E2BA37E64CD16F291C2603E6C6D60 /* RNCSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 64C48D8D013E8FE6E0BC2EE32C9C0330 /* RNCSliderManager.m */; }; - 46C92D13EDF916BFBC5453A68C3B2B12 /* ARTBrush.h in Headers */ = {isa = PBXBuildFile; fileRef = E09F3565A053C17C268671D9AECC4574 /* ARTBrush.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 47038C55444EDF4875734474B0D04880 /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7F54A517880631FC3AB3FE31EDD25CF2 /* RCTHTTPRequestHandler.mm */; }; - 473CEB698A524AA4C14DF66D6E572C37 /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = 54D14A6AF913F814BE23D71D63984D29 /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 468E2BA37E64CD16F291C2603E6C6D60 /* RNCSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0630350963F5CC0D94D065864C0C43AF /* RNCSliderManager.m */; }; + 46C92D13EDF916BFBC5453A68C3B2B12 /* ARTBrush.h in Headers */ = {isa = PBXBuildFile; fileRef = 87E3B4E6F8DFCC3B1564EE5A6BC8A35E /* ARTBrush.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47038C55444EDF4875734474B0D04880 /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = D02ED42A4438E940D0E92D0C69AAD2F9 /* RCTHTTPRequestHandler.mm */; }; + 473CEB698A524AA4C14DF66D6E572C37 /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = F71EB3ED435BE62A03FB8BE9A69A5F5F /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; 477A39CF2D9AB86F3DEE6359B97FB9F5 /* SDImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 28AD1F843F1DFF344E92B8B18AB1A0FB /* SDImageCoderHelper.m */; }; 477E9F458C626A14EA29CADDE3BE895A /* FIRInstallationsIIDTokenStore.m in Sources */ = {isa = PBXBuildFile; fileRef = CC36153E97819CC766DFEB874BBF6500 /* FIRInstallationsIIDTokenStore.m */; }; - 47BD9494DBAEECF3B78696B1C7F16B4C /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B9BAFFB20E75D4AC984487B5BB9A004 /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47BD9494DBAEECF3B78696B1C7F16B4C /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = BEDE3328BA1A8945076556E42D63F101 /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; 47C1D14CAE63EFC8B07A816499198552 /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 35C331504D9FED2A78645DE10B40A14F /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; 480C753D7FA4D8422864286E1DAE61D5 /* FBLPromise+Then.m in Sources */ = {isa = PBXBuildFile; fileRef = 05F2BC055A4813F5A29FBD88A3F3261D /* FBLPromise+Then.m */; }; - 4835C3B0DAF49A23B4BEB570CF5327E2 /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DA09F9FC1A6B126F51A2733487247C5 /* RCTConvert+Text.m */; }; + 4835C3B0DAF49A23B4BEB570CF5327E2 /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DDD0DEB64B160EAE167CD2F2BCCDAFF /* RCTConvert+Text.m */; }; 48363CF916E87324E455BF39CE064DC1 /* SDImageCacheDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 7AE11FC733D32808154EE0C7975D70AD /* SDImageCacheDefine.m */; }; 48A597F6B21D3A8BD625F3BCA9DFFBF0 /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = 63743B445C8FAC8021EC41CC4362CF9F /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 48A65F090855476E8ED575F6389A7272 /* REAValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 04EA08A77D9346780B4B301D8DE2F6B8 /* REAValueNode.m */; }; - 48AB1B74E63D91A4FDBB5A85D55E4ACF /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 46CA0C2F0C64FDE17DA59C7E8EBA9F7C /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 48BF79294A1C22CC36D1E91201E030E2 /* BugsnagHandledState.m in Sources */ = {isa = PBXBuildFile; fileRef = 410D6867C29D9F4F2585F6E3E6E4DB52 /* BugsnagHandledState.m */; }; - 48E2406E6C69AD9BA73860D7FAE33DCF /* BugsnagSink.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F88B876C5405EBA02F0267913352F6F /* BugsnagSink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4908C596106B2FACEDFD4A5474075242 /* RNPushKitEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = A3C40648B277654B89CBC8308486307E /* RNPushKitEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48A65F090855476E8ED575F6389A7272 /* REAValueNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F6DD803CEEF3E5ED10A5840760D5E1C5 /* REAValueNode.m */; }; + 48AB1B74E63D91A4FDBB5A85D55E4ACF /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 702CADBFFDC7EF3FBCCA9A11A221319C /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48BF79294A1C22CC36D1E91201E030E2 /* BugsnagHandledState.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F3B97417BD3C97C6BBFD6BDC54FED8 /* BugsnagHandledState.m */; }; + 48E2406E6C69AD9BA73860D7FAE33DCF /* BugsnagSink.h in Headers */ = {isa = PBXBuildFile; fileRef = A08C132DEDA462010F5B82CC4EFD99A4 /* BugsnagSink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4908C596106B2FACEDFD4A5474075242 /* RNPushKitEventListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F063C7CC4BD76F426301C2BBE30E27B /* RNPushKitEventListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4977E406F103BC7E9F600C3C57CBF755 /* picture_rescale_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 28360F116ACE0C01D969AB83563A87B3 /* picture_rescale_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 499A78064AD0B576066DF5C4AE420F4B /* FIRInstallationsAuthTokenResult.m in Sources */ = {isa = PBXBuildFile; fileRef = ABFDDF7E2B4A60522C6DC5915D034318 /* FIRInstallationsAuthTokenResult.m */; }; - 499FEAAE461FD29D544C7CC5DE018BFA /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = 857E762FD5E4040F49FB20F21D656487 /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49B7D61F6DE83F207D6CD7D9303633B1 /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 21FD64ECA5043E71869A816326A90245 /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49C6B4C68299EBCE9E775E1DD93265C2 /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 27C8EB49CC4CD3F84FECC6E661B1CA25 /* RCTShadowView+Layout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 499FEAAE461FD29D544C7CC5DE018BFA /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C423F0F22D9E644B5F9E5ECA56CBB8D /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49B7D61F6DE83F207D6CD7D9303633B1 /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E7A149307A393ACABD36837C91C2C61 /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49C6B4C68299EBCE9E775E1DD93265C2 /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 3761AEACE1DA39F1AD4786BB1D0061FF /* RCTShadowView+Layout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 49E32996D57F0BE4B4C214A788834B8A /* GDTCOREvent_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = F4B0846CC9420B2A99D2842B5596A174 /* GDTCOREvent_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 49ED22AD77FCA7D73439C955EC426CD9 /* backward_references_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 478F25920DDB277A1F4403B7268C02D9 /* backward_references_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A0647047F5A97E7B469362447A72896 /* RNEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 552764B9A0BD91BCD64E04C969EDD959 /* RNEventEmitter.m */; }; - 4A50D92C658ED40C6E8CEE6F91AFE368 /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F7FAF4767F2073315B68AA2ACF9D43F /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A75E803AF46B56D11CCCE41CE8FBE0C /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 30C31DA992CC2BBA6BBFB25792C01FB2 /* UMUtilities.m */; }; - 4A7CBC49E0E714E315BF2E22E39BC136 /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B836C4150968AB6CB201FDBEAF345D62 /* UMReactFontManager.m */; }; - 4B1091BECD4A0FD930B42261D4A716A6 /* REAParamNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A9AB10A51330DF7904DC4C0C9AE6EBD /* REAParamNode.m */; }; - 4B174EC3B79E737EC18607D92EFFA69B /* RNDocumentPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = A43B2A2F1692B94FFBE6296047F98078 /* RNDocumentPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A0647047F5A97E7B469362447A72896 /* RNEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 31184F2A33D855B394E7FA887BE6E1C8 /* RNEventEmitter.m */; }; + 4A50D92C658ED40C6E8CEE6F91AFE368 /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 488480EAD543AFDD806FE0620D2A8B9A /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A75E803AF46B56D11CCCE41CE8FBE0C /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = DB374EFA51479560B62F10435C12AD7C /* UMUtilities.m */; }; + 4A7CBC49E0E714E315BF2E22E39BC136 /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E0BF76806F01A4737F7E7FF400AFF7A /* UMReactFontManager.m */; }; + 4B1091BECD4A0FD930B42261D4A716A6 /* REAParamNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 54AC49AAA4AFD11414A9FAAF69ED9769 /* REAParamNode.m */; }; + 4B174EC3B79E737EC18607D92EFFA69B /* RNDocumentPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = F8B4A74169F9588A6545B52CDB6A092D /* RNDocumentPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4B46CA419944F2581E787DEC9E26DF27 /* SDAnimatedImagePlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6456BEB6732CB1208721A93717E83ACB /* SDAnimatedImagePlayer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4B6624A1006ED93B3305A5C01B680EAD /* random_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 64963B0AD90508C9D1DAD41D65CBBC0C /* random_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4BDB4407A51CC421C90A908BD6A6031D /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = 864E531677D5FDC8C55FAAFFFB25F5A6 /* RCTTextSelection.m */; }; - 4BFD25CA7DBC62396BB66D451DDC502A /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 80860F4CE5B3CFC4012350F2586BF780 /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4C1215C207F76B2D1473350F2CD63B5F /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F8FE20DC1D5D221CB41328B3C377473 /* QBAlbumCell.m */; }; - 4C7CFC31B67E5D1520E3FDB757211A24 /* RNAudio-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B4CBF62749100696269A58ABE3AD370E /* RNAudio-dummy.m */; }; - 4C977662AA3595E8D9F5367431E85368 /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 9214CCFBCD5FCADCB4FD08313D9448C9 /* RCTInspectorPackagerConnection.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4CC0FCC24DC626AA4562DB78E899CF18 /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 595749AF0F0544A02F47ECF6633DA760 /* RCTUIManagerUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4BDB4407A51CC421C90A908BD6A6031D /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = 52F26A7E8EED47F49C39F9121B4D43F8 /* RCTTextSelection.m */; }; + 4BFD25CA7DBC62396BB66D451DDC502A /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7BC202C24CE9064F5A6E70A82A6B382C /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4C1215C207F76B2D1473350F2CD63B5F /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = A8EF9ADE40BC7719B21F362BA27D0CE6 /* QBAlbumCell.m */; }; + 4C7CFC31B67E5D1520E3FDB757211A24 /* RNAudio-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E389BD72A1C7A96A96993A4A39B7D055 /* RNAudio-dummy.m */; }; + 4C977662AA3595E8D9F5367431E85368 /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E3E534D5295A28045589D6BEA240E6B /* RCTInspectorPackagerConnection.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4CC0FCC24DC626AA4562DB78E899CF18 /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 6621CD50302794812AD1F7FF9D0322B6 /* RCTUIManagerUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 4CC8A1271887F77848976D93CA74D44F /* UIApplication+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 195034DDBA6E2F083A2BB6F020769C4F /* UIApplication+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4CCBFEADC3A7B8A5E9B92C290981C41B /* GULLoggerCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = E82A30AEF74EE71AF0B62661B8B26951 /* GULLoggerCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D1161EFA05C95DED718D8A835C85042 /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 552C78C6484E5AAA46853C4A11A084C9 /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D9B404036A2626231F5223FDFF15074 /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 251B86E92411878C6682553867AC98E8 /* Yoga-dummy.m */; }; - 4DA8304474BEA599DF8E2F8D29F75DDA /* RNFirebaseAuth.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C914BBC97E292E5EFBEA4F4414C3500 /* RNFirebaseAuth.m */; }; + 4D1161EFA05C95DED718D8A835C85042 /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = A23FC1C6EEB4D286D5681F8C73164353 /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D9B404036A2626231F5223FDFF15074 /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B4AF1BC881ABF078126D2DE6D9EDC0E /* Yoga-dummy.m */; }; + 4DA8304474BEA599DF8E2F8D29F75DDA /* RNFirebaseAuth.m in Sources */ = {isa = PBXBuildFile; fileRef = D514EDE68ECD59E03F9C6FB34661F168 /* RNFirebaseAuth.m */; }; 4DC3C93691EB8D66A121CA71EF8113BF /* enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 0707F165A40293C90DB9DB10B0433839 /* enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4DD88B6EF04BCF202E55A0EB6D8EB486 /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = CB3B48E6147457728CB56CE1BA95DF0F /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4DFFBA368483E031A15E54516CEED584 /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E11CC26571EB421A596832D803E4ADB /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E1848B48A891AECC6A70A8F09515A91 /* BSG_KSCrashSentry.c in Sources */ = {isa = PBXBuildFile; fileRef = E2E450206ED9BCA2BE53194642EDE138 /* BSG_KSCrashSentry.c */; }; + 4DD88B6EF04BCF202E55A0EB6D8EB486 /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 54002BF23C709D0073AEFC546E5E45E9 /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4DFFBA368483E031A15E54516CEED584 /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = C15DBBB908005ED013E5D85E2446096A /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E1848B48A891AECC6A70A8F09515A91 /* BSG_KSCrashSentry.c in Sources */ = {isa = PBXBuildFile; fileRef = ED6418C05DC7F19AB106263F7C32FCC6 /* BSG_KSCrashSentry.c */; }; 4E482BE9AD7430C9B3E1B787850C95DF /* huffman_encode_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 762B0734C882B680C9D971AF79E220CA /* huffman_encode_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 4E5A24B2AF227D372E222CC035C1DAA2 /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A21588A6554E872D0F5137FF593521A /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E6013E485F9ED649C319A0D4F4FF62A /* EXAVPlayerData.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C10B5A48784E792CA65B3D54A32EE31 /* EXAVPlayerData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E6013E485F9ED649C319A0D4F4FF62A /* EXAVPlayerData.h in Headers */ = {isa = PBXBuildFile; fileRef = BDBB11DCB79434FB7CF2C3941984DB0E /* EXAVPlayerData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4ECA0D81891EADA811094561AB083DF3 /* dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 78E05B5B4544D8C74092E8B0982CF77B /* dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 4EF4EDE720C083DE10CB8F54DE08DB92 /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C865AE8C6D07D3F5C9D9F79772C2663 /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4EF7FEE09B24A016FD7489025596D713 /* AudioRecorderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EB7EB013F833B355FD0244A8EA7E1E9B /* AudioRecorderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F08C1AA06DB1EF092D1AC739DDD32A4 /* ARTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = F13D4DA071E13382EBB8FAACFBAB3167 /* ARTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F15A702742BC8EEC77814DD5A7D1641 /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = A36A109784D2B83D3C88A7A23FEE4229 /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4F2C2732085E16054E71361E687114D3 /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = E1761FC1DF3FDB6F1A4BDA9991658594 /* RCTImageUtils.m */; }; - 4FC056AA5B803E2F5E1BE4D5EB038A0B /* react-native-appearance-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1930EF38F81766151936FC224DA4DE79 /* react-native-appearance-dummy.m */; }; - 4FC9AE5622DA302E003954C3A03A61CD /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 15B2FB55546B58F6FC0E141AAB476DEA /* React-RCTSettings-dummy.m */; }; - 4FCB2253CAAF6A8CD77729C14594CBE4 /* ARTSurfaceView.m in Sources */ = {isa = PBXBuildFile; fileRef = D88BB9068AAEF882200E06034A2E98B2 /* ARTSurfaceView.m */; }; + 4EF4EDE720C083DE10CB8F54DE08DB92 /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D333D6C9815B4D7BDE138207450774 /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4EF7FEE09B24A016FD7489025596D713 /* AudioRecorderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5668891029B9B7D87A4885AE25E331EB /* AudioRecorderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F08C1AA06DB1EF092D1AC739DDD32A4 /* ARTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = C7FD02188CDAF5EB23CBB76EED51035B /* ARTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F15A702742BC8EEC77814DD5A7D1641 /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7E16A5B4856F88F15343D19693C196B5 /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4F2C2732085E16054E71361E687114D3 /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = ABB251627EA1EA9F5A808A72F87A62A9 /* RCTImageUtils.m */; }; + 4FC056AA5B803E2F5E1BE4D5EB038A0B /* react-native-appearance-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B67E23A4D5E5329C0527C804BD3134E /* react-native-appearance-dummy.m */; }; + 4FC9AE5622DA302E003954C3A03A61CD /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6720C13989FF0300B3BD20734475DF23 /* React-RCTSettings-dummy.m */; }; + 4FCB2253CAAF6A8CD77729C14594CBE4 /* ARTSurfaceView.m in Sources */ = {isa = PBXBuildFile; fileRef = 54DAD86D8E7F2D57156D4FEA78F677AE /* ARTSurfaceView.m */; }; 4FF27C416A5E6CF6705EE1732D392D1B /* FBLPromise+All.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FAC32E62B1F1A5CF4B7035D16475866 /* FBLPromise+All.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5005D6761137D55A31755FA8762CCF7B /* FBLPromise+Wrap.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FECE8B750D858CB3C6E9F3EC41E9A9F /* FBLPromise+Wrap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 500E9B663E101F6ACAFBA792E5932023 /* BugsnagBreadcrumb.h in Headers */ = {isa = PBXBuildFile; fileRef = D27306986FC5408AC3FEF9F3D00DF96F /* BugsnagBreadcrumb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 503F96DD76B26B7F3FF816FB7F6E6B18 /* RNLocalize.m in Sources */ = {isa = PBXBuildFile; fileRef = F6627C545F0044B75E15296F257929F5 /* RNLocalize.m */; }; - 50698A0A9C1C096EE7D378E2C872A384 /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C9E54AD8B41D0C5767C7A07792FF8A2 /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50738319CBBADE87610C7672075BA2B8 /* EXVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 38EAD67CF2A3E1955A132851281FF6EE /* EXVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 500E9B663E101F6ACAFBA792E5932023 /* BugsnagBreadcrumb.h in Headers */ = {isa = PBXBuildFile; fileRef = 67DBF913CE88380D78DC6C7EA7707F76 /* BugsnagBreadcrumb.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 503F96DD76B26B7F3FF816FB7F6E6B18 /* RNLocalize.m in Sources */ = {isa = PBXBuildFile; fileRef = A40DDBDE75B76EE4C97C4876D85175B1 /* RNLocalize.m */; }; + 50698A0A9C1C096EE7D378E2C872A384 /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 40DD1EB0A38626D7672CEF0EEFF5C426 /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 50738319CBBADE87610C7672075BA2B8 /* EXVideoPlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = A097391D91E9B6ABA1CECE20676B56E3 /* EXVideoPlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 50A813DCE536784396073D6FFF9F3325 /* mux_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 54C80AE83CCD41943A1509A4518CEF1A /* mux_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50A900B393ED9B9AE107160AAAA9D2CE /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = BCF2345A2EA02A64F30B955F622EF579 /* RCTErrorInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 51093E66FA7DBDB281D906D26D9DC378 /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = F55F61BA61E17B03C7DE7BB3DD03F64F /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 511F51533D71E43B725E235CCA913464 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = C77C24556A53C47DF40E0A8E02AD3723 /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 50A900B393ED9B9AE107160AAAA9D2CE /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 71A8D8AD63970F41D631921F678B5C49 /* RCTErrorInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 51093E66FA7DBDB281D906D26D9DC378 /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = 5739CF4CDC78B4383E371AB297932F20 /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 511F51533D71E43B725E235CCA913464 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 595753034D06481EB8E563E3BE145B52 /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 5134C7B582F00BAB682F3A69DC3790AA /* SDMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 93B11D5857328B9B8C43CEFE929288EC /* SDMemoryCache.m */; }; 5170CD2D819D39CE643B288F7DA6212A /* FIRInstallationsAuthTokenResultInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = A8C2E718EEB7FC61E0AF4FF7745365F7 /* FIRInstallationsAuthTokenResultInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 517ABBAF7367444484132D7F5CD6BBC7 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A5CE5EDFD4CC2026BCE5EFAD0A77B9F /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51AB931695C6A683B02DCED4DDC7E900 /* RNNotificationEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D04B7E2613F82221268696643CDF9CC2 /* RNNotificationEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51B0202DAF50A4A3AEA12893E08ACDF3 /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D951480F892BE81EC44F26A081C5205 /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 517ABBAF7367444484132D7F5CD6BBC7 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D89E2A740EBF31F6D63E4CD54C4BD4BB /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51AB931695C6A683B02DCED4DDC7E900 /* RNNotificationEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D1D04F15826580499B17234E3912288 /* RNNotificationEventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51B0202DAF50A4A3AEA12893E08ACDF3 /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 78A184457F8555737983B26A11323CC5 /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 52ADAD247D836F3627A7E5CE7744A659 /* FIRSecureStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 3831B2A00965967014DC2303A0B27F59 /* FIRSecureStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 52D80F9C25476F314DF6A4A179BB7A23 /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E8FFCBFFB676EA7DA34B1A9054586EC1 /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 52D80F9C25476F314DF6A4A179BB7A23 /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F66E7205BB7E21813556AB6A7D50114 /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 530798D8A1CF3289921987D9FDC7B884 /* FIRAppAssociationRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = 59EDFE4884DAF3E61B6C33A8BE503617 /* FIRAppAssociationRegistration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 531131AA54E45A625EE48708E77A7910 /* RNFirebaseFirestoreDocumentReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B68F2825A5F62FCD233C7EEDF9B82D2 /* RNFirebaseFirestoreDocumentReference.m */; }; - 5323DB969E6AEB25BAB50F2CB65D553E /* ARTBrush.m in Sources */ = {isa = PBXBuildFile; fileRef = AF89BE7FDF89C01015A090FDCD1FD7CA /* ARTBrush.m */; }; + 531131AA54E45A625EE48708E77A7910 /* RNFirebaseFirestoreDocumentReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F56A0807073424049DE488D5F256EDD /* RNFirebaseFirestoreDocumentReference.m */; }; + 5323DB969E6AEB25BAB50F2CB65D553E /* ARTBrush.m in Sources */ = {isa = PBXBuildFile; fileRef = 71BEB9E31A700E806EFB7FEC98C34B4E /* ARTBrush.m */; }; 532684D939B80EF9527A71AC2082A6E5 /* SDWebImageError.m in Sources */ = {isa = PBXBuildFile; fileRef = B2910F746BA799CA787EFCE48845B524 /* SDWebImageError.m */; }; 533F5B5A43499AF92AB8DBF7CC1CF84B /* FIRErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = CCE13B65AEE9DB27E1676D172D142597 /* FIRErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 535DACC7936138341FA544E17631DE61 /* RCTVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 07CFB0E0B4BDEDA2A38B1B0CBE538C1A /* RCTVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 535DACC7936138341FA544E17631DE61 /* RCTVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 9973454611F684DDCF713365145BC4F6 /* RCTVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 53C338E1563591F463193CF3D2327216 /* FIRInstanceIDTokenFetchOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B78E7E3DBE12168C17E886E24FB2F51 /* FIRInstanceIDTokenFetchOperation.m */; }; - 5438467E978675E1651C0CC682270E26 /* RCTWebSocketExecutor.m in Sources */ = {isa = PBXBuildFile; fileRef = 530D57AB3979EFD0DAC18E8B0387EB2D /* RCTWebSocketExecutor.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 545434BD6D2216C6F09893FF449649DD /* BugsnagFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 13D15DAB3C5711DFB7C6B3F1F3166E3E /* BugsnagFileStore.m */; }; - 5472D790D5CA80D8841FE82D9CC7E06E /* REATransitionValues.h in Headers */ = {isa = PBXBuildFile; fileRef = EB02E1D6B07453B5F6ED0EBFD6E676A5 /* REATransitionValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5486311C31543B9A40362E6836E817DE /* ARTTextManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E72C9EF29F6A797469AE3146483A69C9 /* ARTTextManager.m */; }; - 54B1C522469904C9947EEFBC434317C7 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CB51127FF6C0976D95599F103AD29CA /* RCTPropsAnimatedNode.m */; }; - 54BCA853DAAC904AE97C54D9E4800CC7 /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = A36F98AFED3E1B7EC702C7C6D15AE300 /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54DD7A4DA510F89502898CFDDE526791 /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A2B94ECD37EABC4C367A6D47319FAED9 /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54E1C1794977A05E882F8472429C9528 /* BSG_KSCrashSentry_NSException.m in Sources */ = {isa = PBXBuildFile; fileRef = B7306BA5C2451AA1BBB2567333902B39 /* BSG_KSCrashSentry_NSException.m */; }; - 55195AB5F725DF334CBDC109AE395CA3 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A70F77CBF361A7F8726BDF350E3BC69B /* RCTStyleAnimatedNode.m */; }; + 5438467E978675E1651C0CC682270E26 /* RCTWebSocketExecutor.m in Sources */ = {isa = PBXBuildFile; fileRef = 42E0AF342E91FEF4D7EA5F7325F5828F /* RCTWebSocketExecutor.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 545434BD6D2216C6F09893FF449649DD /* BugsnagFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 43CF00C5BF0D4947F59761AEBD7F68AB /* BugsnagFileStore.m */; }; + 5472D790D5CA80D8841FE82D9CC7E06E /* REATransitionValues.h in Headers */ = {isa = PBXBuildFile; fileRef = DC7A46600FBDC9BC873D1E50C0822400 /* REATransitionValues.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5486311C31543B9A40362E6836E817DE /* ARTTextManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DF5B2C7483E20A7A39072BA3B0AF5A0 /* ARTTextManager.m */; }; + 54B1C522469904C9947EEFBC434317C7 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DAAD67DF7974AF97D3B405CB6A2F359 /* RCTPropsAnimatedNode.m */; }; + 54BCA853DAAC904AE97C54D9E4800CC7 /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = 131D3902D9352C048A30423FCBF0B8FA /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54DD7A4DA510F89502898CFDDE526791 /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6178ED33DD306879DAFA289C279D1721 /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54E1C1794977A05E882F8472429C9528 /* BSG_KSCrashSentry_NSException.m in Sources */ = {isa = PBXBuildFile; fileRef = E3DCC62AAF84C99768664D5FCB9581FC /* BSG_KSCrashSentry_NSException.m */; }; + 55195AB5F725DF334CBDC109AE395CA3 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B03AEABDDF62B278F296D02437A837D5 /* RCTStyleAnimatedNode.m */; }; 552BF8053A03C10B0A849A781B5D40AB /* NSError+FIRInstanceID.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DFBAA668DAA11EFFF653C4F4F65920D /* NSError+FIRInstanceID.m */; }; - 5540CDDC03A82226F1717892B3E634E7 /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B00F1FE3D135C9D9CB860A71ADD16CE /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5540CDDC03A82226F1717892B3E634E7 /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 041AE7063506BA408912E1C0DC8B5B9F /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; 555AE9BB3A4B4A37116D009489131F89 /* GDTCORRegistrar.m in Sources */ = {isa = PBXBuildFile; fileRef = 43AAE931318CFC65211035F2E169B081 /* GDTCORRegistrar.m */; }; 556BC4473335922D123C95D9C7A6307F /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = D63B972B95C4ACEAA36C351BF1B2CDDD /* SDImageCacheConfig.m */; }; - 5577579A4BFCE7BD4C079625B8F67344 /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = C3F873101E68AB7AB6750170F1CC997C /* RCTScrollView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 55B7CB112CABCD20BB52FA1F225BCE39 /* RCTConvert+REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = FB0466ADC87C26343FE7AE73E674521A /* RCTConvert+REATransition.m */; }; + 5577579A4BFCE7BD4C079625B8F67344 /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 440B6391AA28FA24977CB94B3896EDD0 /* RCTScrollView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 55B7CB112CABCD20BB52FA1F225BCE39 /* RCTConvert+REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = B99B50260D3C74CC0BE95A439511508F /* RCTConvert+REATransition.m */; }; 55F72D6B2A29619435CE8615E7803975 /* dec_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = B5C4CF7EEBB56E009C17E4CB2CDCD303 /* dec_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 55FB43514277CA17C739F645DAC9441E /* RCTConvert+RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = CF353E7A44DDBE94363B76364EC14F54 /* RCTConvert+RNNotifications.m */; }; + 55FB43514277CA17C739F645DAC9441E /* RCTConvert+RNNotifications.m in Sources */ = {isa = PBXBuildFile; fileRef = 87DB8BAA7E0AA6309FC82A17A1670CF0 /* RCTConvert+RNNotifications.m */; }; 5605F99EFA7EB1FC1B0AD035A25608E8 /* SDDiskCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 55DEC1E6B4290093E9B0766AC1D19DFF /* SDDiskCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 56100FAAA94464067322A690ED912A7A /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 23AB78D14C1EC7321119A8EF4E9C9C57 /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 56100FAAA94464067322A690ED912A7A /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F7B2000BE3105D55FDF862386C46774 /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5651B7D25B0D4053B7DCBE24594AE5A2 /* SDImageAPNGCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EE39A7B4283BEFE43E66F46862951DC /* SDImageAPNGCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 565EF60B5D30D937C88DB733534A746E /* FIRInstallations.h in Headers */ = {isa = PBXBuildFile; fileRef = C99B6ED7E39443CBF47A64AE5D60CD8E /* FIRInstallations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5672B8BD4C7EAB0DE6BBFEC8487B6693 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = D2E953FB7D2B868CC851F5A3913258C6 /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5672B8BD4C7EAB0DE6BBFEC8487B6693 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = FA5F8B27C3393ECAFC57D32F193C67B1 /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 5730650DB2DEAACDDD31A30086AC02D9 /* filters_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 371C3A9071849B2A8C9AA73083078BAB /* filters_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5739A1EE2310BDED7DC7300319F16951 /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = A00DE769931FC6DE829514A38AA058C2 /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5739A1EE2310BDED7DC7300319F16951 /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = F330BF2530869556DBD57DDFD63437EE /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5741AFE087A083C8D0D5C9D5F646A707 /* muxread.c in Sources */ = {isa = PBXBuildFile; fileRef = 285481B86C63C48528603907702089DB /* muxread.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 575004987788BE8008A657816910AEF4 /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B955349B39533145CDAE10EE18937134 /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 5750428B5929F173BFFC86913079ACDA /* ObservingInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = B4998D6EA6CE1D68BCEAE9418CC9E1EA /* ObservingInputAccessoryView.m */; }; + 575004987788BE8008A657816910AEF4 /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AA83C66BCE237C477EF7FA53A9A4C4FD /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 5750428B5929F173BFFC86913079ACDA /* ObservingInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CCDD0A69E45548748B1FAAF293AADFB /* ObservingInputAccessoryView.m */; }; 57779A997F204BED973BB03DBF2B8190 /* vp8l_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = B18979D7EEF1DB0BD8B390FAE4FA6123 /* vp8l_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 57A58CB1136FD1C50C4E567719066705 /* BSG_KSJSONCodec.c in Sources */ = {isa = PBXBuildFile; fileRef = 95F2F9E652BC530FD7527C731009D0EC /* BSG_KSJSONCodec.c */; }; - 57C316C8C1D30A80E5A09BE3C6B6DC7A /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 23D99027B066B537F89C3C0841D9782B /* EXFileSystem-dummy.m */; }; - 57F5F62A57C9A3E5EA58650CB98BADBD /* UIResponder+FirstResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 461C33C67D13793FF59480A4A91A14CD /* UIResponder+FirstResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 57A58CB1136FD1C50C4E567719066705 /* BSG_KSJSONCodec.c in Sources */ = {isa = PBXBuildFile; fileRef = 1A9CFC66C39806B6AED10B7D782682F5 /* BSG_KSJSONCodec.c */; }; + 57C316C8C1D30A80E5A09BE3C6B6DC7A /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D7D51A791FED6E76B08D4DF61681B7E7 /* EXFileSystem-dummy.m */; }; + 57F5F62A57C9A3E5EA58650CB98BADBD /* UIResponder+FirstResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = C7C0DDAD43DCB0C5B0E28964FBD037BE /* UIResponder+FirstResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 58126EAA5B53B971BB4636C7A244A749 /* GDTCORUploadCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = F55052F42574B7D52A6BA105DCE2F19E /* GDTCORUploadCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 583014BFFCEEA7B050F315C823BFB7DE /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DBA79DCBFDE0F5CA840BF7EC8649F63B /* JSCRuntime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5835A6EE119F67B3B5DDB92D53520B25 /* EXHapticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 04D9890E05EDA71F5F625F17AF28414C /* EXHapticsModule.m */; }; + 583014BFFCEEA7B050F315C823BFB7DE /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D63308F085833F5B80CFD4C19FC1B4DA /* JSCRuntime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5835A6EE119F67B3B5DDB92D53520B25 /* EXHapticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 86F3BA956CA2FFF9CD02935EAB9D2D39 /* EXHapticsModule.m */; }; 589F5BDC2B57CBEAEC6B457450AB3F6B /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C3849B9FE871B8A9BFFEA94781CC286 /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Project, ); }; }; 58AEF2D987F14D4D2AF6D28C7F7F4CF7 /* rescaler_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = EB58C1A1A2B45B20B44F908DC5FFD1D5 /* rescaler_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 58D7052A7CCD26DD25B38FAAD2E996F2 /* SDImageLoadersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 458BC6D0F0ABCC8D2958F42C9A3F3820 /* SDImageLoadersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 58EC76AF621A0CEB920D28FC263B080A /* BSG_KSCrashCallCompletion.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E7B1288BE3BAEE06C25A2F4CBA03615 /* BSG_KSCrashCallCompletion.m */; }; - 59AFFBDA7A1CEAA4938A2897A836C114 /* UMPermissionsInterface-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DB1581503FD52F37AC9575366D47D3DE /* UMPermissionsInterface-dummy.m */; }; - 59C92BB99C82C50287F115D47A1CF725 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B3686332A431ADEBE518021AC34BDF6 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59FA089B729EBF37634A4D344228514B /* RNFirebaseUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 51A510BB7901A687F6D704C090BF5DBB /* RNFirebaseUtil.m */; }; + 58EC76AF621A0CEB920D28FC263B080A /* BSG_KSCrashCallCompletion.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DFEBD29FC57E8774800E8CBB8128456 /* BSG_KSCrashCallCompletion.m */; }; + 59AFFBDA7A1CEAA4938A2897A836C114 /* UMPermissionsInterface-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 296ED7582318BBF5FB39B24E3E2A0470 /* UMPermissionsInterface-dummy.m */; }; + 59C92BB99C82C50287F115D47A1CF725 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 379936F1F3A202E81F05EB564A22F2FB /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59FA089B729EBF37634A4D344228514B /* RNFirebaseUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 9616C625D92B8968CC0533A4CA4AE4A6 /* RNFirebaseUtil.m */; }; 5A01CF4A9C711B4E767058AC022D8DE5 /* FIRInstanceIDTokenStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 81DA341D791704280F8256A98FF27460 /* FIRInstanceIDTokenStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A33410E138E7114023CBA9FD59674E8 /* BSG_KSSysCtl.h in Headers */ = {isa = PBXBuildFile; fileRef = 1687966F55C3D0BA586F39150074CAB0 /* BSG_KSSysCtl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A33410E138E7114023CBA9FD59674E8 /* BSG_KSSysCtl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B4F0F981C6AD43F5E733E48EBBEC200 /* BSG_KSSysCtl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5A59A50C6C6459D108D357CE53F2156A /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0F354B2F01F2D88BF64EFB54C7F55D9B /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 5A629419C0D96DB5D419A3C1138D1A21 /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 04EA1C75A760C09973E3167EFE3E6935 /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A84ABFC6FC217BEC6FE13B2D09C48DF /* RCTImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BE8A10F3D934DBDC54D658272AD09D02 /* RCTImageViewManager.m */; }; - 5AD05473C8FF3452F5780F1B84255D08 /* ARTGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BD6BAC4386150AC14FC03B0107457F4 /* ARTGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5AF23FBF64648FF288C59BA264F52D33 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 68D81A512B718B97E473BF6AB68B9261 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B3B7A693EFBE41F88B15144198DF339 /* BSG_KSObjCApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 47AD2C702B462A8FA9E8BCD3AFC16FDB /* BSG_KSObjCApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A629419C0D96DB5D419A3C1138D1A21 /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D7A95B257013795111CFA1F1AB3E1273 /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A84ABFC6FC217BEC6FE13B2D09C48DF /* RCTImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 525EB8BBFE9CDE17D718698C8776AD64 /* RCTImageViewManager.m */; }; + 5AD05473C8FF3452F5780F1B84255D08 /* ARTGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 6600B3ECE4A9A1F4D25396A83C32C3DD /* ARTGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5AF23FBF64648FF288C59BA264F52D33 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = DC23F2A6776968AC25F6B3A06A87CADB /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B3B7A693EFBE41F88B15144198DF339 /* BSG_KSObjCApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 466503B6AAEA47B56A7ECA1834A44B75 /* BSG_KSObjCApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5B3E2563BD4AC3D5DCEC78F631AC9B40 /* GoogleUtilities-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7EA24205E9A7B87800BCFEEC108BFF33 /* GoogleUtilities-dummy.m */; }; - 5B442972EF2B41A52CAF358203414CED /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 651B081AAA996E059BAFD533EF0B1B68 /* RCTLayout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5B49E81F49E66F6505E50F99424D1C59 /* ARTPattern.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B661C235782F588A607E45D40B27789 /* ARTPattern.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B442972EF2B41A52CAF358203414CED /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D0AB78E30104F0A136DF6B23174E0D0 /* RCTLayout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5B49E81F49E66F6505E50F99424D1C59 /* ARTPattern.h in Headers */ = {isa = PBXBuildFile; fileRef = 2606CCA8EA3FA4E2E33F4F7F9C664DB0 /* ARTPattern.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5B4A397DF3BDA66041BD6CEF2B3EB09C /* SDImageHEICCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = FC4D1271006F3F19FD1F32ED18916996 /* SDImageHEICCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B4B0F4B0B8EC0566E9C37CFBE013C7E /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A91EB71EA653428485E5466E2CBB8D2 /* RCTBorderDrawing.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5B58EDCC67B8226268F1E5A7EA115AD6 /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = 92FBB8099801A27BF1A4141AEA1489F7 /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B70122A26A89D3DFA857385FD1A9AD0 /* BSG_KSMachApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B0B208F7890597F3918DE32BCD8538F /* BSG_KSMachApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BBD3BF8F1D8BCE5424520F1C5F597A0 /* RCTConvert+FFFastImage.h in Headers */ = {isa = PBXBuildFile; fileRef = EC14FEAF264818E7E570224ACC8BFD4D /* RCTConvert+FFFastImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BCC122BAE29ECBAEB136C7B886C7C8A /* RNFirebaseFirestoreCollectionReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A545AFD8FE1AABA0B0D87E164A89FAD /* RNFirebaseFirestoreCollectionReference.m */; }; - 5C2627501BA7043543996AE385236BC1 /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C96A05BA36C9D48DA39C7BD583F2C35 /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C3E927542A18118CA2CF86513E70B5B /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = 65BB7F720816F7216E1F891DEC5A5873 /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D1443CA14941EC385B1380A3F3FD2D8 /* EXAVPlayerData.m in Sources */ = {isa = PBXBuildFile; fileRef = B29E9B69763520242F449457640639CB /* EXAVPlayerData.m */; }; + 5B4B0F4B0B8EC0566E9C37CFBE013C7E /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = AA9F7478AADD3DD5BF9F700EE0988915 /* RCTBorderDrawing.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5B58EDCC67B8226268F1E5A7EA115AD6 /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = BCEA53C69C3685631F06C2188C4F5F73 /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B70122A26A89D3DFA857385FD1A9AD0 /* BSG_KSMachApple.h in Headers */ = {isa = PBXBuildFile; fileRef = 5551575C22DFECDAF2FC590238BBB242 /* BSG_KSMachApple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BBD3BF8F1D8BCE5424520F1C5F597A0 /* RCTConvert+FFFastImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A09A3FC6667C5F9782E43A35E3C5BE8 /* RCTConvert+FFFastImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BCC122BAE29ECBAEB136C7B886C7C8A /* RNFirebaseFirestoreCollectionReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 516328D76CF735CAAC99DF79EEE52C05 /* RNFirebaseFirestoreCollectionReference.m */; }; + 5C2627501BA7043543996AE385236BC1 /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0797AE20CA374FA355E5FBE35EF12C88 /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C3E927542A18118CA2CF86513E70B5B /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = 60962EF7F5AA7A9D95F94DCEE66EA7F5 /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D1443CA14941EC385B1380A3F3FD2D8 /* EXAVPlayerData.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AADD43B283931056291E3578A535816 /* EXAVPlayerData.m */; }; 5D94C85521F651CAF78D0774F739EFFE /* config_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 507484DC13FF28BFA253C3259BC915AF /* config_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 5DA1958CF4DAD67AEB1A26CA2FBBB7EB /* RNFirebaseAdMob.m in Sources */ = {isa = PBXBuildFile; fileRef = EB1063DE45A52A4A4BC6F0E3D4C90CDC /* RNFirebaseAdMob.m */; }; + 5DA1958CF4DAD67AEB1A26CA2FBBB7EB /* RNFirebaseAdMob.m in Sources */ = {isa = PBXBuildFile; fileRef = 60978B2DFAAE74E084D487E2882749B4 /* RNFirebaseAdMob.m */; }; 5DCA31ED0308779922E83F0F13640E3F /* FIRInstanceIDAuthService.m in Sources */ = {isa = PBXBuildFile; fileRef = A4B5638048C9BE689A53D2981A56EE93 /* FIRInstanceIDAuthService.m */; }; - 5E037AEDDBDE44BA91A33C56023FF2F6 /* ARTRenderable.h in Headers */ = {isa = PBXBuildFile; fileRef = C996A6E63A68DF84911C919C171BE0CD /* ARTRenderable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E037AEDDBDE44BA91A33C56023FF2F6 /* ARTRenderable.h in Headers */ = {isa = PBXBuildFile; fileRef = 67840563043AA82F17D29A652FA22AB6 /* ARTRenderable.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5E0AD81439136001BCF345A7288B768F /* FIRInstanceIDTokenDeleteOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CB6851B50895A42D3F7C877300D7C7A /* FIRInstanceIDTokenDeleteOperation.m */; }; - 5E1BA146E8395101B4385FD2757A9A53 /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 470EDB43F450ABDC1A6355125B14ECE1 /* RCTUITextView.m */; }; - 5E64CB1713EB7E433FFAAD7078525999 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = 69CDFAD076C44A8B83929C1858218924 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E8F6FB0B98806087C46839D3C543998 /* EXVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F2A1F3952414A47118BF180CB3526A97 /* EXVideoManager.m */; }; - 5EA03FA15E6CA3B798DE10D11A26869C /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4B32D349C5AA80B4FB37C642080D45EC /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5E1BA146E8395101B4385FD2757A9A53 /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = B0211C5BA6C49CB7568A093D135620F4 /* RCTUITextView.m */; }; + 5E64CB1713EB7E433FFAAD7078525999 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = A595B6DD138E016E5D80F615167C7FCB /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E8F6FB0B98806087C46839D3C543998 /* EXVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E41F52520D62AC019BAB1E9EEB0AD7E9 /* EXVideoManager.m */; }; + 5EA03FA15E6CA3B798DE10D11A26869C /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 11C69D513A3C6989D4E6AD2745DE7E66 /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 5EB1A9BA116DDF6AA30A626D000FF5AF /* FIRInstallationsErrorUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = EB70BE00723008AAD156EB27A07FE171 /* FIRInstallationsErrorUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5ECBD7BAEE9AFE285724B8C23E2F8366 /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = F24BC628BCF86EB456B021B4CC9BEDBC /* RCTSRWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5ECBD7BAEE9AFE285724B8C23E2F8366 /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = F50C39B607D9C89E5365FAE973EEFBFB /* RCTSRWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 5F09157C1DF89E099F5994063D10410B /* SDmetamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 188DE396BFE9BACC9E475E966B3ECB4C /* SDmetamacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F1267AD8AA6EDAB59053DE48CE90F5E /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 25A399223CCC410E790D3A79E70F29FF /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 5F23E8E57266DAC77BA53983F18B7DB2 /* REAParamNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F82FC92BBAA394A3778E3F395619E6D /* REAParamNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F3914305B352AA4A312EA53ACD0BA46 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = AD9FBA4B78EF69235DD6D73B54188C83 /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F1267AD8AA6EDAB59053DE48CE90F5E /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C0358FA438F9178127E0C2BCE503104 /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 5F23E8E57266DAC77BA53983F18B7DB2 /* REAParamNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 82C2CC4DA2D0A987F666774AAF991E7C /* REAParamNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F3914305B352AA4A312EA53ACD0BA46 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E78C0DFF4376A743833BE1BE5257A4FD /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5F48078C953774E5876EA42742BA186F /* GULLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FE80A0E5A04BEDCC2FE998068C2E8A5 /* GULLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5F5378B828C8964BCBDD35727B30E2F2 /* GULUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 760D77A4F668A9C3F29BC76736A73378 /* GULUserDefaults.m */; }; 5F591A05DC74FE96D26FCFCE23162A75 /* SDImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 445FADAAD22E2C0B298304BB38E55693 /* SDImageFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F73A1810FE06CEABFF159E5B86FEF71 /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 903FE982376C7A755BE05D5F6CEFBB16 /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F7B3953B7ED183636C6FED0FABDE300 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = D4D7A183F0626C3DEEF5CC2967FE038A /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5FBDE897F38FB994BBE94F564E24BDB2 /* RNFirebaseAdMobNativeExpressManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 528C5C76C04A1A6D987B79D7E7FD1668 /* RNFirebaseAdMobNativeExpressManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 605EA3DD878151B4BC628CFE5E52A205 /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = C406F62897E13D577293695761AE8DE0 /* RCTUIImageViewAnimated.m */; }; - 607F8CB189F69907FA7ABD628863B047 /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = F4C72F4244A39F9FF5BB8BEFA9B1BF44 /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60A990FC2ACC3B03F9B399BE28919107 /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DA2677C9C7DAA16CFDB808FC14788B5 /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60FFD2D922B804E20A11302D5A3AE607 /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 80E7E92918D0DE9CC8246E1855B21554 /* RNImageCropPicker-dummy.m */; }; + 5F73A1810FE06CEABFF159E5B86FEF71 /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 606CCE606376DD7990442AF23CEE5A3F /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F7B3953B7ED183636C6FED0FABDE300 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 51E045377B57602000DED486F9BA7183 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5FBDE897F38FB994BBE94F564E24BDB2 /* RNFirebaseAdMobNativeExpressManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FCD67CABEA60260ACB5A3DE0C6E76F4 /* RNFirebaseAdMobNativeExpressManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 605EA3DD878151B4BC628CFE5E52A205 /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = E76502808A9CBAD48934D12CB8CA9BCD /* RCTUIImageViewAnimated.m */; }; + 607F8CB189F69907FA7ABD628863B047 /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = A693AA61E697173D763FB55F9F925A76 /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60A990FC2ACC3B03F9B399BE28919107 /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A532F8903DFA43FF342F2EB8E9AF675 /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60FFD2D922B804E20A11302D5A3AE607 /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7EE23C3E92A145C8608B385EAD04D34D /* RNImageCropPicker-dummy.m */; }; 61076FBB82FF6974FED4A86160D17E5E /* GULNetworkLoggerProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = F17947A41DC67706AD2ADAD8C7C559C3 /* GULNetworkLoggerProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 611A7B0EA75F7056535EFE1611EAD137 /* ARTText.m in Sources */ = {isa = PBXBuildFile; fileRef = A41D14C41217E03108A1B9AEBB310195 /* ARTText.m */; }; + 611A7B0EA75F7056535EFE1611EAD137 /* ARTText.m in Sources */ = {isa = PBXBuildFile; fileRef = C49D225F6CF89085189D3E1775CD8333 /* ARTText.m */; }; 611D02587581D20BABC1EC3962F6262C /* FIRInstanceIDLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 57F3CF73401C2A7D1861DD573FA5AAAB /* FIRInstanceIDLogger.m */; }; 61599CF45B061C7D8E678400226A7229 /* GDTCORTransport_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DF98BC6C3F20CCC5179F53F73FF41B6 /* GDTCORTransport_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 618BC8EEE2DCD6EF77E27F834D5B84AB /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 630A182E2B144F70AD92BEAB51A562BD /* EXPermissions-dummy.m */; }; - 61E4CD178FDC8352B454E078ABEAFC48 /* RCTFileReaderModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F44A2F55853EE6E65FA192264929F10 /* RCTFileReaderModule.m */; }; + 618BC8EEE2DCD6EF77E27F834D5B84AB /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B253C49E623F5F56D28B06A728363F23 /* EXPermissions-dummy.m */; }; + 61E4CD178FDC8352B454E078ABEAFC48 /* RCTFileReaderModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F94016E68EEB217508CD4C5B2289C21 /* RCTFileReaderModule.m */; }; 6221A04C1F48445D01F695BD730A01CC /* FIRInstanceIDTokenManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ABB34BE98015F83F80BC4216458D9FE9 /* FIRInstanceIDTokenManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 623E4C952DCADDD44F6943CEFDCC21DC /* FIRInstanceID.m in Sources */ = {isa = PBXBuildFile; fileRef = D78FEB55F9E2565E62801C68DC429BCE /* FIRInstanceID.m */; }; - 623FC295B29631DF73E03BC69E36032B /* RNFirebaseFirestore.m in Sources */ = {isa = PBXBuildFile; fileRef = 84E70303C82DADA2DA050C280492E26F /* RNFirebaseFirestore.m */; }; - 6259FEAFDF7520D2B057E005B691B2B2 /* BSG_KSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 393D17394AF2E168A92010C0455E96F7 /* BSG_KSLogger.m */; }; + 623FC295B29631DF73E03BC69E36032B /* RNFirebaseFirestore.m in Sources */ = {isa = PBXBuildFile; fileRef = E606ACB92B5C3B7E5141D49B128773C1 /* RNFirebaseFirestore.m */; }; + 6259FEAFDF7520D2B057E005B691B2B2 /* BSG_KSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C48D6A870D541C9C33E4D3391F7940F /* BSG_KSLogger.m */; }; 625FB1A1A50F531C209F5950D7FF8475 /* alphai_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = FD022A7C3D909D8519F310D4392F2421 /* alphai_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 62BBB67D794EAD6E8AE0AD47CA0DBA80 /* REAEventNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DE57EFED7D3E7D955E4CC9B7B9F335F /* REAEventNode.m */; }; - 638173471B670878B34394773F467230 /* REATransitionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 850DC549E6A0EDF11179C96C39F7B3B6 /* REATransitionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 62BBB67D794EAD6E8AE0AD47CA0DBA80 /* REAEventNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DF27FB27F03D0836198D91EAAB34E562 /* REAEventNode.m */; }; + 638173471B670878B34394773F467230 /* REATransitionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 871606E35697C7A214F174393C32C5A3 /* REATransitionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 63CC635B37FED8C7DEF027CB5462EA7B /* bit_reader_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C4C051A4E9CF5D93B0327AFF8F51044 /* bit_reader_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 640929BA76B4E72C01E40669AC36E967 /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = C19448AA604F055B80D33BAE242AE46E /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 640929BA76B4E72C01E40669AC36E967 /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = 70D235412EFE764BFC9DBBEAD567BB29 /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; 641AB39A00602C3CE7FB1FCD93FCCFF7 /* SDWebImageDownloaderResponseModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 66228ED45E198EDBDEA21A197E306C7E /* SDWebImageDownloaderResponseModifier.m */; }; - 6424F5856E8339CF8C3F5570D47E2FED /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C65F164291E733597EFE8C5446CEB449 /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6424F5856E8339CF8C3F5570D47E2FED /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 18A5FB31561943E51775DF6C2A709D19 /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 64554430F1D85E4FC49F1062A6B85E22 /* GULNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = AAC30C36CEF4ACB54CE1E6E49DCF3E31 /* GULNetwork.m */; }; - 648C1EE6D41D617836426E185AC5AAED /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D7000D26ADA09093218DE8116F46D82 /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64B776BA872F19C7CE95997591E34F15 /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E58C96CDA56F63E2CE4F0D73A23A121 /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64CE86C677FE58819125DF1CF00FD92D /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 49C5DB264A324E20ADB75ECB2ABF90AD /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64D693E04A85ADB73BE80E3DA8FF8DCF /* react-native-keyboard-tracking-view-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E5EB502BBC0B8F55802C31047B4775D /* react-native-keyboard-tracking-view-dummy.m */; }; + 648C1EE6D41D617836426E185AC5AAED /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = 9904960D15504DAC6CCA49A008D712AE /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64B776BA872F19C7CE95997591E34F15 /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 83A89F0F53AF583C4DDF0EA48B180780 /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64CE86C677FE58819125DF1CF00FD92D /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 16146E7458BB27ED2AAAAFE6755DE00B /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64D693E04A85ADB73BE80E3DA8FF8DCF /* react-native-keyboard-tracking-view-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 029605E4F75D599083442F50C89433FC /* react-native-keyboard-tracking-view-dummy.m */; }; 64E791612A7D27AE1C4409A981341CBE /* lossless_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = BB117D47D780DC71082229222E18A9BB /* lossless_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 64E83E53B7F40F2CC0A0CF7BC3C8A43C /* enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 54AE600BDD27B1D9D24B98E5EA73E2BB /* enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 64E9035391D61BFA55BD23B151AD07BB /* RNDateTimePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 08052EC8B77314B3AD6D1227DF3D04D9 /* RNDateTimePickerManager.m */; }; - 65257CF2DC6AD9C87EC075F55049D40D /* ARTText.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CF05A2DB5F2DEC85B564E1FEB48A628 /* ARTText.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 653E84B85ABA16CB6DEA33042685263C /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 2273064ED902295D49232D5DFA4A84BF /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 654D2B56BB85DB6247D712F41EBB4BE8 /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CEDBA84A1F5B47029EDB87F08D3929A7 /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 656D1C77C4CAF79D0022BD5B4A141903 /* RNNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A3D0D372E6BB727932ACD5CC2F2F0A2 /* RNNotificationCenter.m */; }; + 64E9035391D61BFA55BD23B151AD07BB /* RNDateTimePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AB041F83DA810ED8C5D4970D923977BE /* RNDateTimePickerManager.m */; }; + 65257CF2DC6AD9C87EC075F55049D40D /* ARTText.h in Headers */ = {isa = PBXBuildFile; fileRef = DE641A302A8646320DAC48CE6E849B7F /* ARTText.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 653E84B85ABA16CB6DEA33042685263C /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 89D910E4F42FE041573767A15964B6A7 /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 654D2B56BB85DB6247D712F41EBB4BE8 /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8347D154BA5BF61C554572F3EA4E1F5F /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 656D1C77C4CAF79D0022BD5B4A141903 /* RNNotificationCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = BC28432DB28E26600A79158B20F82B6B /* RNNotificationCenter.m */; }; 6584F1A61DBB0A4BB4BD9EA418FB70E6 /* quant_levels_dec_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 2BDC9CA7E51DCBAD996FE36076C1898E /* quant_levels_dec_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 65B2DEA93BC9FAFE680CE9B5FD91C140 /* BSG_KSCrashSentry_MachException.c in Sources */ = {isa = PBXBuildFile; fileRef = 637A12296AAF3AF85429FA156B9063A6 /* BSG_KSCrashSentry_MachException.c */; }; + 65B2DEA93BC9FAFE680CE9B5FD91C140 /* BSG_KSCrashSentry_MachException.c in Sources */ = {isa = PBXBuildFile; fileRef = D46C8720FF023E767A3FD73608E6AAFC /* BSG_KSCrashSentry_MachException.c */; }; 65CA61934FB03CF180290DE31AF56EF4 /* enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 7AB2ABB19DF260BF726A2A7DE50BB0C7 /* enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 65CB92D29B76DFDEC572A3AAE0564298 /* encode.h in Headers */ = {isa = PBXBuildFile; fileRef = D79E6FEE7691DA5E934AADB1851C0232 /* encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6608213295B85470CB7D9FF496A75AF9 /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CCC9736F50544996E747EC71861E462 /* RCTUITextField.m */; }; - 660CECD8C6835E718C29800AB8CFEB46 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = F43996E789C2F95C237FF3F6B4F319D0 /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66461FCE36880BD3496945D2A2870456 /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AA4BA87D387B27FC4AAA46D250D21431 /* FBReactNativeSpec-dummy.m */; }; - 6661CB905BDE95946F8507AB79F27015 /* Private.h in Headers */ = {isa = PBXBuildFile; fileRef = B8ADFC3CD709A9C5292EE0E5EAD33C55 /* Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 666F347B84B23221BC4D76B0BB3D521F /* RNFirebaseFirestoreCollectionReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 70527C4CB499808627EBE0CEA40D0252 /* RNFirebaseFirestoreCollectionReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6608213295B85470CB7D9FF496A75AF9 /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C258ACC2E0DC8D657144811C2C0F840 /* RCTUITextField.m */; }; + 660CECD8C6835E718C29800AB8CFEB46 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AB47831C397F347C7653E5A48316330 /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66461FCE36880BD3496945D2A2870456 /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F145E3A0B46968D0904ADDC55641E70 /* FBReactNativeSpec-dummy.m */; }; + 6661CB905BDE95946F8507AB79F27015 /* Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CA72CCD11307A621D3F237636E253F4 /* Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 666F347B84B23221BC4D76B0BB3D521F /* RNFirebaseFirestoreCollectionReference.h in Headers */ = {isa = PBXBuildFile; fileRef = D21E43780BF3998101CB499FE552EEC7 /* RNFirebaseFirestoreCollectionReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; 66811E431F72A69005364E0433281D70 /* yuv.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B2C19870540C57176CD67F1135A50CA /* yuv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66821B19957B6374B817C91E73C9D601 /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CB4C02603D2011C4D066FD3AECECFDE /* EXPermissions.m */; }; - 669AD772A900C26E92756FE2500CB010 /* BSG_KSDynamicLinker.c in Sources */ = {isa = PBXBuildFile; fileRef = F84633D6A322186A6EC2522B0C53D5BA /* BSG_KSDynamicLinker.c */; }; - 66C5C3110649460A466AD2F6AFAA171C /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 04F28DD77A9FB29773F86A16D7162345 /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66D0421E4DDA33160130778834F66E37 /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AF548113B59CC6C3DF98313EE8EEEC6 /* RNLocalize-dummy.m */; }; - 66D6E62D450BACF145A456166BB45C2B /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D610C7775D84023A607C100F82FCBE5 /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66DE3DA8B730B101267AE71D7E014D80 /* BugsnagKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = 17AB5796AE998CF0E3852DAD5AE4AD04 /* BugsnagKeys.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66F6C08EE54110CE9EE206BF6B293A2B /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F41AA16F5D4130B8C097B07033C1EECE /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66F758B6340D92E1E9302298F1CF0F3B /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 86D53305FF3FD3D6376F9DD250DC82EA /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66821B19957B6374B817C91E73C9D601 /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = 717784DDC0972D374703808D43BE935A /* EXPermissions.m */; }; + 669AD772A900C26E92756FE2500CB010 /* BSG_KSDynamicLinker.c in Sources */ = {isa = PBXBuildFile; fileRef = CD77225F3389FD634A05B840D1B19DF3 /* BSG_KSDynamicLinker.c */; }; + 66C5C3110649460A466AD2F6AFAA171C /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DCA471A96EEDC4FF71B04C0B6280E1E /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66D0421E4DDA33160130778834F66E37 /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DC92164D6BFC49E2D478426F521D30FE /* RNLocalize-dummy.m */; }; + 66D6E62D450BACF145A456166BB45C2B /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E900620FE75CBB1CB75DF8274671C9B /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66DE3DA8B730B101267AE71D7E014D80 /* BugsnagKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = 96994F4ACDF019E0D9595D3C51B92406 /* BugsnagKeys.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66F6C08EE54110CE9EE206BF6B293A2B /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = A81EA97901E6916351212989A5228AB5 /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66F758B6340D92E1E9302298F1CF0F3B /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BD10F59E4A10D804EB12B741C087F5B /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 67036BF15E333815981C92DEF30881A0 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = F934561A4844BCB1A5D2C72516F4A72A /* NSData+ImageContentType.m */; }; 67278E9F64F6827638B4D52D8CF71F42 /* RSKTouchView.h in Headers */ = {isa = PBXBuildFile; fileRef = A31F188D4B66F6B22F8E86B908FDCAFE /* RSKTouchView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 67304F639591EAB43001263B341483A1 /* rescaler_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 893353C22879F217358868739D8C89E9 /* rescaler_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 674B78DEE8CC679498E5DE48188B81FA /* FIRComponentContainerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 51D0EC206B3FF3FD54D207F3F5C70719 /* FIRComponentContainerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67534913E2CDEE9AB092E4C33EDA97F5 /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = E3BC9591E6454450B9E4A075832684B4 /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6760547C035C32836135CEFD5839CC3F /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FB7CD15C80E500BD73C67D1F79C3F61 /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67679FD66E5E1E1F6427743215A9BFDA /* EXAV.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B1BF033A6168167BD3A578A80C37D50 /* EXAV.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67BDDCE0EF521A4394DD403549BC2986 /* EXImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DED22BF939C557A5B9E970225EDE32D /* EXImageLoader.m */; }; + 67534913E2CDEE9AB092E4C33EDA97F5 /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = DC038EAD706B8803534A159BF2D184F0 /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6760547C035C32836135CEFD5839CC3F /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 18B6C522760E81DDDAD1505DBD7AFF87 /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 67679FD66E5E1E1F6427743215A9BFDA /* EXAV.h in Headers */ = {isa = PBXBuildFile; fileRef = D8F9BA04E20185B2AE77BF40BA62A7E8 /* EXAV.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 67BDDCE0EF521A4394DD403549BC2986 /* EXImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = A615973B85BA181006E0063EBEE40504 /* EXImageLoader.m */; }; 67F58E27933AE0C15FDA31315B4F0861 /* SDAssociatedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = E9FEBF5B13B80FBCD53AF5D844C38822 /* SDAssociatedObject.m */; }; 67FB60A3B7937AFDCE4D41A927B10F4D /* GDTCORStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B600A9196EDF7F5CE30EAA93665B08F /* GDTCORStorage.m */; }; 680FF7736E95C4F0598D00BE3087C83E /* SDWebImageDownloaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = EA3905F7E6892A7956DD8078E9E87116 /* SDWebImageDownloaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68305A7D8906C121D6E084CF228B4598 /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FE1D8F88AA14DB45E011BA7F577D0DB /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68583F66159847D4566003F248CDAAAE /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = E1E048D0144BD5C2DA458D7E1603D34B /* 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"; }; }; + 68305A7D8906C121D6E084CF228B4598 /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 76A01F927DE5F13405330006480C2E10 /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68583F66159847D4566003F248CDAAAE /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = EA1E9A14E80735BFE4C7521D136DC165 /* RCTConvert+CoreLocation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 685876391AD8815F91ADD8BF5CD5AD96 /* FIRInstallationsItem+RegisterInstallationAPI.m in Sources */ = {isa = PBXBuildFile; fileRef = C422929093AA864A077D3201B48F2AD0 /* FIRInstallationsItem+RegisterInstallationAPI.m */; }; - 687395ADE9902C1256A39693758A218D /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 5762FABED35FFA2D439A71F1275661A0 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68967D85B59597BD9AB686FCE92FD940 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1BC427201794367BD329171E92CA414C /* RCTSurfaceView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 68A609DB01B156CC5ED6B85013BBE883 /* RNPushKit.h in Headers */ = {isa = PBXBuildFile; fileRef = B8BA6701BD8E46A84B9F07746385533E /* RNPushKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68A75E9D1078739344B33B3737E61D48 /* ReactNativeShareExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E3477F05E5AC74A130FA66DEB8A9335 /* ReactNativeShareExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68AE3C4091F647837AC74569BE19E2B7 /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F0F2422DAB94714E0307472B654BBFF /* RCTBaseTextViewManager.m */; }; - 68C3589E68CE16489EB8418E3D5F14B1 /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9AFB4B5E87A09ABC0522AEC0E59E56E1 /* RCTDevSettings.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 687395ADE9902C1256A39693758A218D /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 81EE0039A619694FF3E16C06F28D8054 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68967D85B59597BD9AB686FCE92FD940 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 49EE0D4AA6ECCB30D86E884EBB2E7FEA /* RCTSurfaceView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 68A609DB01B156CC5ED6B85013BBE883 /* RNPushKit.h in Headers */ = {isa = PBXBuildFile; fileRef = FE5E3DDE6DD52E7DD9A1126EAF36F66E /* RNPushKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68A75E9D1078739344B33B3737E61D48 /* ReactNativeShareExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FD87BD5009369711A2F79C3FE3DAFC6 /* ReactNativeShareExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68AE3C4091F647837AC74569BE19E2B7 /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FDD189A000A0EF9993C53FEEE2AF81FD /* RCTBaseTextViewManager.m */; }; + 68C3589E68CE16489EB8418E3D5F14B1 /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8F20CC66C09FA1EA57D7754B739BB3FF /* RCTDevSettings.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 6954C7E327E3C06A6AA626163C0C4B69 /* FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 017CC1B34A00D5D000439D51172861CF /* FIROptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 695CBDCD8BFCAA443DA31034E8A4905A /* REABlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C672F0A851D2744AEC819BE7EB761550 /* REABlockNode.m */; }; - 6986A1CB24DB43E7ACA1C07C85BB3090 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 12EE46404C88EE4302878276636C0E0D /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 695CBDCD8BFCAA443DA31034E8A4905A /* REABlockNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C5220ADF71397D5B95AA595F8813FE3 /* REABlockNode.m */; }; + 6986A1CB24DB43E7ACA1C07C85BB3090 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 249EA4001666958E10159EC31E37103B /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 698E16574F8BB6B1A4C2B0E81CDBDD30 /* SDDeviceHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = DD2806395B36E55041B47CB2F212D053 /* SDDeviceHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 69B92355E75BB5A248C0C9A2A254E5B1 /* ARTRenderableManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F93794CA851794BFAF1414185CB493E /* ARTRenderableManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69B92355E75BB5A248C0C9A2A254E5B1 /* ARTRenderableManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 45224B74709B8DD765226CAF36340E9E /* ARTRenderableManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 69C23762E4D32B627E18AA019E5F8F2B /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C65235A5B4462861F568033127D5801F /* dynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6A03046C71CF85B2E59E2FBEFA35C326 /* RNCSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DB898BA3530108074EAAD5490EFD23F /* RNCSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A03046C71CF85B2E59E2FBEFA35C326 /* RNCSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2326D21F65C132C6B573D2F986450639 /* RNCSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6A6811BCCAFE9B118E3913633F9D1A9D /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 11613175A36C6EBE31343B6BACA3302C /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6A789FEDD6D65DEB0888A4AB486DB224 /* pb_common.c in Sources */ = {isa = PBXBuildFile; fileRef = E427482FF0816F936F72DF5FD9CAB3BC /* pb_common.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc -fno-objc-arc"; }; }; 6A9BAB8845A46379E69D055193EC5871 /* FIRDiagnosticsData.m in Sources */ = {isa = PBXBuildFile; fileRef = D8DE3BC13CAB60BD0F12942A7720BC23 /* FIRDiagnosticsData.m */; }; 6ABEAD7FC928CF7779E132A291D0B0D2 /* vp8li_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = D2435B61807A015F7C86DCAB5E5A19AC /* vp8li_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6AF8B0B8BC5662944D21ABB73104ED6F /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BCCCD4DF9A60DEAD70F2EA0016C5BC5 /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B16BF857D52CA921AA18F9107D1A5D2 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8EE6BDF4D32EF0A286192FC4EE837F27 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 6B407A46EF38EFD8233880BCA6BEA4A3 /* Color+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 8008B5C7C293AD72B6A749C3E088EA53 /* Color+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6AF8B0B8BC5662944D21ABB73104ED6F /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FFECA28172BDE39608A5EF2B76D15B1 /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B16BF857D52CA921AA18F9107D1A5D2 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C71A357C4C3990C9352DAA14BD0A62E1 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 6B407A46EF38EFD8233880BCA6BEA4A3 /* Color+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 37DADD1FD92C1F8887236BEF67D91AAD /* Color+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6B6CD41EA0E92DE12D6390B15A0C6D74 /* firebasecore.nanopb.c in Sources */ = {isa = PBXBuildFile; fileRef = 29E2C22FF879C56A44707455873A657F /* firebasecore.nanopb.c */; }; 6B78D71DC954AB01DB63AFEE42B06E7B /* FIRInstallationsSingleOperationPromiseCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 677829C82932437E90068CC931C2D606 /* FIRInstallationsSingleOperationPromiseCache.m */; }; 6BB0A0E40EDC7AB4948869DCFB90D4E2 /* muxi.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B5CA70816F8CA51268D097D84CE8B5B /* muxi.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BC32C5F7F9AC61B55841DBD9D4B2D76 /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 32359779BFF3D480C74A6490AAE408E4 /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BEB09BDA381DE6F36DFA175CBC46104 /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = ED798D51043B425B8A8DAECA50899214 /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6BC32C5F7F9AC61B55841DBD9D4B2D76 /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E0D984C4268C8982372D81B491862FC /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6BEB09BDA381DE6F36DFA175CBC46104 /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 61D39CC515F185885887678EAC477089 /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 6BEE9EB48AF833CA1A6C58022E2C851E /* GULHeartbeatDateStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 853B2681E8D6B8DC9F55CF27A6E8090C /* GULHeartbeatDateStorage.m */; }; - 6BFEA5716AA863598AB805E81B5BFE45 /* RNFirebaseEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = C0595D2F60A504CEDCF98DBC6C2E2792 /* RNFirebaseEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6BFEA5716AA863598AB805E81B5BFE45 /* RNFirebaseEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B4EE64ED82995E97CA320A712E8CBDE /* RNFirebaseEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C1BF50C54FFCDABA052C0D60E4AA1CB /* quant_levels_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 93606334B2DB3E80CC396AEDC2F909F5 /* quant_levels_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C293AAE8A665126DB65576FB61F2C2E /* NativeExpressComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 32E84E502E0A5332EBF385855C620157 /* NativeExpressComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C37E85CCE25B3CBB805962BFF44C389 /* BSG_KSCrashContext.h in Headers */ = {isa = PBXBuildFile; fileRef = BEB35DCAFD0EC01BAA2869190E84779E /* BSG_KSCrashContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C293AAE8A665126DB65576FB61F2C2E /* NativeExpressComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = AD2713659D9174B0454470119CFAA6D8 /* NativeExpressComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C37E85CCE25B3CBB805962BFF44C389 /* BSG_KSCrashContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 707A93EC8F27AFC053B4DFE9AD3048C5 /* BSG_KSCrashContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C447F4317536C8BEDDCAE38158898E6 /* FIRInstallationsStoredItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A7647A1716C841E08616F47541DCD7B /* FIRInstallationsStoredItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C62F01A3E274C4E2D49A70E12BB4B2E /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = E18DC5B49169920EEA7A1AEE96BF56E6 /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C62F01A3E274C4E2D49A70E12BB4B2E /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = 496CF1E9975B06BA3A0EA5BE8C6FA985 /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6C8D94790F619755B402629EC3F394BE /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = A1C0F847D5B6DD6759E31413551F6F58 /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6CBFAABEB470033B6CD1B49891885208 /* FBLPromise+Recover.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DC3538131FBA43CF7F442029413C750 /* FBLPromise+Recover.m */; }; - 6CE6837AC0E4342DBEBEB53FB3122DA9 /* BridgeJSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = E6E37CDB86211745708FD39023FEA705 /* BridgeJSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CEC93D42BCE1C84B05210117F48F610 /* REACallFuncNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 72C30B866F76C047B4905813640327C6 /* REACallFuncNode.m */; }; - 6CED95887EBD2CF89095B6C5EDD7AA82 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 233DAAE18AA7F64BDDA3527E2437B832 /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CE6837AC0E4342DBEBEB53FB3122DA9 /* BridgeJSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = DFDC939DDDE5B2F633F78E7D72C17D92 /* BridgeJSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CEC93D42BCE1C84B05210117F48F610 /* REACallFuncNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 62046A26178649AC5D619E9ED83B8CED /* REACallFuncNode.m */; }; + 6CED95887EBD2CF89095B6C5EDD7AA82 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7729EE9D32168E2D7F78339279D55710 /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6CF9B64389DCBE99ED877DA30E3BE3A2 /* GDTCORTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 92FA3E16143BD843AB82FBE1484C3175 /* GDTCORTransformer.m */; }; - 6D81F160FDDE97DC6131EC9ED617BCCF /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EB476B4FF06F149CDC7E60CA6FA4B4B6 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6DB542FBEF8166B75D6E1997BC8D3F4A /* BSGOutOfMemoryWatchdog.m in Sources */ = {isa = PBXBuildFile; fileRef = A6B893252A3E1D280DFDFA2CADD8EB30 /* BSGOutOfMemoryWatchdog.m */; }; + 6D81F160FDDE97DC6131EC9ED617BCCF /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 72C7372FB61DF360A86BD59E40639D4D /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DB542FBEF8166B75D6E1997BC8D3F4A /* BSGOutOfMemoryWatchdog.m in Sources */ = {isa = PBXBuildFile; fileRef = E0B547458839A360641662CF36531F72 /* BSGOutOfMemoryWatchdog.m */; }; 6DBD30F941705CABAECEB99911829643 /* SDDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 587AD88BD32631BB096534980CA556E2 /* SDDiskCache.m */; }; - 6DC9D514C156F0E939716CE07F540ECB /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = AC76311E978D58E169180D737A245C5D /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E06BCFEEB8D951BF2E0382C38315402 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B9CEAB2F86E4F088A02274C1414DE8FB /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E351BE1A8F183D1BB3F520FA4FC4D93 /* RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = A739468F956A599232B619C8C6E0F81C /* RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E679D7FC64BCF6EA1ACFFB88A220FB0 /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = FE44415B2EA0C3B7EF3C39C4BD78AD6C /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E991C202A5292DBF3008C568A7C8F13 /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = ABC668DC426F8332543A65F54FCF281D /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6EC20FB3628ED3D4DA15AEE1BCCFA383 /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = D98357BE6E255740903B14E91A93835B /* UMViewManagerAdapterClassesRegistry.m */; }; + 6DC9D514C156F0E939716CE07F540ECB /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = BF447A67C41DB59965B58758672AA97F /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E06BCFEEB8D951BF2E0382C38315402 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BE6781874D04D82A9300A2130BD1910F /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E351BE1A8F183D1BB3F520FA4FC4D93 /* RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = DCABCC9C8001FA20E4E1830A4BE93DA2 /* RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E679D7FC64BCF6EA1ACFFB88A220FB0 /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = C8FA897C0F8EC6BD805E0F68B392A931 /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E991C202A5292DBF3008C568A7C8F13 /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 425FCABB9C9CE8B1487E385F1EBD1E2B /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6EC20FB3628ED3D4DA15AEE1BCCFA383 /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 08A767C7171B7484BC840053A91D0193 /* UMViewManagerAdapterClassesRegistry.m */; }; 6EC99E9A82F0476FB8A0B4E82330874B /* FIRInstallationsIDController.h in Headers */ = {isa = PBXBuildFile; fileRef = 289A7FAC33616CEAE154163C9869020A /* FIRInstallationsIDController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F1F0DE59B8D85D5C5BBE4827591AFE6 /* RNFirebaseUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = B53D4196483103E20CC3895A19D7515C /* RNFirebaseUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F222142E9E4F749DB37A59018C1A36D /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 95F532C5C0C284AF79C3E45B2F4C1640 /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F1F0DE59B8D85D5C5BBE4827591AFE6 /* RNFirebaseUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = EFD192F604D03272854B5E351BFAC8FD /* RNFirebaseUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F222142E9E4F749DB37A59018C1A36D /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = CBC5411ECAAD3F957C8318B46CDAFFB8 /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6F2DC21E261B5DEF25DADB0E1FE0129F /* GULSecureCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = BD7302148CAB101FE972B11E7D6DB858 /* GULSecureCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F304A36099BC8A1FC2BA0AF4F249B80 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 1734A0AE6F9DF0BF468BAFEB7D430A3A /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6F4C8ECB96B30078CDC6F3ED643DF275 /* REAAlwaysNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5562CE4C83195E3FCB9425A9BCBA9F4B /* REAAlwaysNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F7A2AA0B06EFC5314EC9498AD3E1375 /* BSG_KSCrash.h in Headers */ = {isa = PBXBuildFile; fileRef = 42B001A0487F7CBEC445D4245BD51B07 /* BSG_KSCrash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F806655969A1B5A942727F7A5EA22C1 /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 70950053816887A6954C4F28F3B68053 /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F843A8D44C24AC8E1A98C7AA75F6A94 /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C52FC60F3FA4DB1E06A485159C8226F /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F8FAFF437453ABC54EAC53BC16ADCE0 /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = CAC24283964A041B6B2CF6DE799D797D /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F93C07FC27EC5F48FEF33A277837FEF /* BugsnagSessionTrackingApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 57CEEFF52ED51FCCADD3C8279135E603 /* BugsnagSessionTrackingApiClient.m */; }; + 6F304A36099BC8A1FC2BA0AF4F249B80 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 03DEF745B4A8AB46F50B24D0270F4753 /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6F4C8ECB96B30078CDC6F3ED643DF275 /* REAAlwaysNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CDA57B7A037A04CAF162CCF8783CB39 /* REAAlwaysNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F7A2AA0B06EFC5314EC9498AD3E1375 /* BSG_KSCrash.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D131917DF3473FDB6FA934D9DEFEA9F /* BSG_KSCrash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F806655969A1B5A942727F7A5EA22C1 /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = EA39A846885AEDDA4978D47BBBC488C4 /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F843A8D44C24AC8E1A98C7AA75F6A94 /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AB9ECDA9ED934C3308F87CE97820F9EF /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F8FAFF437453ABC54EAC53BC16ADCE0 /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 91DEC9A923CC79D8CD146271B6CC8A86 /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F93C07FC27EC5F48FEF33A277837FEF /* BugsnagSessionTrackingApiClient.m in Sources */ = {isa = PBXBuildFile; fileRef = A949256D0826A4CB0C7A208C50FFE3E8 /* BugsnagSessionTrackingApiClient.m */; }; 6F9A19A47EEE733740327FF7A92428BC /* FIRInstallationsHTTPError.m in Sources */ = {isa = PBXBuildFile; fileRef = 505638042E3CDED31ED33340DD6E648E /* FIRInstallationsHTTPError.m */; }; - 6FADD2923098EDB7083BACF1DF28880E /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E01D4BBC06A8F671E048CD814EA1DAE6 /* EXWebBrowser-dummy.m */; }; - 6FB535A8E39D1F07E55B1E2356075896 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 450C7FC1ED58D6B2D79C7830A752045A /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6FADD2923098EDB7083BACF1DF28880E /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C041C1310AE95E7FC32B4BCEF39B5E3 /* EXWebBrowser-dummy.m */; }; + 6FB535A8E39D1F07E55B1E2356075896 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3EF16EEFB7DEE0F7CD09E9E57683CAEB /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 6FB624CE84ABA6F5B472A098FD3B96CB /* iterator_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = CF05DD10D852093D157806E5E953BD23 /* iterator_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 6FCEE2424CB121B6DB9D8E376CF795C1 /* FIRInstallationsItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 43E958E567C22BA0032023C305BEC2AD /* FIRInstallationsItem.m */; }; - 6FD86BC47002611DC40F437D2C1A2C23 /* RCTCustomKeyboardViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 7854E457877965E4AF2BD35C69EF71BC /* RCTCustomKeyboardViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6FD86BC47002611DC40F437D2C1A2C23 /* RCTCustomKeyboardViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F3FE84E33655DC802A375A4A3A2F47 /* RCTCustomKeyboardViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7000B0B67786D5E2CF438B2C6A3E06F0 /* FIRInstanceID.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BE700AB1A857567583B903EB1F58B73 /* FIRInstanceID.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7003449F5AD5ED5357D584E2C927D1C9 /* filters_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = CA21C40AB9E6792C5EB386BCA0C5CF9D /* filters_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 706254752772C2A2E485B68219F23D3A /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B03D8EA1C5F8BD52B4994EE0D4A0F02 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 706254752772C2A2E485B68219F23D3A /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 885AA0A3C1FC7159967E28C438FE0FB7 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 71337D195C7203C40B62109A887445E2 /* FBLPromise+Testing.m in Sources */ = {isa = PBXBuildFile; fileRef = D701D1816B81717849B176050ED98E4F /* FBLPromise+Testing.m */; }; - 713786B3F95C96E2CEBAC2486313D34F /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A3CAFFB43F1526F1910D35006AEA64D4 /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 71A15281A319A724463909058E694A81 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = E6B2FAB6C78DAD30C101A8E0C7C8ACE0 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71A8F1F7B8F1C500E5DB54E7568768BF /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B1A001AF3971D6A74C0EB5FDA87A732 /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71B1F6D3D1676C67B9689723295BBBF8 /* RNNativeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = CCD877C48A8ABBE187C4342B50541B21 /* RNNativeViewHandler.m */; }; - 72029D9F22BCA54AF914D44CAFCA8792 /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D2308A6F26544E607E45B047E910138 /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7230FB37D3784E711FDC4DF68D61BDFF /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 890E89C000ECD7E2BA73CA6DA84913D5 /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72313D87595E28A750CDCD4BBA386FC6 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 426717A30224C3E0314EC82D0C8ABDA4 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 725BC4B216ECC3B13922602F90FD5DDC /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 71C744BC48D090FDA675214EA23FD003 /* RNFlingHandler.m */; }; - 725FA4364B3AAAC6DA5672FC3D3C5DE2 /* BugsnagCollections.m in Sources */ = {isa = PBXBuildFile; fileRef = BA2876B6CECEBADC043329575B142A92 /* BugsnagCollections.m */; }; - 7284BF438F4A908AFDB3AEA753D92D54 /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 41FC7635615084D37747948828C3D7A9 /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7285FB5D4837675FBC49C201EC04BB41 /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2293149BED2F89D52C9CA71F462B9D70 /* RCTSubtractionAnimatedNode.m */; }; + 713786B3F95C96E2CEBAC2486313D34F /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4AC0C7574DAE4ECE43B4A13EF75AECA8 /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 71A15281A319A724463909058E694A81 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 56C4203FB922C2EAEC70E9EF0E3F2ACA /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71A8F1F7B8F1C500E5DB54E7568768BF /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = EF91A2BB1EDA2CD251578C0B4ABE65DE /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71B1F6D3D1676C67B9689723295BBBF8 /* RNNativeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = AD56F36405180E5DBE926AB9B315D565 /* RNNativeViewHandler.m */; }; + 72029D9F22BCA54AF914D44CAFCA8792 /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = B5FE8F6B235D306BBC8054E5BCA09CDE /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7230FB37D3784E711FDC4DF68D61BDFF /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 9496F8ADFC18E0AA6076F1A696215AC9 /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72313D87595E28A750CDCD4BBA386FC6 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F0E13FC825A0389AFB6D7962502FE1D /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 725BC4B216ECC3B13922602F90FD5DDC /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B2FFA88F32071559CBD53527B42B8AF9 /* RNFlingHandler.m */; }; + 725FA4364B3AAAC6DA5672FC3D3C5DE2 /* BugsnagCollections.m in Sources */ = {isa = PBXBuildFile; fileRef = F15541AFEE0AAB9CC4B33C8D9ACE40B8 /* BugsnagCollections.m */; }; + 7284BF438F4A908AFDB3AEA753D92D54 /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 89FCAA5092C605B11E0AE9CF0E37A25F /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7285FB5D4837675FBC49C201EC04BB41 /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 33C061B1392DFF91EE6CBE0A4CC35993 /* RCTSubtractionAnimatedNode.m */; }; 72A89D0E917A84710512EBBC8A498DBE /* bit_writer_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B528863F8D26E47DBD2FAA61C3FC4FA /* bit_writer_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 730DC14773375905F03EC77556A60EE7 /* RNCAppearanceProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = BE7BC47FCD051102ED6D2BAF207E6472 /* RNCAppearanceProvider.m */; }; - 73112C1488A872BEA689E089D0B0E0FD /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = D0AAE68DD397D2CA1FAE9DF98CD3C212 /* RNSScreenStack.m */; }; - 7342956F63A49A4C25847523E6F41D64 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 05C5F05F167A7407E3BC0A5C60D195CF /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 734F8686688DB475D6CF32D32D90EB10 /* BSG_KSBacktrace.c in Sources */ = {isa = PBXBuildFile; fileRef = D5030652B98A84EEF508BD0C799DE7E5 /* BSG_KSBacktrace.c */; }; - 7359E67295A554AC557D1213A0CB5D53 /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = 448B59004E76F8C9F4D3CAFC63076229 /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 730DC14773375905F03EC77556A60EE7 /* RNCAppearanceProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = D79E9727C2F33141B180DBDF92EB47F3 /* RNCAppearanceProvider.m */; }; + 73112C1488A872BEA689E089D0B0E0FD /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = 4125B11710991F319C4DB376FBE1CA9F /* RNSScreenStack.m */; }; + 7342956F63A49A4C25847523E6F41D64 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 13FAC8112719E5F8DF48A5580D6146ED /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 734F8686688DB475D6CF32D32D90EB10 /* BSG_KSBacktrace.c in Sources */ = {isa = PBXBuildFile; fileRef = 98329DCCF0E9C701206E2578C76953D5 /* BSG_KSBacktrace.c */; }; + 7359E67295A554AC557D1213A0CB5D53 /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = 14F9A05013AE6BE94D9456BBB14712E2 /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 736C1E17BD05A7026591A32A7F626B7A /* FBLPromise+Reduce.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AD246BB1DA917A3E16D3F36B4867501 /* FBLPromise+Reduce.m */; }; 738FD16D3B15E94374A9151BA1B17663 /* FIRInstanceIDCheckinPreferences+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 64858CBC195C53A245090C9C8C11D8DB /* FIRInstanceIDCheckinPreferences+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 744D36A39C5C7188078F180F8A379A4E /* GDTCORAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = FED3E487A355D9CE1B0445AF9E4FA899 /* GDTCORAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74E40035D26D7E61EE95B512E8219E77 /* BSG_KSCrashReportWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 351D66D4F8597363DC1C83566AC8460D /* BSG_KSCrashReportWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74EEF982C535C643E4E783C13EF2513A /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 11D227BCF5211CC470C656A32E7BDB55 /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7563D4DBE0016DD8A873BB45F22E702D /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E31BAB82E514EC52EC442F809703ABE4 /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74E40035D26D7E61EE95B512E8219E77 /* BSG_KSCrashReportWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 294B7B117A54E956E4C3C0D7547DCC63 /* BSG_KSCrashReportWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74EEF982C535C643E4E783C13EF2513A /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = CF616BF6284E7AACECDBB37FA2512B94 /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7563D4DBE0016DD8A873BB45F22E702D /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6548FD636CFDC61BB7F344C247E1C340 /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 757C477AF763DFCA1BE5A5D78341AFE8 /* FirebaseCoreDiagnostics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AE40F8A55B4E0868CA1A35733818234B /* FirebaseCoreDiagnostics-dummy.m */; }; - 7592441730A3BC69180FA193844D96B4 /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 78A3BCA8761ECE399D0A651FD7544CDD /* RCTAdditionAnimatedNode.m */; }; - 75A59976244E5AA9E3D97416B77865C4 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = B16F257C57E497257669CC76BA07B225 /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7592441730A3BC69180FA193844D96B4 /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A353EBABAB23AF51DD06C780062A0033 /* RCTAdditionAnimatedNode.m */; }; + 75A59976244E5AA9E3D97416B77865C4 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 980FDBA738C683BE41F4E005921CF7B2 /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 75AF4BFBC99BEFE0356973D015D8F83B /* GDTCORUploadPackage.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D213A29F586151F62E7D1190EC36483 /* GDTCORUploadPackage.m */; }; - 75C38367AD41BCC14148B858141FD9A2 /* RNUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = F558B400852AC6D2D3D27FC665C63C18 /* RNUserDefaults.m */; }; + 75C38367AD41BCC14148B858141FD9A2 /* RNUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 73045376DE6AE9AB27D7A891266C41A8 /* RNUserDefaults.m */; }; 764F640B2C505140321DA60CF2074D08 /* tree_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 7E8C6A830011E9B4493E7F2FC363A651 /* tree_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 765D355A7222D5FE09B6110134D7D90F /* NSError+BSG_SimpleConstructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 94D2784367826E2CD691EF61F8A78CD0 /* NSError+BSG_SimpleConstructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 766F000E71EC6BFDEB9AAED4900BCDF4 /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F40B009B8CEA51AFD8683830B1551BE1 /* RCTRawTextViewManager.m */; }; + 765D355A7222D5FE09B6110134D7D90F /* NSError+BSG_SimpleConstructor.h in Headers */ = {isa = PBXBuildFile; fileRef = 32E8670CCB6423A4F5E3C093AF04252B /* NSError+BSG_SimpleConstructor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 766F000E71EC6BFDEB9AAED4900BCDF4 /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 82451E45D911AAD9D3D2D625AD21505B /* RCTRawTextViewManager.m */; }; 76D25ED0F70513D59EB42DEDD4030C8C /* FIRInstallationsErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E28FEB864CD8E6FC7A5CD387F3CE7FD /* FIRInstallationsErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; 76EBE6CD51BEEE22F89845516E86EBAA /* SDWebImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8825B0D3568A19F57CDF00412E9B2DD6 /* SDWebImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 770E4158FE7D473DBF6166B27FB81902 /* ARTGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C96B000DAA4B0A4667838AF4A0DDAE4 /* ARTGroup.m */; }; + 770E4158FE7D473DBF6166B27FB81902 /* ARTGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = DDC6F67C2DD59A6AD926936B059FB771 /* ARTGroup.m */; }; 77744A82C948F3D83862E0015E612602 /* muxinternal.c in Sources */ = {isa = PBXBuildFile; fileRef = 9A5D533C41D3DCA0AE4501ABA408A5EF /* muxinternal.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 777B202C8582C5E0780E559C0ED4F862 /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD1FADBF32F99E0345A1A2D2169CAA8 /* UMReactLogHandler.m */; }; - 7791BBB29998F4C9AC0F038A100DD278 /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = D8FFC5920FC0235633AB2A50C0700C3F /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77F7E18F5FDAACD09E6FB7DD9E448FE5 /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = 31B96A5F8F286666D7FBC7677AB25372 /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 777B202C8582C5E0780E559C0ED4F862 /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = BEA3586451A5731024F262422F2A0E80 /* UMReactLogHandler.m */; }; + 7791BBB29998F4C9AC0F038A100DD278 /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = B6B1D9D2E4B60BD628785C1C0FD559AF /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77F7E18F5FDAACD09E6FB7DD9E448FE5 /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = 37B7696826AB43902263D71479D95B63 /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 782A7E895D3075095F9AACEBA47584EC /* SDImageAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 85F22489B98808C5DA103C7B579C00A3 /* SDImageAssetManager.m */; }; 7858D06DC0B4D4114B09194D2473AF68 /* SDWebImageCacheKeyFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 183A3C0267913A961293F8FCB8FCF81D /* SDWebImageCacheKeyFilter.m */; }; - 785B004CF833DF5DD70FEC6A215346C4 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = BC031C46A6F57B9D88C6A473D8BC8721 /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 785B004CF833DF5DD70FEC6A215346C4 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = CCD2A49D0B1F2C6DFB39EC4B6DB2F80B /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 785BC4CF4809020AF5132A2626189D3B /* mux.h in Headers */ = {isa = PBXBuildFile; fileRef = 27AACFC75C230014487A026D8216B40F /* mux.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 785CAF95D72E52A3CB51D19B161EF757 /* RNDateTimePicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 59947BF24339E1CBDD34504FA9DD939A /* RNDateTimePicker-dummy.m */; }; - 78915BE17253AFB06827312FC0CCBAF6 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 95048AB5EC80A6FD7899DF9300FAA430 /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78BBE6B6246438B18643483CE090E330 /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 59EDFA1DDF3AB506E9CA0987364C519E /* RCTResizeMode.m */; }; - 78F927721FF33D4B9A04BF10E78C536E /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 71E619A867B9B83E3789B54166C285F7 /* UMModuleRegistryProvider.m */; }; - 794567009289677F590846BBC3EC0ADF /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = B0FFA6C80F8A67966392DB73CE915CCC /* EXFilePermissionModule.m */; }; - 798A82284A3CB48CBCD33D2A036FA58B /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = 8134670AC6F55EBB0F4E64BC6FF4CF72 /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 79AE898F906C7A86938C2D2FFDB55525 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 11B7D73230E6A947F4A33D7520ABA840 /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 785CAF95D72E52A3CB51D19B161EF757 /* RNDateTimePicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B9CA38E879CD20E77C3E4C4B0DE0CB9 /* RNDateTimePicker-dummy.m */; }; + 78915BE17253AFB06827312FC0CCBAF6 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F0555768DB0E5A54A2ADB6CC879ED19 /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78BBE6B6246438B18643483CE090E330 /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 70088BB7379E97AB2D9E9FF95F92F140 /* RCTResizeMode.m */; }; + 78F927721FF33D4B9A04BF10E78C536E /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = C24DCC43F7BDC47BC5FBA4D59DAD4650 /* UMModuleRegistryProvider.m */; }; + 794567009289677F590846BBC3EC0ADF /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = F21B72296B3BE105A34CCE9096EE22C9 /* EXFilePermissionModule.m */; }; + 798057C43424B8388D37B37C0FF3D516 /* Pods-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A03EB9B87FF49512AC6907C1B9AA221 /* Pods-RocketChatRN-dummy.m */; }; + 798A82284A3CB48CBCD33D2A036FA58B /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = 129CC95C969B20399F41C6937A02D570 /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79AE898F906C7A86938C2D2FFDB55525 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = D10BE9B6DF433AD07B0DDF606D7F2E3F /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; 79B0374BFE07F9D6A24D3310F5DB476E /* FBLPromise+Delay.m in Sources */ = {isa = PBXBuildFile; fileRef = E503EE768F7FB7BA45AF2BCAD9C1BFED /* FBLPromise+Delay.m */; }; - 79F7D3090E3A8BF8F2EFA3DD0DCED79A /* RNCWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5267A85FA53B412AEBF635F7D0DD9BBD /* RNCWebViewManager.m */; }; + 79F7D3090E3A8BF8F2EFA3DD0DCED79A /* RNCWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F96477C90288FED4C886718B8328F74C /* RNCWebViewManager.m */; }; 7A19A0BB7B9140448F7E0498A1C64011 /* FIRIMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 31AFD104F69CCD2F1C24B01B859DDA5A /* FIRIMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7A86CE51E137904ECFC87AD6329D753B /* FIRInstanceIDVersionUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 014FBCA79FB8FD0C06F5F4EBBC1B6BE8 /* FIRInstanceIDVersionUtilities.m */; }; - 7AAD2D8D0F6574DC00F40C30BE28A7BD /* RCTLocalAssetImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 0502C86B7DF4B00EAC6505457E2B31C3 /* RCTLocalAssetImageLoader.m */; }; - 7AAD85FF6DEAA7B3E28F704359B64F2A /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 484B1A9BB8E3EDB0B68036F60782DB89 /* RCTDivisionAnimatedNode.m */; }; - 7AB7F19547D4A3B795D7B86C6F544B71 /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 3309D211A0B19A7D9B1BFACA6D5C0528 /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7AE193443996AA04DD37762CD29141DA /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 01D1031E2444DF454E531A9DC65702B7 /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B28935E3953E17E3FA23F863D4E713C /* BugsnagReactNative.h in Headers */ = {isa = PBXBuildFile; fileRef = A348741DC04900AB79C759052957C647 /* BugsnagReactNative.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B8176A0EC34E5A6E599C6B07EAE5D58 /* react-native-cameraroll-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 40C3D9CD1DE46BB7625268A30775B549 /* react-native-cameraroll-dummy.m */; }; - 7C1EC2A3D0A3E039BFEC6AE946044691 /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 217E1597E9C685C57A7E9ED756BD6EF2 /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7CBDB0E759304C9B04F4D20194C95729 /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = BA43FE43EA638C45DED55CAC3B1FDC93 /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CD7443BBEECE3C05041C3788C3D53BD /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 295D8D2CB6F24253C98550442634BE6F /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CFEA0A6052051C538AD0B0F49158099 /* RNFirebaseInstanceId.h in Headers */ = {isa = PBXBuildFile; fileRef = FE36001D8E29C20BD2F0EF8388F1D719 /* RNFirebaseInstanceId.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AAD2D8D0F6574DC00F40C30BE28A7BD /* RCTLocalAssetImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = ACE6509B53357A0C5DADE6031CB9CCCB /* RCTLocalAssetImageLoader.m */; }; + 7AAD85FF6DEAA7B3E28F704359B64F2A /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = EB94F93D00DB0189F3ED90E4609092F9 /* RCTDivisionAnimatedNode.m */; }; + 7AB7F19547D4A3B795D7B86C6F544B71 /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 03D230A5DC176F0B184A61B8C98B6BEA /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AE193443996AA04DD37762CD29141DA /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D965544614F05819D78EF98836617D24 /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B28935E3953E17E3FA23F863D4E713C /* BugsnagReactNative.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F357FFA83F025CF4B110994FADFE0DB /* BugsnagReactNative.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B8176A0EC34E5A6E599C6B07EAE5D58 /* react-native-cameraroll-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F689FE1EE0C527B721E002B987BAD52C /* react-native-cameraroll-dummy.m */; }; + 7C1EC2A3D0A3E039BFEC6AE946044691 /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 534768FC35D1ACE995311324A92A4BF0 /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7CBDB0E759304C9B04F4D20194C95729 /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2877A38389E7D2FC96844CBB9A9706EE /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CD7443BBEECE3C05041C3788C3D53BD /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A43E7DC5723FD9F6489D01E21E04EE0 /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CFEA0A6052051C538AD0B0F49158099 /* RNFirebaseInstanceId.h in Headers */ = {isa = PBXBuildFile; fileRef = 0086AEEAD45DC59D6693CBD261CE72B5 /* RNFirebaseInstanceId.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7D32CB346A8A737EF45F15BB54F57AFD /* rescaler_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = FC7479F169BDFA83A763E71935B39C0A /* rescaler_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 7D34F61EBDBCC529E50187DF3DE0B9C0 /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FBA9DE1DC9152192C227A42F1589E54 /* RCTBackedTextInputDelegateAdapter.m */; }; - 7D74C0F449D31806561D458B8955CC9C /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = 23C63C444BAA8C62044C36DC7EAE5B4F /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D34F61EBDBCC529E50187DF3DE0B9C0 /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 61FBC6C6160BB2253D991ED26479A5FB /* RCTBackedTextInputDelegateAdapter.m */; }; + 7D74C0F449D31806561D458B8955CC9C /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = EE9AA28534499BF21627F666995F05AD /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7DAFB46E119763177277EC28363FF378 /* GDTCORClock.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DB662C3FB633BCCF0EFD8EBAEEF8AF1 /* GDTCORClock.m */; }; - 7DD578649537BE668B3C91865D187F5E /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F161325166BAB0C362768E626AC7A17B /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DFB9A6B11536D73819FAC0A9B8EF121 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 860C87FEF5C62CB1C641767D3D32105A /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E31C38FDEE307E1E16B520131091AC9 /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A6FCD0DDF685CFBE2A8C6E32E55AF39 /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7DD578649537BE668B3C91865D187F5E /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B41185A17A123EA4A1F48887C13EF48D /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7DFB9A6B11536D73819FAC0A9B8EF121 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 290DB13BE039EA3C352747F78BAADE99 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E31C38FDEE307E1E16B520131091AC9 /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 85FF47ECA5D929CEE09263D7E7DBA3B3 /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7E6785216D5A27AA388421B8CB226AA1 /* enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 8D34461A66E3259AB0C1167A107511FE /* enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 7EC69469AE8553EF0FA6933D116F39D0 /* REABezierNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 021D3A238914E4C4396D0F66537A9862 /* REABezierNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F56283D730304B0D4ED83995BEC332A /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 400401CC486501232BA2666E9882D402 /* JSIExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7F5B8AD4B5BDB6069DFFF93AE08F5A20 /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 280654FCBE0913DC54C6CDA78B5693CA /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F88BA2A6186CE14A4677F1250E893A4 /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1E4801D6C28D8BC6F2C85BA7A6CB2434 /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7EC69469AE8553EF0FA6933D116F39D0 /* REABezierNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 85262D71DBAB951692FBC6B28F927FF6 /* REABezierNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F56283D730304B0D4ED83995BEC332A /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BFC4C31FA14EA5D1E5B78F7A8DC28E4D /* JSIExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7F5B8AD4B5BDB6069DFFF93AE08F5A20 /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = E0B1D28C01B0D9FF019BD11F48423BE1 /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F88BA2A6186CE14A4677F1250E893A4 /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6E47D5D95BAEAF224B1C3E50EB8D703B /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 7F9C8E377A693E9134461700B17A972C /* FIRInstallationsStoredAuthToken.h in Headers */ = {isa = PBXBuildFile; fileRef = C4FFE67DC13EEC2EBC31ADD1DEBB2A2A /* FIRInstallationsStoredAuthToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7FAA5C3803BDBCD88781D22DA9A5F090 /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = FDB10C3A017B3DFF534B9D8ADD932C16 /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7FAA5C3803BDBCD88781D22DA9A5F090 /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = 65E0D2157B64854FED419EF02DE3FD1B /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7FDA653125CBE9C51664C67E7676A423 /* NSBezierPath+RoundedCorners.m in Sources */ = {isa = PBXBuildFile; fileRef = 3762F4EB37B62BDA42A52139A2CE184A /* NSBezierPath+RoundedCorners.m */; }; - 7FE86235E6DD6F9548921779D4ECCC36 /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = CBAB3B1471E3F94BCD38750784E669F6 /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7FFF609490B27A267918214D660FB9DE /* BSG_KSCrashSentry_Signal.h in Headers */ = {isa = PBXBuildFile; fileRef = EFAA389BF7DCB78B851D88EE621C0B5D /* BSG_KSCrashSentry_Signal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 803C92ABB453A18968C860278D28CF34 /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 47300C2767D9505399E305410CC4C7D0 /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7FE86235E6DD6F9548921779D4ECCC36 /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = EAC91A933451B8E0BD44C846366D89C1 /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7FFF609490B27A267918214D660FB9DE /* BSG_KSCrashSentry_Signal.h in Headers */ = {isa = PBXBuildFile; fileRef = C3648A8322404CC8C46A79E0F95A315A /* BSG_KSCrashSentry_Signal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 803C92ABB453A18968C860278D28CF34 /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FE00F5B510EE2652825473F9A8E14F2 /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; 803DEFC2CCE0AB3F23FEB7BE2E87EBE2 /* FBLPromise+Timeout.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B3A6A7C3F776BAF61AC51C5A02FBFA0 /* FBLPromise+Timeout.m */; }; 809388545866799ABD28AA5A1D27F9E5 /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = 54FDDD0372DB70DE5506C1BE95A23BE4 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 80AC448F56E4A0894BB9D80A198C040A /* BSGConnectivity.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B0A720A2FDE5662184F8E086778982D /* BSGConnectivity.m */; }; + 80AC448F56E4A0894BB9D80A198C040A /* BSGConnectivity.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F2DA6A44AB5BE316DEEBF16FF0B5E96 /* BSGConnectivity.m */; }; 80C026B0E39AC1F1703DF72A313A900B /* cost_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 45C98A4D849F92BF74F62E180ABEA4E5 /* cost_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 80F8AC2C5A3783FCA7E33066B501CDB4 /* FIRInstallationsStoredAuthToken.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FE7CAD15D46DC8EB22E034ACFB28888 /* FIRInstallationsStoredAuthToken.m */; }; - 811214DDC1A8BD246F50C79F6E9DBBA9 /* READebugNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DF6B7C1BA29606ABCBFF86F436B3E338 /* READebugNode.m */; }; + 811214DDC1A8BD246F50C79F6E9DBBA9 /* READebugNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B360C00644E9E808A39C5EB37BB1840 /* READebugNode.m */; }; 8145C77FDDC575D33B405FF7F421A215 /* lossless_enc_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = 32E8D2B7930D83212864A4ACCE2292BC /* lossless_enc_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 817F80FAD6CAC88EA2EA12B86A15C086 /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D94F8669BF7E0B52C69D8ECEC6FB1D4 /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81B79CD8BFF35C210CEA0DE3E706643F /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4D3E918D7884C7CFB182073D63C6B574 /* RCTFont.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 81C9A77CF5BD40BF99B2953E95A037A0 /* BSG_KSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 883811ECA1A34A96FA9F3D77005A7527 /* BSG_KSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81CE3889FF186CCB32CA2BE60F122F65 /* RCTCustomInputController.m in Sources */ = {isa = PBXBuildFile; fileRef = 118FDB9E5AAE4B0F868A9FB23850B670 /* RCTCustomInputController.m */; }; + 817F80FAD6CAC88EA2EA12B86A15C086 /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BDFE1F387E5F04ED134A6A71124C655C /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81B79CD8BFF35C210CEA0DE3E706643F /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = 830091E9F5DA8AA7DE3E4082877C79B2 /* RCTFont.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 81C9A77CF5BD40BF99B2953E95A037A0 /* BSG_KSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 62479198ABD12ABC2AB2CBB922468BF2 /* BSG_KSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81CE3889FF186CCB32CA2BE60F122F65 /* RCTCustomInputController.m in Sources */ = {isa = PBXBuildFile; fileRef = E3AC30C12EC69BAE7FEB7BEBF749393F /* RCTCustomInputController.m */; }; 81D4F16B20CB72219D872D8ABFB068F7 /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FA7BEFCEE456CEE557E176D2373B2AE /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 81FC60A335BDB739D75D24ED623A8264 /* enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 327D614BA3B1F0B08F1632FD256AEA36 /* enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8208754E5259F6F76445FDE11F5E84F0 /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2281519202E71413AA842990FD9E7D77 /* SpookyHashV2.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8209D9C90CD67454D69539C35A13667A /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 262B0316A2D988E70A636C50AF446192 /* RCTAnimatedNode.m */; }; - 8210666640C5B1AF7DAB2FBA2292A1D1 /* ReactNativeShareExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = F47313816C0E531155F60FD26CB42BA0 /* ReactNativeShareExtension.m */; }; + 8209D9C90CD67454D69539C35A13667A /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = D27001C0EE49A2C52AB055D6EE0F0F01 /* RCTAnimatedNode.m */; }; + 8210666640C5B1AF7DAB2FBA2292A1D1 /* ReactNativeShareExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = D88F548D375DB8B478A3622B94B83072 /* ReactNativeShareExtension.m */; }; 8234B7822CF1CA1C3DF395FCE35C9178 /* SDImageGraphics.h in Headers */ = {isa = PBXBuildFile; fileRef = 66BB28169F8562B9DE334B74B5B456EB /* SDImageGraphics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8235F479BC5ACA11857EEAAF249DB6B7 /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 40553C8A6721563B46E7C276F586493F /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 824F04AB3E4D8A8DF4B28E8A3F4E6A28 /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = E82B7D1C30D1AEB3E504A3713A5D962B /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8235F479BC5ACA11857EEAAF249DB6B7 /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C795AC784E91CE7BFFFC7AA57CC3043 /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 824F04AB3E4D8A8DF4B28E8A3F4E6A28 /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EC6719490272E2EB87C07A55669DB19 /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8264F64F4D30DEAEA786C1196C93A765 /* FBLPromise+Race.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B3DCE3E62D468D58DE3FECB07CFAB5C /* FBLPromise+Race.m */; }; - 8281C89E4A30505E37E1331748D62073 /* REANodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 657D62725F5144EA733699A8406DD7C7 /* REANodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 829DD372488FC133D2BFEC4D238098D3 /* RNFirebaseStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = A93642CD6648E82CEE09E21F713FFDF8 /* RNFirebaseStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82B3ACF24FBA461B54C393C8E8057A62 /* UMErrorCodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 2730787EC1F60F38BD758D8BE06D123E /* UMErrorCodes.m */; }; + 8281C89E4A30505E37E1331748D62073 /* REANodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 840D870AFD9819EB4C229B9AA8AD9807 /* REANodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 829DD372488FC133D2BFEC4D238098D3 /* RNFirebaseStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 52CA71561A2446043A4E25FC55B9D7F4 /* RNFirebaseStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82B3ACF24FBA461B54C393C8E8057A62 /* UMErrorCodes.m in Sources */ = {isa = PBXBuildFile; fileRef = CE5B2A1B6F1EFD38BF8C4D5052784952 /* UMErrorCodes.m */; }; 82B3F4C318BA4FD63398DE44A20A7367 /* Pods-ShareRocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 20EB67591180BD14936DAED287A3BFF0 /* Pods-ShareRocketChatRN-dummy.m */; }; - 82B62F8035E6080C72B9E40F6CAD3DC8 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = CAFE35CE5A47DAA149A25AFFFF772FC4 /* RCTRootContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 82BA825CBA44E0261A4B02BB37342B26 /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = C68ECA5B63E304503C023340DB7662D7 /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82BE17CA11C38578EE02F5D438CA1EFB /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = FBD303282921ED94222CED8173EB6121 /* EXFileSystemAssetLibraryHandler.m */; }; - 82CE7BC7B2F924C47EE8EAE39BFF7661 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FBB4FA5C063EB2DD23A9658D871F196 /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82D5E70C909B1BAAFED667876F1FE586 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FFF00649E4CAF904EB1C591DFA85238 /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82B62F8035E6080C72B9E40F6CAD3DC8 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0AD90983FA7D465181A1A5CFF499F0DD /* RCTRootContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 82BA825CBA44E0261A4B02BB37342B26 /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B5BE8D50BAB0134DD382D366567ED6 /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82BE17CA11C38578EE02F5D438CA1EFB /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = CF4757C5B91E322EFA671FFD409EA3DA /* EXFileSystemAssetLibraryHandler.m */; }; + 82CE7BC7B2F924C47EE8EAE39BFF7661 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FBB2E0D6185552EE63D91A0B3B7AD1F /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82D5E70C909B1BAAFED667876F1FE586 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = 03985525EDA89F3F7A68A80B93EC051C /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; 82E00AB632629A007250F0155CA70AF1 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A16CE135CC71ACDAB57AB9C085A4213 /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 82FAD75153594152D13166FA9C918B07 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E2CDB4C30DCF3C644EBFB1CB6F8B63C /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 83390A67A2F49D02357DF39160B3C87C /* GDTCCTCompressionHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 636D6783185DE1F442D58AEE9C52B4B1 /* GDTCCTCompressionHelper.m */; }; - 834FB89D7DB61483288C20507F8369EC /* BSG_KSSignalInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = C1BB0714F1D179F05D35A91AD0F7A8AF /* BSG_KSSignalInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 834FB89D7DB61483288C20507F8369EC /* BSG_KSSignalInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 06CBBD83E6C1F160B7D5A5719C8DCBEB /* BSG_KSSignalInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8355F5AC1AF62C88E8E0CC029ED7862C /* color_cache_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = F4EB52F7237332185617C32F718E1270 /* color_cache_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8383FA5D12B0C3167407B96F2013E9FE /* FIRInstanceIDBackupExcludedPlist.m in Sources */ = {isa = PBXBuildFile; fileRef = 60BC27AD9ED5029E588DEDFB282BC600 /* FIRInstanceIDBackupExcludedPlist.m */; }; - 838538291E1FB1EEBAAF1AB24E0F62D8 /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 513BFD61BAE0700B6C2B906CA432038B /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 838CC0185F3DD5230F96B08E6ABA7014 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DF32FC0A68A9824FBE0FC23450FF47CF /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 838538291E1FB1EEBAAF1AB24E0F62D8 /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 4873C107DBE9F26AECC09318A8B12A9A /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 838CC0185F3DD5230F96B08E6ABA7014 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D40CFA13FF0F7838C12F25132E746C8 /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 83943BFAC59E2196EC1FF4D2E942776B /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F1C5F873FB22C5A73E967F1C3900F05 /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 83E61F2DC9A2A7B3C3BDC4B7BD146D98 /* RCTBundleURLProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 9973EB72F97B4F9251AE038CA9E02F89 /* RCTBundleURLProvider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 83E61F2DC9A2A7B3C3BDC4B7BD146D98 /* RCTBundleURLProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = C644DF549BD49E875B7C6EAADFC9A82A /* RCTBundleURLProvider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 842E582DBF635E475E114381AD4F9C93 /* FBLPromise+Async.h in Headers */ = {isa = PBXBuildFile; fileRef = 1731BEB8C2C3368DB5FDF5403C2F7DF3 /* FBLPromise+Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84A553EC280593F64BE95B0978CB4AD8 /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 1906556C45AB84FAE5BA371126C72B3B /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84A5949021E42ADE6DA26A4E789E1A92 /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EEE5683F002CA0CA3896C2CBEA6F79C5 /* TurboModuleUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 84B1D5DC6C672026999BB7199AFDB7D4 /* REATransitionAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = A9F1ECB1C89116CD06A428B9A667E33D /* REATransitionAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84C406170B2DBB5D07916C0193135586 /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EF51AE475B1C94C17C7C9E97C9A28CD /* React-jsiexecutor-dummy.m */; }; - 84E7F77F0C30475ECEB2449E4B161FA8 /* BSG_KSCrash.m in Sources */ = {isa = PBXBuildFile; fileRef = A359FDA218BBB85A1EE5CE72F7EE5C58 /* BSG_KSCrash.m */; }; - 84F1BBA3EBA06ED9A2C1D66F97096B5F /* BSG_KSMach_Arm.c in Sources */ = {isa = PBXBuildFile; fileRef = 30C14607A6AEC19A6D6247FA32385616 /* BSG_KSMach_Arm.c */; }; - 8503458483F715D8BAB55F6F6A9D05D2 /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = 712B8F56124AFCCAC1EB277D7DD6C9C8 /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8528C33E5F8EF3D65FBA1C32A723CD15 /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A27E79EFF089B11810B130154DDF2756 /* RCTPickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 852A8ED13AE3501F4B2C7DC7F2136F1F /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 96A7EAC83659ECF44DB12C551B618B3A /* React-RCTText-dummy.m */; }; - 85455233A524A6D36F12FB9D3A3E6129 /* RNFirebaseDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = 44E7913A32231BD98F0E83771A5E6C3D /* RNFirebaseDatabase.m */; }; + 84A553EC280593F64BE95B0978CB4AD8 /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 39AF1DB378623B241A1961DA51117BFE /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 84A5949021E42ADE6DA26A4E789E1A92 /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A281B418998BA4257474919CBA88225C /* TurboModuleUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 84B1D5DC6C672026999BB7199AFDB7D4 /* REATransitionAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AC291AC8A6255C6CA2555A29AD5470A /* REATransitionAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 84C406170B2DBB5D07916C0193135586 /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CF969E9497D5EEA00712AC408040AF6 /* React-jsiexecutor-dummy.m */; }; + 84E7F77F0C30475ECEB2449E4B161FA8 /* BSG_KSCrash.m in Sources */ = {isa = PBXBuildFile; fileRef = 79EF13B1EBA69CD93AC259653E3BFF3E /* BSG_KSCrash.m */; }; + 84F1BBA3EBA06ED9A2C1D66F97096B5F /* BSG_KSMach_Arm.c in Sources */ = {isa = PBXBuildFile; fileRef = 29670EA7212693B9A77B25BCB1B2DE89 /* BSG_KSMach_Arm.c */; }; + 8503458483F715D8BAB55F6F6A9D05D2 /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F2A4EB921C09B725F2CB6A24B0429F1 /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8528C33E5F8EF3D65FBA1C32A723CD15 /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 90840E4541C9DD475BB36737BCEF0EF0 /* RCTPickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 852A8ED13AE3501F4B2C7DC7F2136F1F /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A8190566899CF9ABE25C063278E2F77 /* React-RCTText-dummy.m */; }; + 85455233A524A6D36F12FB9D3A3E6129 /* RNFirebaseDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = 747C66EBF0E1D41E0EB7F66EA1494C98 /* RNFirebaseDatabase.m */; }; 8547302CC4693C69F676D0FAF738DF38 /* cost_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 89C6619CB1C1D1AE75ECCE9C2E6A35A5 /* cost_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85638C2F8D35FF711544888B12B5E6D2 /* REABlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 19D524162E9BCD6EFFAF8E0F4EC7355C /* REABlockNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 856CE7992389E734209C1F57A30ECF95 /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 04C381672D051C2816D59F6B5E2544F2 /* RCTMultilineTextInputView.m */; }; - 8578BAA29528CC82DAB4676CFD9E8EE2 /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CC59D62E3FE164D603346C4D814CA99 /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85638C2F8D35FF711544888B12B5E6D2 /* REABlockNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7493D81119BC9FA4036C10337C09BC5A /* REABlockNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 856CE7992389E734209C1F57A30ECF95 /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 188C9AE6484B0E6EF5C45A6E65126E23 /* RCTMultilineTextInputView.m */; }; + 8578BAA29528CC82DAB4676CFD9E8EE2 /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = F1AD8D4096824219D55A5025F4580AD7 /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 857CFD7317D23D33D462842423F50303 /* GDTFLLPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 33446CC862D2173DA53D5E95665C24A8 /* GDTFLLPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8580667BEB1A20D2D2CA8B3E6C957324 /* BSG_KSCrashType.c in Sources */ = {isa = PBXBuildFile; fileRef = D62F461D0DA61C54FD998895AF0D8F29 /* BSG_KSCrashType.c */; }; + 8580667BEB1A20D2D2CA8B3E6C957324 /* BSG_KSCrashType.c in Sources */ = {isa = PBXBuildFile; fileRef = 67A1FB9C11FBF93A066ED437E4D975E9 /* BSG_KSCrashType.c */; }; 858DF05CB9907C3E2A68BB29C4D60873 /* FIRInstallationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = EE1AB32C49A2A285235B4FDC69A39BAC /* FIRInstallationsStore.m */; }; - 85D7A7E1BABE0615BCBD1D86BA242DFD /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = A9F3D8CE3395292F3E662044022C8A65 /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85EFF53BC2FAF2E9722CA6796A5C33D4 /* ARTSurfaceViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 278B8218B421064466EA36AD04D44D68 /* ARTSurfaceViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8624B3ACF76FA5C228BCE097FEC2BC8C /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 017C43B026CB04C1EF78BFBE3ECC4F37 /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 868C9EF47A976D5341C869EF6E4036FE /* BSG_KSCrashC.h in Headers */ = {isa = PBXBuildFile; fileRef = C7697D177A9AC5B3305785040048B838 /* BSG_KSCrashC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85D7A7E1BABE0615BCBD1D86BA242DFD /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = AAD3F86D1EB9651A77F4480C76E25349 /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85EFF53BC2FAF2E9722CA6796A5C33D4 /* ARTSurfaceViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 547D8A09A994D72FE717196BE4DB1272 /* ARTSurfaceViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8624B3ACF76FA5C228BCE097FEC2BC8C /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F05DDA788AC42546B5D27BCCA0222EBE /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 868C9EF47A976D5341C869EF6E4036FE /* BSG_KSCrashC.h in Headers */ = {isa = PBXBuildFile; fileRef = 22E29CEFCAF60427BF23BB8173FF0290 /* BSG_KSCrashC.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8691A04446317D7D3C7D3DC58CFEDF5D /* FIRInstanceIDConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = AC3787BF1E614D7EEDF5E1142F012247 /* FIRInstanceIDConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86BE3168916AEF95FCF9CE5C987EB83B /* BugsnagCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = F2649FE73365ED79E64897C7FB24DD93 /* BugsnagCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86BE3168916AEF95FCF9CE5C987EB83B /* BugsnagCrashReport.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BCE5F1C5D4DF02A3D6824D9A0B4347E /* BugsnagCrashReport.h */; settings = {ATTRIBUTES = (Project, ); }; }; 86C94F87667167DD05AB086C62038113 /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = F7181E6712382186FEFE1FAEE124DC30 /* SDWebImagePrefetcher.m */; }; 86F28EFD2EDCDEEA0133995833BC4BA4 /* GDTCORTransformer_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = AA42C4E98C13EF33E441FE62148783CB /* GDTCORTransformer_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8709E4EE5B3FD0A526072D5F1C141722 /* FBLPromises.h in Headers */ = {isa = PBXBuildFile; fileRef = F581E835D4B745A1D287B2D9FAFABD0D /* FBLPromises.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 875DE806BC05CD6FBB5171B3684B1F2B /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = ED8946A6BA821202B3368BB71A8AA182 /* QBImagePicker.storyboard */; }; - 87768AD792BACA0E657CEA3829636F66 /* RNFirebaseFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = AB085A3992ED4E69309C402C9B2F36FC /* RNFirebaseFunctions.m */; }; - 87873D084F83703DE3C009D5A2A0C043 /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 567CDF6AF52742501433BA4D852AF0C7 /* UMSingletonModule.m */; }; + 875DE806BC05CD6FBB5171B3684B1F2B /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = A5655AC0642AB47E0696586F98F9EB9A /* QBImagePicker.storyboard */; }; + 87768AD792BACA0E657CEA3829636F66 /* RNFirebaseFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = F85D6B2F3D53D8555287EE94A251903F /* RNFirebaseFunctions.m */; }; + 87873D084F83703DE3C009D5A2A0C043 /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 3300AF5C29476CE937A000A54DC91A65 /* UMSingletonModule.m */; }; 8793DB9D4BC902335BFA665F3784AD8D /* GDTCORStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D6EDA25FA893D1DF91AAEA53BA75B9D /* GDTCORStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8798A8DBCF62D49ED95C6D34C83B126A /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 57858FA00E9FCE5B0D6A2DFA7C2688BD /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8798A8DBCF62D49ED95C6D34C83B126A /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FA6021FC51B75C6CA372416846B2B09 /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8799A7E7AF7D5000F6488DC84D14E692 /* rescaler_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = CBD554C9D80E29A82E56D1B7897C0E38 /* rescaler_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 87BFC3AD290F6A964063BEC334D53262 /* RNNotificationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 15B1124A17166C051BC2D02B9932A8DF /* RNNotificationsStore.m */; }; - 87CB66C902F11F7A98F8495131A29A63 /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = EEF05BEAD756F0B2BA71E8B39C067F78 /* RNSScreenStackHeaderConfig.m */; }; + 87BFC3AD290F6A964063BEC334D53262 /* RNNotificationsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 27456DCA1E6F6425090860FC8F695FC0 /* RNNotificationsStore.m */; }; + 87CB66C902F11F7A98F8495131A29A63 /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 72C42A5379F7678BC2480A469AE85D1A /* RNSScreenStackHeaderConfig.m */; }; 87CF39BC0CCA51CAB58590CF9A9B8FA4 /* GULReachabilityChecker+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D352643E8BC0C05FAD0BB5404F73E27 /* GULReachabilityChecker+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87D1C8D0E94309AE54E7909240E8B83A /* FFFastImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E59E8413EB76AA9A0ACA30CD21A916DB /* FFFastImageViewManager.m */; }; - 87D604BE8872A45E434BCCBA813103F4 /* UMUserNotificationCenterProxyInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = AFB186041139443697595C938D376E59 /* UMUserNotificationCenterProxyInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87E4061EC6086456381F928D935EE7B6 /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E1B3EDEDD84F4299867D29A64BE66EC /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87D1C8D0E94309AE54E7909240E8B83A /* FFFastImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 78370509C55CD0F883BD4BEF2A6D6273 /* FFFastImageViewManager.m */; }; + 87D604BE8872A45E434BCCBA813103F4 /* UMUserNotificationCenterProxyInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 291516A2A64F6B8BB33660C84E91573C /* UMUserNotificationCenterProxyInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87E4061EC6086456381F928D935EE7B6 /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7012687F32F355EC8E14C8C53AAD981D /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 87ECC4C043286D06A575B38448A0A66F /* UIApplication+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = D996FB83753842B15AAE13001FED927E /* UIApplication+RSKImageCropper.m */; }; 8809B9F0FAFDCD89CF323E1489AA3660 /* RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 106194880B0291DBB2CB25096A7764E5 /* RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 886ACD34E706C9B3CAA14BA718B15F71 /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CBC62F256D9A8EF420880FB91A287F40 /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 886B4ABA16F159910D856C8690852078 /* REANode.h in Headers */ = {isa = PBXBuildFile; fileRef = AA5A5CE2053BA64187F6CAB446174B8D /* REANode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 886EFC385AB165A47AC13C719BCFDA96 /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = FCDA7192A03D16F7CD1D5DB0E827BA04 /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 888F4BB161122EEB45F0144A3B099A55 /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 92991E50D3464427C3917E08D7A6B7F7 /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 886ACD34E706C9B3CAA14BA718B15F71 /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 948E905C7DF7FF829F4AF8B63DA1650A /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 886B4ABA16F159910D856C8690852078 /* REANode.h in Headers */ = {isa = PBXBuildFile; fileRef = B55CACA6C91A7C67EF1D293C012BE983 /* REANode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 886EFC385AB165A47AC13C719BCFDA96 /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EB20BE3ECCF35EADA103257BA92078B /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 888F4BB161122EEB45F0144A3B099A55 /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = CA9AFC587C2D554D3295F5586D669DF8 /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 88A7546CD0CC5EF28061417BEF92362D /* filter_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = EA3786891CC282557AB2EF14638CDE2D /* filter_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 88E2D72A67C9FE9C1F481C71F68EEEF8 /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BB0025F1EC6EF96CB0113EBC33D3711 /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 88FAD4E57380E26AC7F03BEAD2EAEF88 /* FIRInstallationsAPIService.h in Headers */ = {isa = PBXBuildFile; fileRef = A0EA3217B857F6515E5C3725E793D70A /* FIRInstallationsAPIService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 88FFE10394F13353806F5AC527ABD0EB /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7108B03339E820AA6C483739E8F8F9C3 /* 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"; }; }; + 88FFE10394F13353806F5AC527ABD0EB /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7E9AE99C7865CC26536BC2DD0CB0854B /* 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"; }; }; 890F9DF78C90743B0CE5E2CC7E7AC4E6 /* FIRInstallationsSingleOperationPromiseCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 6129D17144193C727D68FFB158130674 /* FIRInstallationsSingleOperationPromiseCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; 891E992D9EB633B92E3DF27F9B310C23 /* common_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 72F2F55C8488AA7450E778BF58AD47EB /* common_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; 892CC8F163730004416A9E0EB66454A0 /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EE96081B960EB5843F26F6558A40730 /* UIView+WebCache.m */; }; - 89305BD8FA22B9F773F80ED9B63F9DEF /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = F67D7AFF559B16B61F8BA8EBD50F0484 /* RCTDisplayLink.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 893655588E502C049519BB8E65C6C606 /* BugsnagConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A795E8D890C786E5FE7EF3B02A93904 /* BugsnagConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 894F864B3D616AD9CA528A84CEAEF67E /* BSG_KSString.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D3C3EEE5A6CB5B2FABE8AFB9B20BD3E /* BSG_KSString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89305BD8FA22B9F773F80ED9B63F9DEF /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = AFCB43D3827AE977D3013BE069F70FCD /* RCTDisplayLink.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 893655588E502C049519BB8E65C6C606 /* BugsnagConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 50016C1070EA933A214FF69663C622FE /* BugsnagConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 894F864B3D616AD9CA528A84CEAEF67E /* BSG_KSString.h in Headers */ = {isa = PBXBuildFile; fileRef = 407195066338AC41FC1C9733A789B974 /* BSG_KSString.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8950571C071AFC5410328C4CA3D19B5E /* FIRInstallationsKeychainUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 01FEFA98B5E8668AD537CEE144C68D35 /* FIRInstallationsKeychainUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8990839281ACA886749C54D8CA07FA88 /* FBLPromise+Do.m in Sources */ = {isa = PBXBuildFile; fileRef = 86670E276CC761C5AD9108582C55EDC3 /* FBLPromise+Do.m */; }; 89BD4AA4D3B1EE870D5BC99EDB0FD812 /* UIImage+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = 65F4CD4AED2AC4EF14B118A58EDEE355 /* UIImage+RSKImageCropper.m */; }; 89C3A612CD4ADB81C44209858A136F74 /* cost_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 2BB0CFABA51216D7A7818D5F5D3015E7 /* cost_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 89CBF65D46171399F0EAF5C79B09E6E6 /* SDImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = B6DAE9177A3C3A2B93422B1382202FF6 /* SDImageGIFCoder.m */; }; - 89DEAA3F2A400C8232EC97727C7D826C /* BugsnagCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = A04EBFCE94F34A2DE815C6C732E0A763 /* BugsnagCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89DEAA3F2A400C8232EC97727C7D826C /* BugsnagCrashSentry.h in Headers */ = {isa = PBXBuildFile; fileRef = FF2D5D8CC1056BBA90C406A003EF23EE /* BugsnagCrashSentry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 89ECCD7C01DDA71BC7FB896BB010E7C7 /* NSBezierPath+RoundedCorners.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C3136B59B61BB160560C616ED25BC08 /* NSBezierPath+RoundedCorners.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8A1373FBD88F35501478391992C5376C /* huffman_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = FE1CC5E059EA91AFC5ABF8BF527E9F10 /* huffman_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8A362B80D43E6603CF994D92EB2C52AD /* SDImageCachesManagerOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = E818294C08CF5776BB1D71226C8C1B0A /* SDImageCachesManagerOperation.m */; }; - 8A3B0328CB5DF41A39BCCB3899B34CEC /* RCTConvert+REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = BE9D0C42DC3FEE44D14FF79EE1BDAFDD /* RCTConvert+REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A8CC5BB726A951810D3CB4E255AFBB2 /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = CF7E45F6AFE55A0A4D7B73EC61614501 /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A3B0328CB5DF41A39BCCB3899B34CEC /* RCTConvert+REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FC6230FB6919867F9E4FFE36EE66EDB /* RCTConvert+REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A8CC5BB726A951810D3CB4E255AFBB2 /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = B31E1FEB4913F38A62E60358EB9BCE37 /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8A9D84B786AB2897A000D05D3AACB59D /* SDAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = B1151875A2C24A78423CC58505388627 /* SDAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8AA78E079D60E962A4BC282E265CCC88 /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 13951187B0C12BD8402BCA7CBA95D0A7 /* ModuleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8AA78E079D60E962A4BC282E265CCC88 /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B3961133E9C62549A0F7C125B3EEF7E6 /* ModuleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 8AB9E32DAF6BDF9585F5205FA0736F63 /* tree_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 392B3106DCD1282949C544B07B1586E4 /* tree_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8AEC824A51C85F20D2DF15E8BEB7DA26 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B58CF705D6278253C186C6E616EB8BF /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B31804AAB0BCE87C153A3A661DDF9AB /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 71F3CA809072964CCC65C1EF386C65F7 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8AEC824A51C85F20D2DF15E8BEB7DA26 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = A8FEE9E165727EA2834D50BF5CD1A68D /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B31804AAB0BCE87C153A3A661DDF9AB /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = A98B8012F144C30D6A38B0B3B345ADF1 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8B43C248A2375B0F2B98B5157B1205DE /* FIRInstanceIDUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 51087434509AC9D80EDBA3801FBA46D9 /* FIRInstanceIDUtilities.m */; }; 8B461725557EA6544B7B191BFDE8C1D4 /* SDWebImageDownloaderDecryptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EDA6DF3A3B6AF0071D4A7A9742995B2 /* SDWebImageDownloaderDecryptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B4A5EFA46C771631880F96C6D857763 /* EXDownloadDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = B1B7A66CA40B037C34377CACAECC1D55 /* EXDownloadDelegate.m */; }; + 8B4A5EFA46C771631880F96C6D857763 /* EXDownloadDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DF9ED76541390C66E04D31C29138C06 /* EXDownloadDelegate.m */; }; 8BA04E1FA3708A51146E5A1218DA87B3 /* FIRHeartbeatInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 26C5912343F09FDEC67C47A7DD500AAF /* FIRHeartbeatInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BB9AE1787FD9D7C8F5388013BBCD2DD /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 67E4993CF7899F2EA58E49E1EA4F9C7F /* EXConstants.m */; }; - 8BDC780EFAEC1B9826D9B25A85BE47E2 /* RNCAppearanceProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 08BCDAB5B66339457CF6451737AC1DC0 /* RNCAppearanceProviderManager.m */; }; - 8BF75A8218C11BF3B0E8D88424BC5F47 /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = 295F044614A219B8CCD891FE7650B3B5 /* RCTProfileTrampoline-x86_64.S */; }; + 8BB9AE1787FD9D7C8F5388013BBCD2DD /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AE52EB85E8977A12AE544F6B71A771E /* EXConstants.m */; }; + 8BDC780EFAEC1B9826D9B25A85BE47E2 /* RNCAppearanceProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DC37764363A76FC196073D8917B4584C /* RNCAppearanceProviderManager.m */; }; + 8BF75A8218C11BF3B0E8D88424BC5F47 /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = 4A3A2F39E1458E815C1C6DDF6D8AC153 /* RCTProfileTrampoline-x86_64.S */; }; 8C067D43FFE92BEE92DF729871CB6737 /* UIImage+Metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 19B4CD2BCA1F7FD16045A42310FCE9F0 /* UIImage+Metadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8C0961F4BF06E2D6050B14C3292638B6 /* FBLPromise+Validate.h in Headers */ = {isa = PBXBuildFile; fileRef = 09F74600A3F236533A7364611CBCD0A9 /* FBLPromise+Validate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8C0A640F7F5FA4D7E162DE9284F16BAA /* vp8i_enc.h in Headers */ = {isa = PBXBuildFile; fileRef = 754C1763718FE74C32CF806FF8384D33 /* vp8i_enc.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8C0C8D915DA3564FD6B5B7B18703D8C2 /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = B68868E9598353F7206899DB35AA264C /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; 8C1FF88440B33D9481A72C8EB18AFCA5 /* FBLPromise+Reduce.h in Headers */ = {isa = PBXBuildFile; fileRef = 616B59B78E41E0F8743C2A2FDFBA466B /* FBLPromise+Reduce.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C2F0ADB9BED6CDF94AD4FDE98640AE3 /* REACondNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B022624C369BE97CC1724F31C0B7275E /* REACondNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C3EE4A40254A277C0F5663A900F4257 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = A30CA10BD3D0FFFC75579BEDA72F4322 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C2F0ADB9BED6CDF94AD4FDE98640AE3 /* REACondNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A40F869B4425DC36B268AAC134C05811 /* REACondNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C3EE4A40254A277C0F5663A900F4257 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = 420B51DB8652B52DD1B92079DF6EFBB8 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8C5D5340CC2350C17774207F4AFE339F /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 63F237C28969479FD39F0D8EB9063B79 /* UIImage+MultiFormat.m */; }; - 8C7498211CB965AC43930070C50E5510 /* BSG_KSSystemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = E6C09F8FC9C3A48D2F39D3D394130EC3 /* BSG_KSSystemInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C97D51F2831AC4CE3018CB7626639AC /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = FF2FAA6E172C596B5567EA8AC6FC6A63 /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CA475791C767C5F20E739483E327D34 /* BugsnagKSCrashSysInfoParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F5A2C611FB137F0645124C37EAF1D3E9 /* BugsnagKSCrashSysInfoParser.m */; }; + 8C7498211CB965AC43930070C50E5510 /* BSG_KSSystemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = B40BCE5751CB15D9915ED40E54235270 /* BSG_KSSystemInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C97D51F2831AC4CE3018CB7626639AC /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 87362BE98732F68528D90304A5C4E274 /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CA475791C767C5F20E739483E327D34 /* BugsnagKSCrashSysInfoParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 1706E659D23E02AB43A00E255ED2B3D0 /* BugsnagKSCrashSysInfoParser.m */; }; 8CA624564BD56CDA821A6C12FB87DF65 /* filters_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = AAB27BBE32494400507F8652BE36111F /* filters_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8CD195F8D4797EA381A36F563A0E5F0D /* RNFirebaseAdMobRewardedVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B648BD77C67F6984E6471526556DA44 /* RNFirebaseAdMobRewardedVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CF4FC48814A64166E0636CF7EFFBD83 /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B32CE21976E9E9D0ECF62099636E0D0 /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D1767AB59653E8540E79B2D42F2E7CF /* EXImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = B45903CF11C39B9FCE0E9E8ED5454364 /* EXImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D24E27DD6BAFE194B066A1C0848899B /* React-RCTActionSheet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DD7F7ED4977D67E27097A2C9D2F83889 /* React-RCTActionSheet-dummy.m */; }; - 8D3621426BFE501E721FF44E94DBA253 /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A7FAA47021000A0AE68D49BDAFB6229 /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8CD195F8D4797EA381A36F563A0E5F0D /* RNFirebaseAdMobRewardedVideo.h in Headers */ = {isa = PBXBuildFile; fileRef = 770C7A2EFBD59228C347732E76C01546 /* RNFirebaseAdMobRewardedVideo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CF4FC48814A64166E0636CF7EFFBD83 /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = 49777C8BDCF41658EF1462402BDAA962 /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D1767AB59653E8540E79B2D42F2E7CF /* EXImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 64B5D7BB5FFA60F01C8E187D6D93E9B1 /* EXImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D24E27DD6BAFE194B066A1C0848899B /* React-RCTActionSheet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E84E6C970C887F862CFF4A74D75AF6C /* React-RCTActionSheet-dummy.m */; }; + 8D3621426BFE501E721FF44E94DBA253 /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C1C346A405E291620CD1E83A90BDC2E /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 8D751CC4E9101960E0571131E2DEFFEF /* FIRInstanceIDConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 39D1DB7D0AB5BA90F8138F64EBA4323B /* FIRInstanceIDConstants.m */; }; - 8DAA4220694B02480367F67459059F3A /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 5258A7FE033C54F3D4FA34988E357BEC /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8DCDE6DD377E7D735ECC89252CA639FA /* REAClockNodes.m in Sources */ = {isa = PBXBuildFile; fileRef = 9034F938C79589876C34B7C8D5FE8E9C /* REAClockNodes.m */; }; + 8DAA4220694B02480367F67459059F3A /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = F84D927CDF596173B9BCA45A39ABE347 /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8DCDE6DD377E7D735ECC89252CA639FA /* REAClockNodes.m in Sources */ = {isa = PBXBuildFile; fileRef = C48A8F36129D6901E54E9A08ED6D9BC0 /* REAClockNodes.m */; }; 8DEF96274F9BA17DDE42AC2EAE1EC1AE /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = 84EC518D9D034614AA1F401DB6FF9D92 /* UIImage+WebP.m */; }; 8DEFCD08EC9448EA4F746B9134AF4D65 /* GDTCORReachability.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C40A67EE1D77C8674B2974823212EA0 /* GDTCORReachability.m */; }; 8E035517C8AC7D884CBA5819743A15A3 /* endian_inl_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D8BCB824FD16FFB5D40146868CEB425 /* endian_inl_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E0D9EFF36B98DCD095C2DB8123B6CC2 /* RNCommandsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C83A0AF41DFE9DDFD36003B5BB0ED509 /* RNCommandsHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E454B8C83F5A7240B00066734BF3DFD /* BugsnagApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 893BE71D8F29B67C196B9A779D9B622E /* BugsnagApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E773D494A272503191518A6FC9BCB01 /* REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BB9233F6835B791FD570E679411CD36 /* REATransition.m */; }; - 8E842C89450F1F42FD0A472547D2DB91 /* RNDateTimePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 1238E92EDB750B4A397E54323FA4A5DD /* RNDateTimePicker.m */; }; + 8E0D9EFF36B98DCD095C2DB8123B6CC2 /* RNCommandsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4604EB84EA7D173EFB6BF96910AEE699 /* RNCommandsHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8E454B8C83F5A7240B00066734BF3DFD /* BugsnagApiClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D3B5DFF6CDCE9E34DCD31DCD94AFC08 /* BugsnagApiClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8E773D494A272503191518A6FC9BCB01 /* REATransition.m in Sources */ = {isa = PBXBuildFile; fileRef = BF2D6E7BE353183521A57A78A49ADA16 /* REATransition.m */; }; + 8E842C89450F1F42FD0A472547D2DB91 /* RNDateTimePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 687D274BCA24C931D4E2AC530A4BB8C9 /* RNDateTimePicker.m */; }; 8EADE023E455AEC580E9BBF11138B13D /* glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8ECEDAD2A838321D345DEE9D05E6BB90 /* glog-dummy.m */; }; 8ECAAD611878CFA4CA1E91A5ACC7FC41 /* dec_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 8C64106BB2DF7529C974379A31A7B6EE /* dec_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 8ECC32BE1D834E064B790DAB6A677280 /* FIRInstallationsLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = E2E3C8E6D99317CEB9799CEDC4EF10E0 /* FIRInstallationsLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8EECFE19160CD69752A9D17BE13A0549 /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 10F8A885C4E82BDA4D26FA34B581D952 /* pl.lproj */; }; + 8EECFE19160CD69752A9D17BE13A0549 /* pl.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 4F3FEA4D6EDA37ABD94BCC29214D0E99 /* pl.lproj */; }; 8F026D24EEBFE343FDBAC023E9D56938 /* quant_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 5C3170CE50BA839FD7FFABDF189D8F38 /* quant_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 8F040C2B11F6646DD48ACF0D9F806AC5 /* react-native-keyboard-input-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F33070115C54647302E7B680A145468B /* react-native-keyboard-input-dummy.m */; }; - 8F1DE929839BE811A4D2898796A205FA /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 63C04C9B808242A07812EE94BE482F00 /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F2805AAE44444D081FFAD2274DE2242 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F3FBF733480DB3D4AD1299D8879BEA9 /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F309961888112B2C0D486333FA4C7FA /* RNCWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B1A6B95632FBEA8316F5995577B86CE /* RNCWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F040C2B11F6646DD48ACF0D9F806AC5 /* react-native-keyboard-input-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C89D7ED4E2CCB53B6DA2BB7D65A67DD /* react-native-keyboard-input-dummy.m */; }; + 8F1DE929839BE811A4D2898796A205FA /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C8B81AE3B3926554D716E80CB3FB004 /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F2805AAE44444D081FFAD2274DE2242 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 5617399E43084D1599B422553239EF32 /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F309961888112B2C0D486333FA4C7FA /* RNCWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BA901DC34FE6CC5679CFCB66E02766D6 /* RNCWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8F67D72452129D5639844135A9C40BAD /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = DCB16C1702DEA720BC36211E43A6596E /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 8FC5A3F42ADAA6A821A5C9674CEEB661 /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 28542E33845F2AF8A588E35090C66E0A /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8FC5A3F42ADAA6A821A5C9674CEEB661 /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E91B911130158B9E8F172DC0BBB76C9 /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8FE0997788C0371B00C8923C3D935168 /* SDImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 82C5CB61A36D2F0DDF60097EB08DBD66 /* SDImageCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8FFCB0876C97E6E6A9BD192A5514E737 /* SDImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DFCFAD3BB3A6A89D23F127637FA0517 /* SDImageCodersManager.m */; }; - 9004D4CB6A142DF3AF78B638898B3088 /* RNCWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E33B5D4B32B8D02734F0AE9E7A406DF /* RNCWebView.m */; }; - 905873241B5AF3ED7969719250E32487 /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D70EC68436BCAFD870998C26D22668D /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9004D4CB6A142DF3AF78B638898B3088 /* RNCWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 48FD13DB39CB84687FE2099B379E9042 /* RNCWebView.m */; }; + 905873241B5AF3ED7969719250E32487 /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 64C7B6452059258838A037FCED07C385 /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9065DD549003066B9A069F40D2485CEC /* lossless_enc_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = A1F0899513A15CABEC77801711DA43EC /* lossless_enc_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 90971B47C3418E340CF56D3D9E529587 /* RNFirebaseLinks.h in Headers */ = {isa = PBXBuildFile; fileRef = A87A088034D2CEC390DA193A4BB1D57B /* RNFirebaseLinks.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90CCBE59123D4345E7003437EFD73548 /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CC8A5E1F7160E71E4A976FD82B0814B /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90CE9D3E90CFF70CAC64D3FFA105AECF /* RNReanimated-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F6E38E23C024D7729BA0F5A71B4CC5D /* RNReanimated-dummy.m */; }; - 90DF82F5A6FF02BA881F75FC3505DDC3 /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BCCEB59819C9E8AED019EAAA3C0CE568 /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 90971B47C3418E340CF56D3D9E529587 /* RNFirebaseLinks.h in Headers */ = {isa = PBXBuildFile; fileRef = 15EC4CE1E11E17AC364ECBAC3B513646 /* RNFirebaseLinks.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90CCBE59123D4345E7003437EFD73548 /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = F8963C48B4C9E71258D0BCE42665AC26 /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90CE9D3E90CFF70CAC64D3FFA105AECF /* RNReanimated-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 25B52FD2856570BDBFEA5B0A8B5F19E3 /* RNReanimated-dummy.m */; }; + 90DF82F5A6FF02BA881F75FC3505DDC3 /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0840CE117A17CF8930BBBD11D54CBF22 /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 90EEDAB80AD3D2F8B41E0C9F4C40CCF3 /* FIRInstanceIDCombinedHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 905B1BD1CB9FFBC1DD7770F2DBD5FD19 /* FIRInstanceIDCombinedHandler.m */; }; - 910B1B0EF8C7E99CF568CD43FADC8CDB /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 50E26AF35C3302A079327C853D581E09 /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 910B1B0EF8C7E99CF568CD43FADC8CDB /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E1C1CAC2DFEA679A049CF92D108DD7A1 /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 911D35D4C93E94049058BE6695C7FDC7 /* RSKInternalUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 084DF8B81E62B3FA2DD1A9E2620122EC /* RSKInternalUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9174043F2C5C946E391930C776A8F658 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 192CCAEA3A7BD283727CC8F0076D4F1F /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 91BBF552A2FF6BB3042AA2B96075C326 /* FIRErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 514AE00CD420A8229A4F661330A06B47 /* FIRErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91E6B9ADEE505C21F59904D244812A29 /* REAModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BCB755568AE6FC6B7B38E00572F45CA /* REAModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 920492D26B54A44DF36E54A858DCE72F /* ARTSolidColor.m in Sources */ = {isa = PBXBuildFile; fileRef = E62106A8AC3479BFF07F954CDB4068A6 /* ARTSolidColor.m */; }; - 92067B4091004BF297FF15F7E163CF66 /* REATransitionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3396D88E1D3A8D3766175396AF1C7CCA /* REATransitionManager.m */; }; - 92330D2E1E09F2AFC5169D9192A9143D /* BSG_KSSignalInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = FD0131611CE63C525179341D549052EB /* BSG_KSSignalInfo.c */; }; - 923D51836B00BE5F3E8DB7194F6DA65F /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E9EC10322167045A8F30D69DE3F0EC78 /* RCTInterpolationAnimatedNode.m */; }; + 91E6B9ADEE505C21F59904D244812A29 /* REAModule.h in Headers */ = {isa = PBXBuildFile; fileRef = CB00B9C1487A989AEB34D4E8BA7371F0 /* REAModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 920492D26B54A44DF36E54A858DCE72F /* ARTSolidColor.m in Sources */ = {isa = PBXBuildFile; fileRef = 13D918F729CF132872915DE76691DF4A /* ARTSolidColor.m */; }; + 92067B4091004BF297FF15F7E163CF66 /* REATransitionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CF3C6C0E55376CABB4BFAC540BCC319 /* REATransitionManager.m */; }; + 92330D2E1E09F2AFC5169D9192A9143D /* BSG_KSSignalInfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 008EF4A8E637E3AEF9D320EA581F1D58 /* BSG_KSSignalInfo.c */; }; + 923D51836B00BE5F3E8DB7194F6DA65F /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 36756CBFBFF0B3B954AD1B7158A3E6D4 /* RCTInterpolationAnimatedNode.m */; }; 92761B113C01A55F1CEBA2DDD2495446 /* FBLPromise+Any.h in Headers */ = {isa = PBXBuildFile; fileRef = 93F8311DDBE0DBF0536063DB1283834E /* FBLPromise+Any.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 929D5F9A483CEDB88DFC5DFC3C3031DF /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = AAB0BC80CE51061ADC08C2B9A74E6B6D /* RCTCxxMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 929D5F9A483CEDB88DFC5DFC3C3031DF /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6D47D80CBD48D815F683A354FF3FAFF8 /* RCTCxxMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 92AA74D1F05BBE5402796AA8225D8834 /* alpha_processing_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 2A2F1FA0788DFD486412DD726FC1C595 /* alpha_processing_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 92B35C8BA7A9A5A1D207A3623008B14D /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3308A989CAB251872CD91C4A505B2DEC /* RCTVirtualTextShadowView.m */; }; + 92B35C8BA7A9A5A1D207A3623008B14D /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3ABB39A02D387C3BEF3101867418B280 /* RCTVirtualTextShadowView.m */; }; 92D334C2D97FB3BF1C809606141C8024 /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = E6D457DA870054C0D84E3800FDA55894 /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93295B3F8E382C2029A4F4D51F70993B /* RCTDevLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F325A2E92471F8C9A2034C213E23677 /* RCTDevLoadingView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 93295B3F8E382C2029A4F4D51F70993B /* RCTDevLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = EED0607F4BFC943666CFC8386F9377F4 /* RCTDevLoadingView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 935C588017563AEFEB80DC42C91EC15F /* lossless_enc_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = DCADAF076921DEC4D671151F9E0C9584 /* lossless_enc_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 93A0E9A6CC99BE8D70FD6F259C9D5891 /* quant_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 0F838A60D7566E3ED6EAAAB29782AD39 /* quant_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 93B239D294DCEF6825977FE49136AE5C /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0E19EE3FCE03EAE838447F0E063168D9 /* RCTManagedPointer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 93C54730DD440D3D44E8805D830A196F /* BSG_KSMach_x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = CA1B3E1BE6099C5ACCEF3A771967F89B /* BSG_KSMach_x86_64.c */; }; - 93EC8D424A6C585697CEA89C57ECB72A /* BSG_KSCrashSentry_User.c in Sources */ = {isa = PBXBuildFile; fileRef = 2A4B9563B1F54378C50CF08B27CC588C /* BSG_KSCrashSentry_User.c */; }; + 93B239D294DCEF6825977FE49136AE5C /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6EB980952287CDFD8FC85276F1077929 /* RCTManagedPointer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 93C54730DD440D3D44E8805D830A196F /* BSG_KSMach_x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = 9C48FC3DE43ECB47614C9E744A10EADB /* BSG_KSMach_x86_64.c */; }; + 93EC8D424A6C585697CEA89C57ECB72A /* BSG_KSCrashSentry_User.c in Sources */ = {isa = PBXBuildFile; fileRef = 5614982E5BAB6B26628667BE302DB37F /* BSG_KSCrashSentry_User.c */; }; 9410A9F0FCED080442B9A14D7811805C /* FBLPromise+Wrap.m in Sources */ = {isa = PBXBuildFile; fileRef = 070C05407939F9DFE5B7ED06A3FE346E /* FBLPromise+Wrap.m */; }; - 9441E1E4797BF393BF269E3BA2EDB29A /* RCTPerfMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = DBEC2CEC9A177E5696E833D65F61FDF0 /* RCTPerfMonitor.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 945D6E8B65673BFBFF53BA7F7813BDB1 /* REAJSCallNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 28A3A0F3FBDD846FCD47AC077B8777B3 /* REAJSCallNode.m */; }; - 94C039AE0D8233E82EBBF8CD60D104E1 /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AD75891BD7317952B386BB20DB6EC735 /* react-native-webview-dummy.m */; }; + 9441E1E4797BF393BF269E3BA2EDB29A /* RCTPerfMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = AF56CD8EA9329F7F34CB313BE34EFE3C /* RCTPerfMonitor.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 945D6E8B65673BFBFF53BA7F7813BDB1 /* REAJSCallNode.m in Sources */ = {isa = PBXBuildFile; fileRef = D572767A593EDD6E23A9336C6566817A /* REAJSCallNode.m */; }; + 94C039AE0D8233E82EBBF8CD60D104E1 /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B4F2B2382DC297766F83388DBE6A9689 /* react-native-webview-dummy.m */; }; 94D2057D96B17B5338176E0EAC6D6118 /* bit_reader_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = D8ABBD704A725E7E0D996145CBF6F03A /* bit_reader_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94D57D1F8087170D3C55D8BA061D1001 /* BSG_KSBacktrace_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 94F547B239E503C73BB599D250FC08E5 /* BSG_KSBacktrace_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94FCD20E6A582DD3D5FE05BE22BBAC95 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C8E045F2FD5C7D631C293C0F73C0604 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9527E5A3C6DFA80BA2DB45EDB484763F /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = F8B47F1CD100FCBC1313C955EA345AEB /* RCTImageShadowView.m */; }; + 94D57D1F8087170D3C55D8BA061D1001 /* BSG_KSBacktrace_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 63DDE0DC4AACDEEC86EF46E256EFBCE1 /* BSG_KSBacktrace_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 94FCD20E6A582DD3D5FE05BE22BBAC95 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CE7F2C3E9991FC3578F7E67BE5C9393 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9527E5A3C6DFA80BA2DB45EDB484763F /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9452FD50EC910E745BFEA70CD7D7DFC5 /* RCTImageShadowView.m */; }; 953B94BD133A7467F4F38C0B944D76E1 /* filters_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 064078AF10DF91404B3DE14C08B4C6D7 /* filters_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 954737CAEAEE7CD10A8E82C893D3C05C /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 263333326C416B9B57FC47BEC689ABA4 /* RCTSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9551B84E7109A022EA783B45C2038FBA /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8961112A6754761DB791C0ABFFEAEDD /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 9555FA1629B54E6CE10F84AD1CFEC491 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = E67E3486091E43C85BFCF40124719261 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 955ED07B34A30576182FAEF37C32A120 /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 45957DF0B7AF8A4C8A0A7621DEDD1EF9 /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 956A73A2DD9882EAF245E88865CC6799 /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E75A7D5A4539B2E0537A5A61616245AB /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 954737CAEAEE7CD10A8E82C893D3C05C /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C4FFE3B1606113541FAAA752591E5E7 /* RCTSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9551B84E7109A022EA783B45C2038FBA /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD5ECC7C878B88D0C61273EA8B878245 /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 9555FA1629B54E6CE10F84AD1CFEC491 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C12EFD3064A699FE323604CCC14F491 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 955ED07B34A30576182FAEF37C32A120 /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F19DB2FC51E9E061AF53B697805F90B2 /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 956A73A2DD9882EAF245E88865CC6799 /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D35CE8C23A2ACF2D9D8D4E8E0C72988D /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 9576BC2AA57D548A446DF12601AC0D7D /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = AE786E2067197B64CADFCEB08C452C84 /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9584C1D2A2B4338D79033DE1456BCB15 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 51DF25480D7018A24CFA0835502A684C /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 95B521FAD1DE325761C020F8AFEB4E63 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 070D8D1C1B32FFBE094021C01913F8BC /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 95B68C33D8A3CA6C685E64643173F8C2 /* RNFetchBlobProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C81C06F9CC5488C4F528E8CEEA36099 /* RNFetchBlobProgress.m */; }; - 95DB2DC3843A5A77097E2549512012F0 /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = CA805E6377693E69ED26C02F8719CBA6 /* RCTConvert+Transform.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 960B81835CCACE99EAF6D7301646A57D /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 922FCA40A40F924C57AEC2FCA7D56714 /* RNGestureHandler-dummy.m */; }; - 961E178766FFC74BE8CC650BEB06621E /* BSG_KSCrashReportVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 2627A03E2AAC96EF0E84BD19FC590BF9 /* BSG_KSCrashReportVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9584C1D2A2B4338D79033DE1456BCB15 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 12A16BBD093134117D9B4CFDF9359DDF /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95B521FAD1DE325761C020F8AFEB4E63 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1308887462257AEAE38116C2EF6147D7 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95B68C33D8A3CA6C685E64643173F8C2 /* RNFetchBlobProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A9B116DF69ECF6ACD623B9630FD7F1F /* RNFetchBlobProgress.m */; }; + 95DB2DC3843A5A77097E2549512012F0 /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 0381A251667F2E0736F1F8B62BCAA077 /* RCTConvert+Transform.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 960B81835CCACE99EAF6D7301646A57D /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A863BA598F51BD9217091846EFC9849D /* RNGestureHandler-dummy.m */; }; + 961E178766FFC74BE8CC650BEB06621E /* BSG_KSCrashReportVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = DF92D606E8726EC631EAC028DA7D1669 /* BSG_KSCrashReportVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9648DE8BFD642A580258906D5C4A72AE /* anim_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = BC41853A6450E14F865A02ADC3D019D7 /* anim_decode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 967D11E3ADB39D24F39D3D14FAEEBCD4 /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0E1C9947A2D5849DD68B9C1005A42612 /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 967D11E3ADB39D24F39D3D14FAEEBCD4 /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = 59BCEC3BB130D851C55FEEC9372580DA /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 96A00C011A72200F5C719AA69C379BFB /* color_cache_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 726D3479A42B94820104FFB82565ADF8 /* color_cache_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96B16CBD2DD52DA614AC23267995DCE9 /* UMPermissionsMethodsDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 47AB5F1B3F88C7C9CEA2079AE84B6160 /* UMPermissionsMethodsDelegate.m */; }; + 96B16CBD2DD52DA614AC23267995DCE9 /* UMPermissionsMethodsDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 140D85D2FCCE01CFA3794C3526771E62 /* UMPermissionsMethodsDelegate.m */; }; 96B1848EDA12E024991DC71441FB7728 /* lossless_enc_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 669E2D815BA85AA4A6BB99088F534BB0 /* lossless_enc_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 96FEB709959204E0340B06DB34925CF1 /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = D0C5472A2621B7D14535D32C7F005C79 /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96FEB9F17F3553A3EACC3D455D3DD5EE /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = F4581140717803888E5C440CE18E3EEA /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96FEB709959204E0340B06DB34925CF1 /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5277215B950EB8FB831F92FD56554BE3 /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96FEB9F17F3553A3EACC3D455D3DD5EE /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 31D476183BD0305AB8612F3A73A5FABF /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9704F9F1F14DAD1518EDEB3FAB732873 /* FIRDiagnosticsData.h in Headers */ = {isa = PBXBuildFile; fileRef = F9FDF1E88D043740EACFF1DC73E36B23 /* FIRDiagnosticsData.h */; settings = {ATTRIBUTES = (Project, ); }; }; 97094C87F27838DB2641D5B3F6F747AB /* RSKImageCropper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 52EB1989DFD74CEB5377A42F0481FCAC /* RSKImageCropper-dummy.m */; }; 9723ED2F504638D6345AE9D73E21F620 /* FIRInstanceIDURLQueryItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 77028BA581AF00AEF7C147D7449E82B9 /* FIRInstanceIDURLQueryItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9736808E3A6D9D08A971A877C047E296 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 216C4A3EEEEA592CE9AD2CD1077DD9A5 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9736808E3A6D9D08A971A877C047E296 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 058883D577F30E4210855B6DE5283D8B /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9736BDADECA441A7D829AB881E1B8B15 /* GDTCORClock.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A5B8DD3BD08B970140758525F472335 /* GDTCORClock.h */; settings = {ATTRIBUTES = (Project, ); }; }; 979243DB7BF5C1BFB5966534EA7F7651 /* FirebaseCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = ABFB99715FD05FB4DB35E948155D825C /* FirebaseCore-dummy.m */; }; 9796980DC5E2693A40E90235CE55CA24 /* FIRConfigurationInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BB3E1A796EA4028EC6374B3EACD53CE /* FIRConfigurationInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 97B4C27248C45EFA7B1613C6F8F83C79 /* SDImageCachesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FF50E5ECFD2E8272C61A10AF4ED50A1 /* SDImageCachesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 97DEFB4339250260BD5B4EFF58006D2A /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BC7539FB80F8BCBDEEB4E166A15036C /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 97ED312B0474017444E6379DC3C4BAB7 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C7A3ACA942980704A89C6E5CC3219F2E /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 97DEFB4339250260BD5B4EFF58006D2A /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = DCFDBA48F4D45DD625444D5E3836E3EE /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97ED312B0474017444E6379DC3C4BAB7 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 16924B7391DBFE4D0AD6337368F0C5D2 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 980D90F8772164DA4D739F9A2811B7A7 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = DCA1074616EEF1BC09293FE2105C9CFC /* UIView+WebCacheOperation.m */; }; - 9824466925699D70D12255531354CA4B /* Color+Interpolation.m in Sources */ = {isa = PBXBuildFile; fileRef = B3D82DD98071E79274A3019802A60E37 /* Color+Interpolation.m */; }; - 9842DA186F54F9D3BE5906663455016A /* RCTVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D55E29C92A3F4B1A45380158662A057 /* RCTVideo.m */; }; - 988D75C014F94B7584204ACED46F3975 /* RNFirebaseAdMobBannerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AAF7B698FAB5610C1CD443A453C33DBD /* RNFirebaseAdMobBannerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 98AB2900FAC5CE54700374DEF87D2603 /* REAClockNodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AA8C8AC1D1EE68AA78B317A9950864E /* REAClockNodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9824466925699D70D12255531354CA4B /* Color+Interpolation.m in Sources */ = {isa = PBXBuildFile; fileRef = A6455A15BAAEE82FD4F76D0D75A99C21 /* Color+Interpolation.m */; }; + 9842DA186F54F9D3BE5906663455016A /* RCTVideo.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F9BF9B60B65C4862F9EAB875CF41129 /* RCTVideo.m */; }; + 988D75C014F94B7584204ACED46F3975 /* RNFirebaseAdMobBannerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C958BEB0EE0CA981708C7227698F7D9B /* RNFirebaseAdMobBannerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98AB2900FAC5CE54700374DEF87D2603 /* REAClockNodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 331AF84BCC2BA7E0A3BE1703F9444B22 /* REAClockNodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 98BC38F964FA856EBFF4A1910983AD93 /* FIRCoreDiagnosticsConnector.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DB602E4418A6458062E66FDBE8939FB /* FIRCoreDiagnosticsConnector.m */; }; - 98C4F8C2F74808C13CC9FBBC7D411999 /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 030383C37C015A0A7495A41108ED8282 /* es.lproj */; }; - 990C114FE36C3BA307A4CEC634A01D41 /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F5C0C0B46851D473AF9561319EE2CB79 /* TurboCxxModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 98C4F8C2F74808C13CC9FBBC7D411999 /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = F2CFFC3F749D96C2A9A33A5F128355F1 /* es.lproj */; }; + 990C114FE36C3BA307A4CEC634A01D41 /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D2915E98F4D3522C540CEB1DAEB4968C /* TurboCxxModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 991970762AB939C8EF22E39E60BA98A9 /* FIRInstanceIDCombinedHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = CCE294EC7F18FA41E37CBBE707B45FEA /* FIRInstanceIDCombinedHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9919A951AA1C3643BC9A0FB4E7B89D34 /* FIRInstanceIDCheckinStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D7200E0CD187410B1D095CC51FF6E72 /* FIRInstanceIDCheckinStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 991C9DFB4E1EBB20D56E31715E457B50 /* lossless.c in Sources */ = {isa = PBXBuildFile; fileRef = 15B61266CE79A06337D4E2231EBAF1DE /* lossless.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 992CB0C6A03D842795BDF2045C33951E /* RNDocumentPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 575E6B48EA8E2CA349D94E369059D1BD /* RNDocumentPicker.m */; }; + 992CB0C6A03D842795BDF2045C33951E /* RNDocumentPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 76A2215D06FB7C40AB36F197692FA766 /* RNDocumentPicker.m */; }; 993DEE091D2ECD262F17F281E60653C7 /* thread_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 36F488E2824DFEFCE2DA5121F3EFF1AF /* thread_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 995C56C42E9021CB2C821060C20D5AAE /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0456C2D13A1432E8F3873A6AC42239DD /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 995F57F6E3A8F8F3F0CB975427339ADC /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DCC9BD55EA7962FA78BF642B58866F6 /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 998FBF05A1D5B4142E092BF051F89BE0 /* ARTRadialGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = C32D7C624A113334D910356C026CFEEB /* ARTRadialGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99F4ED1427EE4D62E5939F2D49FF3823 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = D550DD71459E8D7568326395A7971BDC /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A538510B4D21C44538FDAEE7F25BA4E /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DEE0DF28D1C938FB2E16A1233B1CEFB /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 995C56C42E9021CB2C821060C20D5AAE /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1CDD73571B970B45A486A3B0498F927E /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 995F57F6E3A8F8F3F0CB975427339ADC /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BFB0D55EFAEBD52BC0FBC03A19D7393 /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 998FBF05A1D5B4142E092BF051F89BE0 /* ARTRadialGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 25B095623B50426CB11A2B72D32E2E19 /* ARTRadialGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 99F4ED1427EE4D62E5939F2D49FF3823 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E2D19D654878B82F657E6B3A6BEFFC1 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A538510B4D21C44538FDAEE7F25BA4E /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = B43AF60286E224ACFA145A668E0211C9 /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9A563C719409A7F1D2A79F1A491DCCB1 /* types.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F373F964FD76A572A5BB6D473B3233B /* types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A5AE9F5B12B24817DC0CF360F3781A4 /* BSG_KSMach.h in Headers */ = {isa = PBXBuildFile; fileRef = 687045C978C8C32911E216B305D93291 /* BSG_KSMach.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A5AE9F5B12B24817DC0CF360F3781A4 /* BSG_KSMach.h in Headers */ = {isa = PBXBuildFile; fileRef = 6229001BE76DEB8679ABD3715883D420 /* BSG_KSMach.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9A6584332A48346E435E1681FAF817BF /* alpha_processing_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = AF0ED6FD0E89DAD5362477D5AFF91A2E /* alpha_processing_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; 9AD7C3DFE9A609436008F7DB4E0F1C59 /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DAA01CE0749CD75B5D864D9C3DB8B11 /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9AE25D78D388B01F02FAF32C7D81B390 /* RNCCameraRollManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 21639BD503537EED7E1034A66B874387 /* RNCCameraRollManager.m */; }; - 9B44C525E5FB5F51CCDE075656F184DA /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 9143C5908FB4D8E74749679BC33C2070 /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B5E58BCF1985EAC277DDBFCB91F0ECA /* ARTSurfaceViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D33174AC8E0E43A147F33CBBD961C8F /* ARTSurfaceViewManager.m */; }; - 9B8780B037E6D0A089E2EDDD8E87CDD4 /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = DA0E29BE34AEFDE9C2D97AAB837674FE /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9AE25D78D388B01F02FAF32C7D81B390 /* RNCCameraRollManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D8AE2352033C6004C6B82D705161327F /* RNCCameraRollManager.m */; }; + 9B44C525E5FB5F51CCDE075656F184DA /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = AA6B1E1FA365A5D4A33FF54B14068FCF /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B5E58BCF1985EAC277DDBFCB91F0ECA /* ARTSurfaceViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DDE34F065DF5E05D72D5B285F4B2FB3 /* ARTSurfaceViewManager.m */; }; + 9B8780B037E6D0A089E2EDDD8E87CDD4 /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = 569DB05BB4E8ADB94613FA5A0E2A3D39 /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 9BA3070F2D82AB8E6B229971E126D4B2 /* upsampling_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = E10C2950FAF761DCACFC19CB9D52CF9C /* upsampling_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - 9BA8D8C40A0F28214F8BF4B31C15A8F8 /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = D3E6D03C20ACECAE030550547CA1E339 /* EXAudioRecordingPermissionRequester.m */; }; - 9BEC9CCAE8723F6FCEBAFF8AFDFE2089 /* EXAudioSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 066CA46EC4E3C3080CF06433222E437E /* EXAudioSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9C43EFFC945AFDD1BCA2FB1AF208CFA2 /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 58E333E7BC1658F3FCDB19F8D52409AD /* RCTTransformAnimatedNode.m */; }; + 9BA8D8C40A0F28214F8BF4B31C15A8F8 /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = CD3BFC7884A73E8842C521A4FC73D14C /* EXAudioRecordingPermissionRequester.m */; }; + 9BEC9CCAE8723F6FCEBAFF8AFDFE2089 /* EXAudioSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 83FA84340E3EE860FF6AE948F657555C /* EXAudioSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9C43EFFC945AFDD1BCA2FB1AF208CFA2 /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FD4FA37C4ABD4B22B9675BFD87748D1 /* RCTTransformAnimatedNode.m */; }; 9C616301E3564A11354F44BBC19779DD /* SDWebImageOptionsProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = 76870B32976CD2CF19434FE44E4DAB9E /* SDWebImageOptionsProcessor.m */; }; 9C8A0D00A5379B1414E3ECFAB83E213E /* FirebaseInstallations-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F3C820FC2BBE1761DA1AA527AA0093BF /* FirebaseInstallations-dummy.m */; }; - 9CA68A554C6C2C6DCEEFB7A64389FCFE /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 314AF268C02A61E0C1A90E62F45FAEC6 /* RCTSinglelineTextInputViewManager.m */; }; - 9CB9FE419E53CCA57DA123E4F5176E8E /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C6CB1CCC878B2530E22CC7F10018B8C /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CA68A554C6C2C6DCEEFB7A64389FCFE /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 88DF8989F874081F1E477ACCBD40F34C /* RCTSinglelineTextInputViewManager.m */; }; + 9CB9FE419E53CCA57DA123E4F5176E8E /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DD126C0D073D3C5398EF812500A915B /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9CE103A0E1FF2B3FAABC3B449BD8D735 /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = F1D65D982EF85292BB9FDEA34BBE516E /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 9CE4BBBC558CE96AEB10D5D105E1026E /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C90C59259D92D210C0F029BED26A1B7 /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CED9EE5CB7376FF7FB07C9F43879FEC /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D4454889C698F3EA7E727F1944FC804 /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D1F18778A897B0C96D5297BA8104478 /* RCTDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E7A416F75D848938F7E26374B24D1B1 /* RCTDeviceInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9D6AEC2BADA6415B32183279535FC3FD /* RNRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DC9D1A3E4C33F5500BE62E412F6184B /* RNRotationHandler.m */; }; - 9D7095896EAC7F5FD443B80112211022 /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = 074DDB0ADE3E453E37436DD6DE29DB44 /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9DE2621FE6687E74C85962E58E803760 /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 417E8BFE0291B4472FA838818899FEA9 /* RCTReconnectingWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9DE4DDE399B842FC926F9E57D9A45942 /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 44AB8DA6CCB21594C36E5E9A8DF33C43 /* RCTInputAccessoryViewContent.m */; }; - 9DE9270C04172DD40D69B6D9546516B9 /* RNCSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D1DE266071B6B3F0DF6EFAD39C2915F /* RNCSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E04D8058BC6847CAC65773EED54D05C /* RNFirebaseFirestoreDocumentReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F5398B210CBA961523993A242B13978 /* RNFirebaseFirestoreDocumentReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E35AF16FA811ED54521FD4E6352E394 /* REAEventNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1231FB2390229D9B8DCC2C8E8015FA4B /* REAEventNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E3FDFA5FE43DF56A9E6F0E2ADFD0521 /* REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 37FAD1532FB0289245A4838BA68B4A79 /* REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CE4BBBC558CE96AEB10D5D105E1026E /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 714A238B856E4054872E1FD400E56ED0 /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CED9EE5CB7376FF7FB07C9F43879FEC /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 80126C51BED4E3DCB4CCD333C38DA46B /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D1F18778A897B0C96D5297BA8104478 /* RCTDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 0798B90710BEE010D41A8725BE3E757B /* RCTDeviceInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9D6AEC2BADA6415B32183279535FC3FD /* RNRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 48FB58C1E8633B6CA3292D48F848E3F3 /* RNRotationHandler.m */; }; + 9D7095896EAC7F5FD443B80112211022 /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = CE73BF668DDC17C0757CADB4332DB252 /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9DE2621FE6687E74C85962E58E803760 /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 3AAF20889079680A79DCBEB09D19E881 /* RCTReconnectingWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9DE4DDE399B842FC926F9E57D9A45942 /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = EBB697DB9411C56639A4EEA0CD6D9933 /* RCTInputAccessoryViewContent.m */; }; + 9DE9270C04172DD40D69B6D9546516B9 /* RNCSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = CF81CBD085AB92693642D6E6BC5FD9EE /* RNCSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E04D8058BC6847CAC65773EED54D05C /* RNFirebaseFirestoreDocumentReference.h in Headers */ = {isa = PBXBuildFile; fileRef = 8520D971696FEBF0477BBD6446C4D492 /* RNFirebaseFirestoreDocumentReference.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E35AF16FA811ED54521FD4E6352E394 /* REAEventNode.h in Headers */ = {isa = PBXBuildFile; fileRef = BB715B513540E23DAA9A4BA4892EA4C0 /* REAEventNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E3FDFA5FE43DF56A9E6F0E2ADFD0521 /* REATransition.h in Headers */ = {isa = PBXBuildFile; fileRef = BCC1509149AD55868B0A8C7F4BA1936A /* REATransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9E69C58844ADDABB79A1AF60899FB6AB /* FBLPromise+Retry.h in Headers */ = {isa = PBXBuildFile; fileRef = 933895F5689A726BB5DBED7880848CEA /* FBLPromise+Retry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9E74CD4E4333A1722FF7057A7D841D78 /* SDFileAttributeHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = AC5BBA5FEB96505850A90FBE111B046F /* SDFileAttributeHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E9C9344BE1DA6BBA542ECAD750A0B53 /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ADB7061909E39405AD4BD7B8428BCA7 /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9EAA160F40B7AEA5F8323BF14AE1AD73 /* BSG_KSSystemCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = EB570AFE3807B1510AAFAA576444577D /* BSG_KSSystemCapabilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9ED53ABBF63AF508BF3A45A8055BF25C /* ARTTextFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = DFF2E2EE2AECC376D0B0D17D0A8DFAAE /* ARTTextFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9EF008BB17B5795A9CDE33AF1AA4EBE4 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = A27B300D06E198DEB17D06A4FFC3D339 /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F047DDB8969818C22E71086624790CE /* RCTTiming.m in Sources */ = {isa = PBXBuildFile; fileRef = 1ACF8AC78298B41C94A8D5D65AAFE144 /* RCTTiming.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9E9C9344BE1DA6BBA542ECAD750A0B53 /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 6248DF6E2A2A11CDEAEB601763176F59 /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9EAA160F40B7AEA5F8323BF14AE1AD73 /* BSG_KSSystemCapabilities.h in Headers */ = {isa = PBXBuildFile; fileRef = BD50BFF576E37A21E3895D00791C062B /* BSG_KSSystemCapabilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9ED53ABBF63AF508BF3A45A8055BF25C /* ARTTextFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = F072948F3FB48D4D7040B7F5699DDE2B /* ARTTextFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9EF008BB17B5795A9CDE33AF1AA4EBE4 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BE0009AD5A62049E3DBCC72BB4C2C2E /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F047DDB8969818C22E71086624790CE /* RCTTiming.m in Sources */ = {isa = PBXBuildFile; fileRef = BA73AE15A22623217F88D04BA9686F52 /* RCTTiming.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; 9F56E740FDB8B87EE194B5FC6DF23786 /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = 5469BFF90FA3FA7460B0D79CE5197D1D /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F608AE2E0848CE8858F19F0376F4B3E /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = C2CB94F061FD37D5215385BC264E365C /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F608AE2E0848CE8858F19F0376F4B3E /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = EC1E6F6BD46D3034BC7755AEA1502E5F /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9F69F8135343C51A14ECEC3DE3FEC05F /* format_constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 6638D4A39DF660C0D118FE1FB6420263 /* format_constants.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9F6B4F752D0316DC0CC2C2E58EC1A546 /* FIRInstanceIDStringEncoding.m in Sources */ = {isa = PBXBuildFile; fileRef = 580123A082788AF220ECF528D65896DE /* FIRInstanceIDStringEncoding.m */; }; - 9F8CC158594C16A93BF79894AE652576 /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 001A5C06BAB91C0F64838710C7B61912 /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 9FC3C9159E55C02263FDC38027901A59 /* EXVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = BFC75BD74E2839F062A16CD3F3ECBDD9 /* EXVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9FCA0C85E502C92ACFA86EABD32B2224 /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C5F1A58BB6ED4B9FA7894540D6B6095B /* react-native-orientation-locker-dummy.m */; }; - A02478583635DC43AF9D1BA278F4ABDD /* RNFetchBlobNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = EC8A0114499BD3AA4D7BFD2A78FA01A3 /* RNFetchBlobNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A031A8D4C70ABFA2E6794E0A997A259C /* react-native-background-timer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FA6E41E23B34CFFF4C7E7BA11E408967 /* react-native-background-timer-dummy.m */; }; - A0822D817180C17B9F6EC58E9AFE7282 /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C69B50911948AFF3F4A5C5FBD32B2C6 /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A0927C05EBC9079407AC005BC6E1373E /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D316515E3C4D276B23638661A6A9C23 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0AF090921E033135BA303A51E86C8D2 /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B78F20857A4C7463E80D357604DE7B4 /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0BE197B645C6C6537575EAF6F1A8CDE /* RCTConvert+RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E3E9224AB8B6AE8E1332BE7236DAC9F /* RCTConvert+RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F8CC158594C16A93BF79894AE652576 /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B38A62D77E3510713ED69055527540B0 /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 9FC3C9159E55C02263FDC38027901A59 /* EXVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 3098F19ED0FF9A0D33958CE009076ED2 /* EXVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9FCA0C85E502C92ACFA86EABD32B2224 /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 461DED48BAECA2364F51E16C2192B419 /* react-native-orientation-locker-dummy.m */; }; + A02478583635DC43AF9D1BA278F4ABDD /* RNFetchBlobNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = BF8953B11CC5C871E31B1265D3E25346 /* RNFetchBlobNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A031A8D4C70ABFA2E6794E0A997A259C /* react-native-background-timer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EED3DB3971808F087853A4962A6A9391 /* react-native-background-timer-dummy.m */; }; + A06FEF799AA13ED077FFB3494AEDD1DB /* EXLocalAuthentication-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7CD14069E0DC340CAEA66EBACA998E48 /* EXLocalAuthentication-dummy.m */; }; + A0822D817180C17B9F6EC58E9AFE7282 /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CDA8FCB4FCCED71D58F8B8D0C98D377 /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A0927C05EBC9079407AC005BC6E1373E /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C2B5550BAD8A5777A79E8FB7EB4D833 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0AF090921E033135BA303A51E86C8D2 /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 12D0680A4FB4EE6DAC0C2C1E7E07543D /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0BE197B645C6C6537575EAF6F1A8CDE /* RCTConvert+RNNotifications.h in Headers */ = {isa = PBXBuildFile; fileRef = F881CC99AF63CFBF850897A4D0123EC2 /* RCTConvert+RNNotifications.h */; settings = {ATTRIBUTES = (Project, ); }; }; A11DF1263B7EBD23B3D95FF9A3F68E8E /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AA5FDE5D455838C40D597792B73FDCC /* SDImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; A134CBE0553F5F3339A4A20A87F18E3C /* filters_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = D53A23815D628A7C3EFFC59488C8EA44 /* filters_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A13E40901AA20224032AFB2AD4D04744 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B2099D4C757AAB0D9F2E350C5EB6328 /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A13E40901AA20224032AFB2AD4D04744 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 915F0FFDA3662093AEC20E034BDB87FC /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; A1A7D185D68859C10D0EE1DE4E8063B2 /* FBLPromise+Validate.m in Sources */ = {isa = PBXBuildFile; fileRef = 1959F3ECFABC8A4D200C1715ED0696A0 /* FBLPromise+Validate.m */; }; A1A8801E913E5175E5ECF693F318AA79 /* GULReachabilityChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = 13BC4224F66908DB532F9B44C792439A /* GULReachabilityChecker.h */; settings = {ATTRIBUTES = (Project, ); }; }; A1FA306C12F8FDC6C3E22551518871CC /* GULNetworkMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0383EBC057B08B3B4D8E2D06F7D33F38 /* GULNetworkMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A21455566701C95DA8DC8AD067452A21 /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 6235F0F9E3A876D361CF60105A7254E9 /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A21AA461DFBE94B5DA7E5BEB211CE665 /* RCTConvert+FFFastImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 86B5F738702AFE3D8F90BAD8BFD61770 /* RCTConvert+FFFastImage.m */; }; + A21455566701C95DA8DC8AD067452A21 /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = E263FF05F0C40822398FCD1BA2930346 /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A21AA461DFBE94B5DA7E5BEB211CE665 /* RCTConvert+FFFastImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 7338C1843FE0B7ED556C5763FD46A84F /* RCTConvert+FFFastImage.m */; }; A21ED806195A73620CB21657E05C7188 /* FIRInstanceIDTokenInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 5372D71E7AAFE0D044943DB958C2F428 /* FIRInstanceIDTokenInfo.m */; }; A25FFD696888820B56D9C79F5B2EAEC3 /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 336D56D9272DA9C7A6F5356D0DB9B248 /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2A4D768671DD4976E9B00C5DD8A08DD /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 06BC4A59920333D19413DD86CB3696F3 /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A2CBE742B99580CC13E8E18D61C8A9A8 /* BugsnagCollections.h in Headers */ = {isa = PBXBuildFile; fileRef = 777EB941848EB1D684C8CAEC37FBA39C /* BugsnagCollections.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2DADC127EA39A90F16504C0F8D84DA6 /* RCTWebSocketModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 5611AA51C8CFA27C4D5DDB621C88F655 /* RCTWebSocketModule.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A3377E75A6E4A4461B63CFAAC884C5F3 /* UMAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 88086D10AEE8A22D3132E28EDB996BA3 /* UMAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2A4D768671DD4976E9B00C5DD8A08DD /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EFA3A284870757064A62A77CA020A25 /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A2CBE742B99580CC13E8E18D61C8A9A8 /* BugsnagCollections.h in Headers */ = {isa = PBXBuildFile; fileRef = 78DCB97C2C0B300A6C7FAEE9170F900E /* BugsnagCollections.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2DADC127EA39A90F16504C0F8D84DA6 /* RCTWebSocketModule.m in Sources */ = {isa = PBXBuildFile; fileRef = BC53B760117C17C307A13435465215B7 /* RCTWebSocketModule.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A3377E75A6E4A4461B63CFAAC884C5F3 /* UMAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = CA6146538D9EC08C954D0E457725B2A9 /* UMAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; A348E879FA3330E1712179F5B4FAC236 /* vp8l_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 872F0037F0BE0480407ABDF7F96FBAF6 /* vp8l_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A3514C01C8202F3027EFCBE7B89A26D3 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = A20A1775CECF70FDB0A05B7C12A5D99E /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A356543091BEC90DBF244D36660ECCBB /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = 67C4AE197F2F4270AD29AE458014D5D3 /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3514C01C8202F3027EFCBE7B89A26D3 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = C1B98CFF2D3F49F6DFED56367DEDF379 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A356543091BEC90DBF244D36660ECCBB /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BD2A23277F30FEB5D8CC12D42BFE63D /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; A361C7D8C652CE224BA016F8E6DD7432 /* SDImageCachesManagerOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 11C0A683D9914E0CCC77E6DCABB2816C /* SDImageCachesManagerOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; A381D018508DD7639E2FE4C1A93036BC /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 951EA411C3609031BB767BB3EC28580E /* json.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A3A1C8CA04A1A2FBE630CD639DB3CF75 /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FAE6AF1B4DBEF13380F372C55C2AEA3 /* RCTSpringAnimation.m */; }; - A3C05F4A0CEF28ED7D16AE2076889136 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D316515E3C4D276B23638661A6A9C23 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3C5B95F92F2124418433EE74AF6D2E1 /* UMModuleRegistryHolderReactModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F0B55389BBCE3DC517D5A3A2ECFFBF5 /* UMModuleRegistryHolderReactModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3F9CB0656A0F4FB806F778CE4BB15DE /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = C8C4F6CD61633AE4D2DF0A28EF27B590 /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3A1C8CA04A1A2FBE630CD639DB3CF75 /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 21798EFB64E95ED60C19806C91FC71F0 /* RCTSpringAnimation.m */; }; + A3C05F4A0CEF28ED7D16AE2076889136 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C2B5550BAD8A5777A79E8FB7EB4D833 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3C5B95F92F2124418433EE74AF6D2E1 /* UMModuleRegistryHolderReactModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F9AD33270B26611BCAC001F0B32C8C0 /* UMModuleRegistryHolderReactModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3F9CB0656A0F4FB806F778CE4BB15DE /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = C22B7A513CC428E42255314BBA5921B6 /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; A4093BFD98499872C36D61188865A000 /* SDImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 877F0D1D9A0A956008B6F07FD23EC8B1 /* SDImageCoder.m */; }; - A415AFE0F17D1746DC4BD0CF3E588F4D /* REAPropsNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D9A79D228495E5315B0BA3E59908CBE /* REAPropsNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A415AFE0F17D1746DC4BD0CF3E588F4D /* REAPropsNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 74258F81D8E9A10E7FFF59588C4A3450 /* REAPropsNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; A42284BAEF9A5D75B15BF4EFC4E4C468 /* frame_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 0B9BD3B6B09CD5A1C2631CF99883907E /* frame_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A42C59477BEC3A7A4D2CEBD6BC4A4F1E /* yuv_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 574C5FDCBE394444827C0B4B3C7DE9A5 /* yuv_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; A42EF8F9C3AFFECF5B7DFEADA68539A4 /* FBLPromise+Race.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F5EDA23D6D2D1ACE2F5DFFCB0B53C29 /* FBLPromise+Race.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4764E8EC572725B1EC20DE1F38F9ADB /* UMPermissionsInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A46A1EA62BE263FB54EF47F2F178E26 /* UMPermissionsInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4856E6938B9050ED0388C83AB428FD1 /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 38841A260D87D469AFF933377CD8A7BC /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4B467E40F7E342592B65F3AEC3D9E97 /* REAFunctionNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C5E8BA85ED91CBA07263CB3BC35294D8 /* REAFunctionNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4C63255CAB3DA53A9D697FD7FCC26B5 /* REAValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E74CC6C78C61B321EC7A75976A2BA08 /* REAValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4DE80D3B1511941AF0D53ACF8AD1D72 /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E58F8187571FB8BE19BAB41634D821E /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4764E8EC572725B1EC20DE1F38F9ADB /* UMPermissionsInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = EE56065787BBC3451B22B3A0C59BC47D /* UMPermissionsInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4856E6938B9050ED0388C83AB428FD1 /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = D072AAF75155CF22E0B841DC87AA1FCF /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4B467E40F7E342592B65F3AEC3D9E97 /* REAFunctionNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D4C5DCBD8CFEB2613D8E43206E263F1B /* REAFunctionNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4C63255CAB3DA53A9D697FD7FCC26B5 /* REAValueNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C4157C2FAA19B37B490BC14D91400ED /* REAValueNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4DE80D3B1511941AF0D53ACF8AD1D72 /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2910D26607637BF64B2E89CA8B50BC0B /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; A4DF3AB01471BD888F4FD4EC2E9A21BE /* FIRComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 73DF275591A289869A037B732ACCE445 /* FIRComponent.m */; }; A50388445DF10ADD6B22876F3F69E902 /* ssim.c in Sources */ = {isa = PBXBuildFile; fileRef = 2D591C821A51F0825209BC1C05DFFB03 /* ssim.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A555C6E5ABAA5DB1F62A09D2BC49DA51 /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = ABE4F8095AB04F484F6324A95DE94BBF /* RCTTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A55F73E73A81AB3E9F61D647CE2A0FFF /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7DF3EC3740C96B26BCF2805EA83CA564 /* CoreModulesPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - A584EA45113B1382E33AC5AA20103087 /* RNNotificationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = F23E3FEC63449DC8ED6AA3D91CEDDC77 /* RNNotificationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A589A7984EA7376E70C72AF061F51B43 /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = EEF472EFFFC67AB1A9C798AF6E7D9B7F /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A5969DC380832572368B9D636242BD6B /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 01CF4554E741926D31EF30679F8D8CC7 /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A555C6E5ABAA5DB1F62A09D2BC49DA51 /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3DE1E6EB37A7568CECB81081794A3F18 /* RCTTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A55F73E73A81AB3E9F61D647CE2A0FFF /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 72B02B27678B51B83704A4BE3DFEF191 /* CoreModulesPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + A584EA45113B1382E33AC5AA20103087 /* RNNotificationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = CFB77E55364F07756874798EC9AC40C5 /* RNNotificationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A589A7984EA7376E70C72AF061F51B43 /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 41C564A2EAAA42E538E570410F078D09 /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A5969DC380832572368B9D636242BD6B /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 247EB6446686C8DE976B71F8E7151AB5 /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; A5F411136D291A38CCB996E7E68DE213 /* GDTCORReachability_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = FF4A1A447F74EECB8C2AC14492FA6CA0 /* GDTCORReachability_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; A5F7A295CE8D9AB5DE3F0B75200DD1A2 /* io_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = B5609AB6E46F0A418839F14921E70AE4 /* io_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A624B26C6E8893F180544B2F414693D5 /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F63C595C2EA0A71DB2735C63EAFCC1D /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6819EA409E0033334420B790115A46E /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = E70612D1EB1C6A75F6BC4F0F3DBA3E8B /* UMReactNativeAdapter.m */; }; + A624B26C6E8893F180544B2F414693D5 /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = F3163268C537ADBAD8FD410E13BD2103 /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6819EA409E0033334420B790115A46E /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E41897D7B8A9E05D048F023965765EE /* UMReactNativeAdapter.m */; }; A702694C291529C5D08B2DCFB39628F3 /* GDTCOREvent.m in Sources */ = {isa = PBXBuildFile; fileRef = C02C313B7B5553296D2F7158CBE25081 /* GDTCOREvent.m */; }; A7721978FA34EA5CD4BB6F8FD361657D /* filters_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 387FDB6229B2B5EDABF7EAFC7EB23979 /* filters_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A7C6CA4554F58BB1C409F0F4A97C1656 /* RNVectorIconsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 21D0078BE561313FE04B5DE40C8AD3B4 /* RNVectorIconsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7D57A898342D32D6D087A8B3B880AFF /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = ED82E9BE7377A40C6A4CBA6B7667F7E1 /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7C6CA4554F58BB1C409F0F4A97C1656 /* RNVectorIconsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 39440C29EF6281814EEBA71F12BF027E /* RNVectorIconsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7D57A898342D32D6D087A8B3B880AFF /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 559BE7FB81AFF08D3690E3B14F07E8B0 /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; A7FE4D8E743D00ECB115E087D53587C7 /* cost.c in Sources */ = {isa = PBXBuildFile; fileRef = 160856CCFCFA358DCF2AAC3EFA195712 /* cost.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - A826DA3137A89F1502F9B6696FFB8730 /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = DD6E3E7D56FED8F8A3BAE1742C879BE0 /* RCTInspectorDevServerHelper.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A851FE5B4FD2E5AC7FBC0358BAE014A8 /* ARTContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = BA926B243299D2DDF430FA7DAF44B8E4 /* ARTContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A86E645D32DB04BAE7498AC89D9980BB /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F66C4D688719C36A136311FAE73BF2F /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A826DA3137A89F1502F9B6696FFB8730 /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = FF3804F6E5B0A5D91DBA8A993D10FB6A /* RCTInspectorDevServerHelper.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A851FE5B4FD2E5AC7FBC0358BAE014A8 /* ARTContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 863DB1AE51C0BA4A1D3DF938568E6C9C /* ARTContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A86E645D32DB04BAE7498AC89D9980BB /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 705CCE9E05509627FF89A09250AE4165 /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; A86F7C0A488320ED06BFA2B846DA26FA /* RSKInternalUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C78B03E18C3C58965E80B1E11C3CAC7 /* RSKInternalUtility.m */; }; - A88BAD944CC973142AF9C9BF65280C54 /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BF79865016F2E044F8B5FC7CB23BE1C /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A896DBC8DEB8E8304EDEAA0F0AA15B1A /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = B5AD579CF7B8D3A6341104D6D503EBCB /* RCTBaseTextInputShadowView.m */; }; - A8B6D15DA68092B480483FE020894204 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 297CEC882720276F40987482F9ECE587 /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8B8BEB2134D3E68B9907C5A48A04A03 /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = 61EB1258716B8DFD1A247EF4CE6BEB72 /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8D9C90918B779E9C1A91973D2AF29DE /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D1D920036CBFEB6265368ADF9F6ABB72 /* React-RCTImage-dummy.m */; }; - A8E90F8A49540C9A192B44F1F7641426 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = FDE9126A93A984EF18E41B9D0692BFBC /* RCTRootView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A8F850B0755D926B58BF8EA8DD0A7EF3 /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = AC7A1ABFFBAE81D95EB7D34A5A84E6BF /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A9102589774A3FD3F3808AB2F0F83ACA /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 06B669943C192B510CD5FC44F1C41A75 /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A96BF195A93FBB2FDDC78135932BB359 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = 20DD39159ED27E33EFB83B90B96BDE1A /* RCTProfileTrampoline-arm64.S */; }; - A9BD36E5B3038DFBDF1438B0D43F6E14 /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = 94DE77592004DF1F7B50325C773C9EC3 /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - AA4B2C35721761FB29A7BCDF53A358A4 /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DD8D3AF0A74340CC3014948BF74BBCE /* QBAlbumsViewController.m */; }; - AA5F944B8A228102EAB6BF9BF25031DA /* EXRemoteNotificationPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 23AD90F6598D2FFC0B3AE21D97591D1C /* EXRemoteNotificationPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA882B59899551990442E64FD68EBA93 /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = BFD250D0AFDA07A5E09D2F7A6DF2AB44 /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA89F071A632E2E5F4E3BE02B3F0345E /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3564FC971AD6DF377158066316CA3DCC /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A88BAD944CC973142AF9C9BF65280C54 /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FA178F75745CEEA3494C31D038EC7FE /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A896DBC8DEB8E8304EDEAA0F0AA15B1A /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = CCABB48D087659B9F3108DC2B38CC33D /* RCTBaseTextInputShadowView.m */; }; + A8B6D15DA68092B480483FE020894204 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E0781D6B8B1537F22692ACCB7E783DB /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8B8BEB2134D3E68B9907C5A48A04A03 /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = C7B64314C69A8832898BAE08194AC9B9 /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8D9C90918B779E9C1A91973D2AF29DE /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 11918BF00AEACDEB104E48AC350AF3D8 /* React-RCTImage-dummy.m */; }; + A8E90F8A49540C9A192B44F1F7641426 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 447FFC16368F27E9F314B1280981547C /* RCTRootView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A8F850B0755D926B58BF8EA8DD0A7EF3 /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = A8602FC077BA48E60F4F61D2627E4B0F /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A9102589774A3FD3F3808AB2F0F83ACA /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A59767FF3F8EBC30C89F5828D15A70F /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A96BF195A93FBB2FDDC78135932BB359 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = 7CB8C0DB6EEE6CC67BAC49EE564D190E /* RCTProfileTrampoline-arm64.S */; }; + A9BD36E5B3038DFBDF1438B0D43F6E14 /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E50CD8A90BE20BC826BEC95C64F9915 /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AA4B2C35721761FB29A7BCDF53A358A4 /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E2743AAAF9A4FC35706F52E73C11C62 /* QBAlbumsViewController.m */; }; + AA5F944B8A228102EAB6BF9BF25031DA /* EXRemoteNotificationPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 783B518DD2B125FC0E464EEDAA73E812 /* EXRemoteNotificationPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA882B59899551990442E64FD68EBA93 /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = CCDB866E2441C8D4C615934AE96E2B37 /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA89F071A632E2E5F4E3BE02B3F0345E /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FFF4386C7B0F3D13728EEF0B16D8810 /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; AA98E5E760C605F57551D3D6192E5225 /* mips_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = B0C730BFACECB7606E3E03C1D15A4BA2 /* mips_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AAA397302AB9735FEE54E85069DF673B /* RNFetchBlobNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FE326C56F88E3DEB8D0E72F3704F5FC /* RNFetchBlobNetwork.m */; }; - AAC7FD892729AFECE270AE59C8812F5D /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 75F81FBE7F9056B29EB03FEAEDB2E39A /* RCTTextView.m */; }; - AAD860080DE05A9DB492EA79E7A0059A /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 7692255B5991851F786B5D77763DBE26 /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AAA397302AB9735FEE54E85069DF673B /* RNFetchBlobNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 809C97FBE2B7346EB069300DC64893C5 /* RNFetchBlobNetwork.m */; }; + AAC7FD892729AFECE270AE59C8812F5D /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EA63B128144C476191A9774005959AD /* RCTTextView.m */; }; + AAD860080DE05A9DB492EA79E7A0059A /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 05B625DEEE974C099FC67FA0558BC026 /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; AAE02A17D7A26ACCDA5DBF6A441CFE98 /* FIRInstanceIDAuthKeyChain.m in Sources */ = {isa = PBXBuildFile; fileRef = D9C3D3CC551D9381EB6D1805585CF24D /* FIRInstanceIDAuthKeyChain.m */; }; - AAE3C47A93D1E6B9C643FEB27927CE4E /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = F1F9A5AFD99CBEFAFB6673870EC2885C /* EXReactNativeUserNotificationCenterProxy.m */; }; + AAE3C47A93D1E6B9C643FEB27927CE4E /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 19A6DAA1635F9B631B3EAA16F81907F9 /* EXReactNativeUserNotificationCenterProxy.m */; }; AAEC54ADA9A9C0A6DD785E903782EFB3 /* ssim_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 0F2BEB3203326DA9994D2329F5515A34 /* ssim_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; AAF05BFDD102FD660418FD7AE198030D /* analysis_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 61AF1837C4C82F78744ED30517A5031F /* analysis_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AAFC106D9A09F68152DD13A0B192D702 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B254C9C4A303F02DB2DDD0A2B7553FC /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AAFDC490C197A364E412E59DC6D18FA7 /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B9E241B8F182966DB6257F6EF2DF8C42 /* RCTImageCache.m */; }; + AAFC106D9A09F68152DD13A0B192D702 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E76F3759E8407C982EDBF7A405F370E /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AAFDC490C197A364E412E59DC6D18FA7 /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 018DA950D2BC6582FBF0875EF15BE036 /* RCTImageCache.m */; }; AB0D233175695AD5A5CFF80D84E56874 /* anim_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 96BA55D82ECFF1108092369C40805752 /* anim_encode.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AB59C6234A9993C6BE675204C9AB2EE6 /* EXImageLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9683C6DA2A8F45520D195D28F24C9D3D /* EXImageLoader-dummy.m */; }; - AB6B1C527596D3144A8E068B20847368 /* RNFirebaseDatabaseReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 16BF078F3273F79017A1B52F7C67CDFF /* RNFirebaseDatabaseReference.m */; }; - AB71242585E87C1ABAFF732A17092713 /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 13FC8FAFD490E87CCFC0834A8B362450 /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ABB159E31C767AE2BF6EE30DE4B7D346 /* BugsnagSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 5314314BDD42B0A1926D5A66C9B59D99 /* BugsnagSession.m */; }; - ABB74B188C02A8D67A14B8EC8BDB5D08 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 860C87FEF5C62CB1C641767D3D32105A /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ABC211F1ED49935A5C4A363A6B7A4ADB /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 358706A5FEDC4F5AFFEBDB072E89457D /* RCTFrameAnimation.m */; }; - ABE4DD5FE579286EA84BDF53DF011F42 /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 02B75C8F90265EEBA66E0C8EE71B6B25 /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB59C6234A9993C6BE675204C9AB2EE6 /* EXImageLoader-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FCC93B91F207812C7C1D44FB69C95083 /* EXImageLoader-dummy.m */; }; + AB6B1C527596D3144A8E068B20847368 /* RNFirebaseDatabaseReference.m in Sources */ = {isa = PBXBuildFile; fileRef = 743F5E07CF92C6F606DD48A3BCCA1B27 /* RNFirebaseDatabaseReference.m */; }; + AB71242585E87C1ABAFF732A17092713 /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F08C8E9ABDB624DB4767FBBFB966F840 /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ABB159E31C767AE2BF6EE30DE4B7D346 /* BugsnagSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 9608D8A2D0AEE0A6A888D2E2C7E4342D /* BugsnagSession.m */; }; + ABB74B188C02A8D67A14B8EC8BDB5D08 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 290DB13BE039EA3C352747F78BAADE99 /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ABC211F1ED49935A5C4A363A6B7A4ADB /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F878A57E2BD422441DA596CE98AC330 /* RCTFrameAnimation.m */; }; + ABE4DD5FE579286EA84BDF53DF011F42 /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 624FC0F34AA0E8556C317C42E134D426 /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; ABF126106FD8D877441956C3AF553EEF /* pb_common.h in Headers */ = {isa = PBXBuildFile; fileRef = B4E59C34733EDDB63352F51EA330CB81 /* pb_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC31EC883CB7E5DBAF9998562725691A /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E91991D40236A446717C05DB53A8FDB /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC31EC883CB7E5DBAF9998562725691A /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 415459B9DCB71DFC1B666BBDBF009DC0 /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC3905F52FE0809F628BCC0CF306E76F /* picture_tools_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 2691CB449C5A42D1964D19F13F61C0B7 /* picture_tools_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; AC54FD31827C5BDB2AD22BD2F275CB07 /* GoogleDataTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 66EF89ABD7B5DBBB462B12529A796D9B /* GoogleDataTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; AC7FAE73363B58CEA4FEC4E8471E4C9C /* FIRInstanceIDTokenOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 95F672D173395EBA22AF0884C6C8915F /* FIRInstanceIDTokenOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC9977754C40BF50D3477ADDE4182EBC /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = C27EE54FAFD51156AAA2A03935FFA799 /* UIView+React.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - ACD5CDAB5F0724B498437299A32FECCA /* REANode.m in Sources */ = {isa = PBXBuildFile; fileRef = 85831CDFF1F97D05F42E20822080C13D /* REANode.m */; }; + AC9977754C40BF50D3477ADDE4182EBC /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = 602A3122C7F22DFAAB9B83821759D99D /* UIView+React.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + ACD5CDAB5F0724B498437299A32FECCA /* REANode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5795E5FB84901A09682C23201BD21518 /* REANode.m */; }; AD2F0348979F6DEC73E66C0634B8D89F /* FIRInstanceIDCheckinStore.m in Sources */ = {isa = PBXBuildFile; fileRef = A3EF6DDC9ECF54BEBC12FEF5478C225C /* FIRInstanceIDCheckinStore.m */; }; - AD66D2FD84BC116DD133347EACA99CC1 /* RCTStatusBarManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FE2CA91659F87D0CA70D59B77940C1B7 /* RCTStatusBarManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AD66D2FD84BC116DD133347EACA99CC1 /* RCTStatusBarManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F9BCF129B5681ADA1FABF4465D5F7084 /* RCTStatusBarManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; AD7C3D9EC21B3A100F2D50A4D7158DAF /* GULAppDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 2728A14783AB5E811E5251887AADACAF /* GULAppDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD8F9EBA6262A36F5466A2B98B714CBB /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B3686332A431ADEBE518021AC34BDF6 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ADDDC9248A6F312AD540F1D3E1D2F888 /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = A03DE502008020EB490A8C1BF68073A4 /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ADDEA309B94CAA51E650B66DDB4CD3B5 /* BugsnagLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 32D1E4560424ED1477C0C2DFEBD939FC /* BugsnagLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE14F028F54D612B4D48CC6CED8B76CD /* RNNotificationEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 0AC58D43F520AB9E41176EF916A98C28 /* RNNotificationEventHandler.m */; }; - AE3C983FDA0774DA378C46B4CB8D4BD6 /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 75A730B0265F6D513F27FEB743FAA8A1 /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE696B4A35AF464F62260BA86B736EC9 /* RNFetchBlob.h in Headers */ = {isa = PBXBuildFile; fileRef = A7B3FE351CD5D079D637B8BC7681CE5C /* RNFetchBlob.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE7E5CEB88DE285A14B49E125734817C /* BugsnagMetaData.h in Headers */ = {isa = PBXBuildFile; fileRef = E0DBF0B6EA978E1A081F305745A17E7E /* BugsnagMetaData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE807CFC8F81EF3476F064B8E48C564A /* ARTNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E1D2D89644507DDB99C0775951349FF /* ARTNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE9A689C5BA6E8AF5535171D3922275E /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 02B273A00658D942D23E36B021688801 /* RCTBaseTextShadowView.m */; }; + AD8F9EBA6262A36F5466A2B98B714CBB /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 379936F1F3A202E81F05EB564A22F2FB /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ADDDC9248A6F312AD540F1D3E1D2F888 /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 110F5F208B1277BEBFCEDFFA467DE235 /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ADDEA309B94CAA51E650B66DDB4CD3B5 /* BugsnagLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C977153EE830FF4DF8C2637EB155FC4 /* BugsnagLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE14F028F54D612B4D48CC6CED8B76CD /* RNNotificationEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 95EF3AD0840BFDDC76F676455E7154DD /* RNNotificationEventHandler.m */; }; + AE3C983FDA0774DA378C46B4CB8D4BD6 /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EF4278534C114B75848F65D72660EB2 /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE696B4A35AF464F62260BA86B736EC9 /* RNFetchBlob.h in Headers */ = {isa = PBXBuildFile; fileRef = 1199498CED9F8347974A740A839A1121 /* RNFetchBlob.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE7E5CEB88DE285A14B49E125734817C /* BugsnagMetaData.h in Headers */ = {isa = PBXBuildFile; fileRef = E22F88CAA43045F32AF78CAF32BD7AF4 /* BugsnagMetaData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE807CFC8F81EF3476F064B8E48C564A /* ARTNode.h in Headers */ = {isa = PBXBuildFile; fileRef = BB1D0FEDBCF1E8FB20711DA061393254 /* ARTNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE9A689C5BA6E8AF5535171D3922275E /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E9B9CADDD9A79257A18CB6FF68785E0 /* RCTBaseTextShadowView.m */; }; AE9BAD5416D1788A60DA1E7F3ED08F51 /* dec_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = F1A4FFD0829F895C7CB4CE1DADA8C124 /* dec_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - AEC0EC96C1A700516BB6BEB6EBEAEC63 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = F02634E51831E5B3FD5A787D5BB2BF15 /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF28B147059D9D806FF35212F54804F2 /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C12D2F649FCE22A455888A1E969C491 /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AEC0EC96C1A700516BB6BEB6EBEAEC63 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = FBBA4243BD0169C8F395341965625008 /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF28B147059D9D806FF35212F54804F2 /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 2978BA2DEBC49B6BF77A935822359DBF /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; AF783557C42133FF18F4E366E28EF300 /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9A4D3B3B310D9827F2482B1F3DE8CC69 /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - AFA1747D7903B71E12ED58F61E2A35F4 /* BannerComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = E1F3477B4578E3887176C019B49E061D /* BannerComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AFA1747D7903B71E12ED58F61E2A35F4 /* BannerComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 933526594E2B49970B93C4331D304EB4 /* BannerComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; AFA5B2D16D48229861E4E5620792A094 /* GDTCORPrioritizer.h in Headers */ = {isa = PBXBuildFile; fileRef = BA97DE2A8EF2E1432F205EFE746D7873 /* GDTCORPrioritizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AFAE17A768C60A8299FB264ACD4B0205 /* ARTNodeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BD45415BD752013DA3245CAA4A136B95 /* ARTNodeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AFB15A6F36F4E7BED7571C30D284FE49 /* RCTRedBox.m in Sources */ = {isa = PBXBuildFile; fileRef = 33730729FF01A3597D03942C649B47AF /* RCTRedBox.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AFAE17A768C60A8299FB264ACD4B0205 /* ARTNodeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D7C7649AFE69309F676CF78B232B1D1A /* ARTNodeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AFB15A6F36F4E7BED7571C30D284FE49 /* RCTRedBox.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F64B8AA477693BD691861C5CB28A033 /* RCTRedBox.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; B03C42B044033F100A1E04809ED61FD2 /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = C75A86B18664AF17C832083530EBC07C /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - B04CEF80BEC79CF16F7F02CE5721C583 /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 47509D15028B1CA058D32CA13B8666FB /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0649287E8C6F9F4101DB57FDFBDC5E2 /* REANodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6480A035FDCAE96B58C48CA7F315D431 /* REANodesManager.m */; }; - B08723295CF1ABDFD21CDF13AABF493B /* BSG_KSCrashSentry_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = DE28BBB1276CDE8D23BCA233CC99E240 /* BSG_KSCrashSentry_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B09A5710D9729BFB90BA5D44E43882B9 /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 493B0A519C945C32863CCC3752FB6F29 /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B04CEF80BEC79CF16F7F02CE5721C583 /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 233FECEF1AAAE50F2AE5315510F92514 /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0649287E8C6F9F4101DB57FDFBDC5E2 /* REANodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D2769D9DB4B1CBD4E7DB9C6999667E1 /* REANodesManager.m */; }; + B08723295CF1ABDFD21CDF13AABF493B /* BSG_KSCrashSentry_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C4321BC4A132B3112F042E5A4BEB420 /* BSG_KSCrashSentry_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B09A5710D9729BFB90BA5D44E43882B9 /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 502610B461EA2D1A026F2B01243AC74D /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; B0A3C69022AD615CB02C44BEF92F0456 /* FIRInstanceIDTokenManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BD2D19249B0E5F20B228D7924697E712 /* FIRInstanceIDTokenManager.m */; }; B0D9EA67A437C2D4F14606D128C1A666 /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = 19C61133E42FEBE0031138AEB2C96709 /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B11CA48DA91BE9D78A09D892242DB4C8 /* RNJitsiMeetViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FE22CAD0C10E2197AB90FCECDE48AD6F /* RNJitsiMeetViewManager.m */; }; - B1208ABEFA22504998B800C8C953EEED /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F8B76502130DCE8FFBDE5B203C05202 /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B11CA48DA91BE9D78A09D892242DB4C8 /* RNJitsiMeetViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 502EC837155ED714DF23FB05FBC35B3B /* RNJitsiMeetViewManager.m */; }; + B1208ABEFA22504998B800C8C953EEED /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DD3CB396B1E0BC01001BDFCBB89C6BD /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; B19E284EEDADC2AAEB838E15A544C93A /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 001B7F2F6A312651D3606F252836C2F5 /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - B1DB90F700D05E9EC43D79B1399D0EC9 /* BSG_KSObjC.c in Sources */ = {isa = PBXBuildFile; fileRef = E57B61D917422FCC8BB714C6D43CAF88 /* BSG_KSObjC.c */; }; + B1DB90F700D05E9EC43D79B1399D0EC9 /* BSG_KSObjC.c in Sources */ = {isa = PBXBuildFile; fileRef = B209B9F601D63E666CAD8C90CAC0B43E /* BSG_KSObjC.c */; }; B20F5C555A167E5A8977D22CD4C73279 /* FBLPromise+Recover.h in Headers */ = {isa = PBXBuildFile; fileRef = 81CE6C1BD2CD84627ACB2375ECEDDBF0 /* FBLPromise+Recover.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B21256C8EBEE862EB6882960A9A8FDA8 /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 76EE11B53ECF038B91DB707CBB618F95 /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B21ED47165915C21EF394F4CA8C6DE71 /* RNFetchBlobRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = CB2FAC3D6885A0D52E1EF69887F9E7BE /* RNFetchBlobRequest.m */; }; - B22B2FBBAE4A514F037B5880645E56BD /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = FD39BEAA0C9C24C04CD7EF232446E9DE /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B21256C8EBEE862EB6882960A9A8FDA8 /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 515A22978278B8552B18FDDF1FBA5AF8 /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B21ED47165915C21EF394F4CA8C6DE71 /* RNFetchBlobRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = B7502A35843D4D02AE02AA4D6FCBEC4D /* RNFetchBlobRequest.m */; }; + B22B2FBBAE4A514F037B5880645E56BD /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = B5D0F0CB7563A5D8E055CE05B4F8A3A2 /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; B2698816BE03D78D782DF5520083AA26 /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1E98A139B0A1E84E12ACFECE2DCC7BC /* MallocImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B27BA7F21D6F636713330F5EC0FD8633 /* REAConcatNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 51FE99C186FAFDE2DE32D2A15112FE62 /* REAConcatNode.m */; }; - B2AC693FDD557631F17664DA2A56B3DE /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = B3690FB9D860840F6DDEEC034869D8BB /* RCTAnimatedImage.m */; }; + B27BA7F21D6F636713330F5EC0FD8633 /* REAConcatNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 16F343A73D8A9CB64F3C45BCDBA495FC /* REAConcatNode.m */; }; + B2AC693FDD557631F17664DA2A56B3DE /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DBF282DA8760EFB4100EDA72085C8D0 /* RCTAnimatedImage.m */; }; B2ADBA919A83F3489D1643A24A241C8B /* FIRConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = A85363A0C59C12E9ABF0D991127F666D /* FIRConfiguration.m */; }; - B2F9BCDF64953778607DF09F5E955CEC /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = 92313FE1AAEFAC337407AC82B920B585 /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3547BB056E15E18329646D317844CFF /* KeyboardTrackingViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A9591959FA5B1AFCBDC72A739EF39A9 /* KeyboardTrackingViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B2F9BCDF64953778607DF09F5E955CEC /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = 66FE792892A7EBA79A71E33AA48E556F /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B3547BB056E15E18329646D317844CFF /* KeyboardTrackingViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ECC314D558F5DF672D18C790519C8D94 /* KeyboardTrackingViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; B35D3DBB0E94D8ACB23B7012751A55A6 /* GULSceneDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = E73C501A0EB747305BB4AAD7978E3E0E /* GULSceneDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; B36EBDF74E3D52A6C4D123C1561A79A8 /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EE8ED7B82F5E3A7EF109FDD2E17A97F /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B38F0F004105D71E61A479969F1D0E00 /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DCE3FF459B64EAA9845981585067DB6 /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B38F532404A131A6F67FE5B32AFFB7FC /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 6920C02A5F5956A0390264E640C0B9EF /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B38F0F004105D71E61A479969F1D0E00 /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 91A9B7A30D4D872C8EC76F32B87D2FD1 /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B38F532404A131A6F67FE5B32AFFB7FC /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 058D28B4A68C709F7AA6A06D8A25D3F3 /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; B3B8A27F13994D822A962EAD1C8EA1F2 /* FIRInstanceIDCheckinService.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DF066F20D14665E0A04D678CAD81F85 /* FIRInstanceIDCheckinService.m */; }; - B3C7D46AE1B201A79C73C5CDF1F4BAF8 /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 96371E20F6001DD2B4574720BC9BCCD8 /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B3C7D46AE1B201A79C73C5CDF1F4BAF8 /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = C452BF0E9DD1DEB06C0598D01E65657B /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; B3DA463FE22DD22C783EA37F931CEFC9 /* FIRLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = A38D33F827E62F685D432C9A01C918E6 /* FIRLogger.m */; }; B41645C71E5790030A867FFC4BC9BB6A /* SDInternalMacros.m in Sources */ = {isa = PBXBuildFile; fileRef = B7619685EB70998E0F7EC8865DDD7D94 /* SDInternalMacros.m */; }; - B41D1BE775A5E1E71F079E1661B1553C /* EXAV.m in Sources */ = {isa = PBXBuildFile; fileRef = 50381F0689C5591A2CFA421478473E73 /* EXAV.m */; }; - B447FD3316D3F3F80C80681F17A5014C /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FACD549F1023633C75B5539EDE4B196 /* React-Core-dummy.m */; }; - B4681C085E07706AAD0AC18E0183E0ED /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 7377EDAD93DD9230D8AE5DCD1AE71EA6 /* RNGestureHandlerRegistry.m */; }; - B46D8BAE4C9ACE396EE6E38D21C53C39 /* FFFastImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = F8F3511A7A0CDB5CD0A574DA1AAA97D1 /* FFFastImageSource.m */; }; - B4739208CCD185642B0D5DCC2FC489E0 /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = D213D5F3E331581204D69F5D544E0DB1 /* DeviceUID.m */; }; - B477E0D3D5EAB635D2E8C8EE9E00B846 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 28EA5D81C0557F3EC54098EF5A43E525 /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B41D1BE775A5E1E71F079E1661B1553C /* EXAV.m in Sources */ = {isa = PBXBuildFile; fileRef = FA31E7A7AB0C7A25E10AC0266F01FFDF /* EXAV.m */; }; + B447FD3316D3F3F80C80681F17A5014C /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AA3E3F6E87FB7BCB39803BEBA093109 /* React-Core-dummy.m */; }; + B4681C085E07706AAD0AC18E0183E0ED /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = FC7349EEC7FB241A0DBF3CD9AA3FE736 /* RNGestureHandlerRegistry.m */; }; + B46D8BAE4C9ACE396EE6E38D21C53C39 /* FFFastImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = CBC8978F7A2DBF3D6A595470001EB888 /* FFFastImageSource.m */; }; + B4739208CCD185642B0D5DCC2FC489E0 /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = 74FA0DFB857F49DD1B0057076D9CE528 /* DeviceUID.m */; }; + B477E0D3D5EAB635D2E8C8EE9E00B846 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C0D335F37A02AAF91899A2D661D3AFA /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; B4BCAA9AED1573D9C7E81E425A8973F9 /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AB686584E542E1751A41715CD307E524 /* SDWebImageManager.m */; }; - B4BD045C0010A019A59B05DB94275A55 /* REAJSCallNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B38DB33F670C531001C821BB7D7613C9 /* REAJSCallNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B4E253A8AA7AE36273D3CF133550408C /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E7258DE9C05C4BAE7DD514FD591319E /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B4BD045C0010A019A59B05DB94275A55 /* REAJSCallNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B6A35BC8425A69E745CA3D09657EF2EA /* REAJSCallNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B4E253A8AA7AE36273D3CF133550408C /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = B32D5B813D502A8FD58C0B0A8966E345 /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; B50CA038F8C99B2EBF848F62A29A94B3 /* SDWebImageIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = 63B31FE76518F6AD1B9C7FC4FC3BE0FD /* SDWebImageIndicator.m */; }; - B50E9E916BC2CAF92872002BCDF0158A /* BSG_KSSystemInfoC.h in Headers */ = {isa = PBXBuildFile; fileRef = D9A54AB4A1997122697189E04B718260 /* BSG_KSSystemInfoC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B50E9E916BC2CAF92872002BCDF0158A /* BSG_KSSystemInfoC.h in Headers */ = {isa = PBXBuildFile; fileRef = 955D77FB666FAF9BE8FE7B657B256897 /* BSG_KSSystemInfoC.h */; settings = {ATTRIBUTES = (Project, ); }; }; B5491FA6F24FB43A5BE1DADD8C492452 /* SDWebImageDownloaderRequestModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 3912963231AA3AA7436B53843E64EE76 /* SDWebImageDownloaderRequestModifier.m */; }; B54FD5F975C9E75EA67F9D0E1939C9B5 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 34ACC90522BF9626ADB3630C6DD72733 /* UIImageView+HighlightedWebCache.m */; }; - B56C853A088A0C2731C209C818076B37 /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = D800E2B3FE000AAFFF8124764DAF574B /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B5B429926449C953C72330919CAF8420 /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 91D818B559C21A0B677C6ED9ABF5F156 /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B56C853A088A0C2731C209C818076B37 /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = FA31819E9AE01BFDEA17BCABC8327379 /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B5B429926449C953C72330919CAF8420 /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BF5624ED36A75321F4F24EAED7A7AF33 /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; B5BD49BAFD353D954E0840F64E4A2821 /* DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F78C3AEA250BDD82BE7FE666904B87A3 /* DoubleConversion-dummy.m */; }; - B5D8DB98F0DBB6D20242F47C2F812144 /* RNBridgeModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 667950671B73978D2A6FA78DD378E7EF /* RNBridgeModule.m */; }; - B5E9E6F752E4EDE32AC15703C13715AD /* ARTNodeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 097C8E97EDDEDDB179E18497993BF8AE /* ARTNodeManager.m */; }; - B5EB4E5FE1155C1296CC6743D69A3316 /* RCTImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2AB0418E50954F2E1D6D7095C7BDA27E /* RCTImageView.m */; }; - B61FD3AA8214DE7386C1FC11C8D29267 /* RCTConvert+UIBackgroundFetchResult.m in Sources */ = {isa = PBXBuildFile; fileRef = A14A41BC0F35CC63BB4C79FA41FCCEF2 /* RCTConvert+UIBackgroundFetchResult.m */; }; + B5D8DB98F0DBB6D20242F47C2F812144 /* RNBridgeModule.m in Sources */ = {isa = PBXBuildFile; fileRef = A4F5A1E99FA7D42C489D0381E573C849 /* RNBridgeModule.m */; }; + B5E9E6F752E4EDE32AC15703C13715AD /* ARTNodeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CEEA07457F9F80108524E600457D4058 /* ARTNodeManager.m */; }; + B5EB4E5FE1155C1296CC6743D69A3316 /* RCTImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 834EB2958566569C54BB3BDFDCF112CD /* RCTImageView.m */; }; + B61FD3AA8214DE7386C1FC11C8D29267 /* RCTConvert+UIBackgroundFetchResult.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D4F0910997F8C5C7D9B5773979738D /* RCTConvert+UIBackgroundFetchResult.m */; }; B65ABCAEC3B324AFF74CFC314E05D488 /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D2804B1DCF18B3386453877783E3BBC /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6842E62885EBBE6CA0C133734CBD26A /* RNFetchBlobReqBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = D0F943C780C47A9EBF2DC56C5DC75B33 /* RNFetchBlobReqBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6842E62885EBBE6CA0C133734CBD26A /* RNFetchBlobReqBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BEC8F33025EEFC8AD46D997458C4839 /* RNFetchBlobReqBuilder.h */; settings = {ATTRIBUTES = (Project, ); }; }; B6C5B18E7D63F47D4127BEFAEB0E082E /* FIRVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 41F62D04DF20EF8EB64F38D9EEEE02A9 /* FIRVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6E651E12D06D37F4E6F162FAB03724B /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = CF834FA050F757363B90E37020E1DDF5 /* RCTInputAccessoryView.m */; }; - B72B789755169C410B1BECF061D3F9AF /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B81D570093AB1CAEBE5C3DF7023DF5B /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B6E651E12D06D37F4E6F162FAB03724B /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = B26961AB7152E0E74BAD19380C69E867 /* RCTInputAccessoryView.m */; }; + B72B789755169C410B1BECF061D3F9AF /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FB5163CC84095AD8ACF8C608B1977B90 /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; B79379EE30EB5B9FAB3B9E5DDFAF509D /* lossless_enc_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 27DCBA8B031ECFD777996CDBB53368B9 /* lossless_enc_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B7960B2A4F1B3A056186D0BCD8F4EBAD /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A6F770FE653E870011DD1968291836D /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7960B2A4F1B3A056186D0BCD8F4EBAD /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A05659F0F906E80F05804D2793FA971 /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; B79E683059398347D30F641EB0D6D947 /* FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 52C28AD783EE3A1E4AB2B1A936CBEC0A /* FIROptions.m */; }; B7B1C326E18E2566E54AA59FFF788C28 /* vp8_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 0605FB329064F4B740AB3DA84343A94A /* vp8_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B7C947F92EB5B94DBE1C2920A060E0E9 /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 20D96057E8D38A7B6DA9AB4D27A89576 /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B7DFA107ED277F43F7F2BAC8F7E62403 /* RNFirebaseMessaging.h in Headers */ = {isa = PBXBuildFile; fileRef = A59C301473B1E1E55A34B7372D5F6304 /* RNFirebaseMessaging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B809511BC0E992CA4B37C5D757DD2C64 /* REATransitionAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = F5BF7947C5E5872211B056BE23B79E74 /* REATransitionAnimation.m */; }; - B80A5602ADDC9557632BB5C6BCB3DB03 /* UMErrorCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = D3361AEBF5A9BBEC8490AE74D6138124 /* UMErrorCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7C947F92EB5B94DBE1C2920A060E0E9 /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = FE024E817AC1A13A002CF2102FBF3444 /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7DFA107ED277F43F7F2BAC8F7E62403 /* RNFirebaseMessaging.h in Headers */ = {isa = PBXBuildFile; fileRef = C3893067B4ECFFA8C4C9CC8A8D5966EE /* RNFirebaseMessaging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B809511BC0E992CA4B37C5D757DD2C64 /* REATransitionAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 644EF624B21614E883715488CDB1713E /* REATransitionAnimation.m */; }; + B80A5602ADDC9557632BB5C6BCB3DB03 /* UMErrorCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = B8913B693F912E6D545EDCBEB75161E5 /* UMErrorCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; B8317134B45F9440FFFEFF835F1613A9 /* common_sse2.h in Headers */ = {isa = PBXBuildFile; fileRef = EAB62C963029E8092CA65348E89AD1C6 /* common_sse2.h */; settings = {ATTRIBUTES = (Project, ); }; }; B857674D187E7ABB87D048F32DE47BC6 /* FBLPromisePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = B1E3B9B644AA67562AB8AF3F6ADB7F0C /* FBLPromisePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B8617288EFCE468DB38E1199D2D60E6D /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 61C9B216C92568737B785186186A9B84 /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B86839393350454EB6F1E7EBA54DAE28 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E11454A993825D86B3E0E01F922AE39 /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B8D8C37B58433010A2274C85315B9083 /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1DB7F9426084901C06D6B3D810431E36 /* RCTBlobCollector.mm */; }; + B8617288EFCE468DB38E1199D2D60E6D /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 72F3A429601F66AEEBF3B565EEDF1F41 /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B86839393350454EB6F1E7EBA54DAE28 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = EF2C901FE1223174D8B3A6746858D656 /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B8D8C37B58433010A2274C85315B9083 /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 49081BDA96EB16FA72B9EF7FA37F10AF /* RCTBlobCollector.mm */; }; B91E70B671250005FA74AD2BC312CA08 /* libwebp-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7290A8B4E4F31EF8E2A4BB18F88F59D6 /* libwebp-dummy.m */; }; - B9405D10CD2B01033E11D8E45E3994EE /* RCTVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A2F7C5A9ADE12C4E3B2379C05BAEF3D /* RCTVideoManager.m */; }; - B943D1C92F92A10B5D06036C8BF5BCD8 /* RCTNativeAnimatedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = D5A49F2B64B42B33B05ABF1023488437 /* RCTNativeAnimatedModule.m */; }; - B983A666B5D2EE8BD85B91218A9E9A80 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 17B79ED9D31C625708EBCDCECF41D213 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9AE047C64E85E86C1A3F245A7DE3FAB /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E6AF3EAA1DBF0F5E8A3C0E395D9FD89F /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - B9D1154CD997F0702268F81D59B6406C /* RNFirebase-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E04865593F9BF279CAEC179AB14AA3E0 /* RNFirebase-dummy.m */; }; + B9405D10CD2B01033E11D8E45E3994EE /* RCTVideoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E8CD09B1F03524B84AE162118F5DD20C /* RCTVideoManager.m */; }; + B943D1C92F92A10B5D06036C8BF5BCD8 /* RCTNativeAnimatedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 4650D690BA6630C497BA5400ED547938 /* RCTNativeAnimatedModule.m */; }; + B983A666B5D2EE8BD85B91218A9E9A80 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 493FAAFD3937E8A839C0988482F7CEB9 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9AE047C64E85E86C1A3F245A7DE3FAB /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B7550E92A5666A5FC9463EE29F908187 /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + B9D1154CD997F0702268F81D59B6406C /* RNFirebase-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A1D215EB5CC4FA8B549778DCF215A5C /* RNFirebase-dummy.m */; }; B9D989270BF39444739B9D53F28332CB /* cost_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = B59C6445493BACD5876AA3D8176366EB /* cost_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - B9E9A4C8414CC010B04907511592478C /* RNFirebaseCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 59FDCB7424AA5FAA3D4FB6C98D2EE3C2 /* RNFirebaseCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9EDCDF3FAC046611DB90A9950FC0F52 /* RNFirebaseFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = 55F1CA98B31C6CECD26788DBB866F396 /* RNFirebaseFirestore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9E9A4C8414CC010B04907511592478C /* RNFirebaseCrashlytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 03C581B5EAD8C9A859EE4A56D56414BA /* RNFirebaseCrashlytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9EDCDF3FAC046611DB90A9950FC0F52 /* RNFirebaseFirestore.h in Headers */ = {isa = PBXBuildFile; fileRef = 60163513AA98DAFFBB8096351DCE81C1 /* RNFirebaseFirestore.h */; settings = {ATTRIBUTES = (Project, ); }; }; BA320783C2C9624896E06C34E9BF688F /* vp8i_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 37AECEE6AC0671E260C2B1BE9B3738AD /* vp8i_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; BA5E0CA71A36D82490FA1A0B3127E89D /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = FD463EFB922CF38263587F78A3E403E1 /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA9BA30EE97ABF955C4E454A06AB1466 /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = FA0DD548DE56BA239C0A46C2BE7642D6 /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA9E8B725B9A8CD23FBF15614C59F41F /* BSG_KSMach.c in Sources */ = {isa = PBXBuildFile; fileRef = CBD4C75C67DACEA8016654464B69DF3D /* BSG_KSMach.c */; }; - BABE71176BCA0F6279AA9F637CA91055 /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = B207D4D004C38866ED1F31D7485BF0EE /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BAC64044E2BC58CB9EBE5EB147C69F81 /* ARTShapeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FEEC298910EC23DF638A069E787F9F14 /* ARTShapeManager.m */; }; + BA9BA30EE97ABF955C4E454A06AB1466 /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = 8089F7AB55E384041ACDDF19E78F1B60 /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA9E8B725B9A8CD23FBF15614C59F41F /* BSG_KSMach.c in Sources */ = {isa = PBXBuildFile; fileRef = 19FB76F75E765847C76B32E82B7FD006 /* BSG_KSMach.c */; }; + BABE71176BCA0F6279AA9F637CA91055 /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4265EE4EF3E088E3BB46CCEEF6C01DD7 /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BAC64044E2BC58CB9EBE5EB147C69F81 /* ARTShapeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A26988C43DEAD2433F7FDAF9DAE8BF2 /* ARTShapeManager.m */; }; BAEEE054038206EBD438E6D6B42BF6A9 /* SDImageHEICCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 264FC1F2B694A07F9E99ECECA1434258 /* SDImageHEICCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BAF0F3643FF6537D18C0C4D20C0DBB98 /* BSG_RFC3339DateTool.m in Sources */ = {isa = PBXBuildFile; fileRef = D4D5AA359E271AF660DC523DE65B7185 /* BSG_RFC3339DateTool.m */; }; + BAF0F3643FF6537D18C0C4D20C0DBB98 /* BSG_RFC3339DateTool.m in Sources */ = {isa = PBXBuildFile; fileRef = F98E9A2244FBE47544AD9A5D8A263A1D /* BSG_RFC3339DateTool.m */; }; BB02801B51A949379B60DD90295B9ECE /* FBLPromise+Await.h in Headers */ = {isa = PBXBuildFile; fileRef = CDAD3963A0F8EA40EAE6B916D5AA0A1F /* FBLPromise+Await.h */; settings = {ATTRIBUTES = (Project, ); }; }; BB0C45D3B6615D75A9A0E3E3B31D5F63 /* SDWebImageCacheKeyFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C366C49F593DF61C1B36CA3537E513C /* SDWebImageCacheKeyFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB5703CC5A171DC2B6CEDF71E4748D94 /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = FF3B4CF63FA866DA003B4BB5AE662AA8 /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BB5703CC5A171DC2B6CEDF71E4748D94 /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = B9DEA0BF498BD7640F87AD72AD51B60C /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; BB72C52113C41EE2194D3A3EA913DC69 /* webpi_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = D91483DC2ACFBE14D934FB42131A0745 /* webpi_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; BBB9BBD85FD78B7232142ADE3AD15BD0 /* SDImageWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 4539E3108AC9825410E6FE95CBEB6EA7 /* SDImageWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BBDB8085D34C1BA129E1735348672A38 /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EDD351E252D6E2DCABF20169A03E57AA /* RCTMultilineTextInputViewManager.m */; }; - BC323EC0EB4DA913977AF3EBC1C66254 /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13187CC7C3D18C84AA6A39297545EC1C /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BBDB8085D34C1BA129E1735348672A38 /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BF6358AB6D9E2F28FC1C6424EDB2840A /* RCTMultilineTextInputViewManager.m */; }; + BC323EC0EB4DA913977AF3EBC1C66254 /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8F05191A1FFA378F8D0BEFACAF94CF16 /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; BC383056F1DB2F7478B30CCF6FFE5F60 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 1999800C3B5B4E5C0A32818F3D47D45A /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC6530F3F8CE6345A867199080359250 /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D3735CCB8DA31F96E2BA25454CF400A /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BCE4A2AF4D01811C7693014AE1612E24 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 2B226E0039F6FC461896FA197B68FF24 /* en.lproj */; }; + BC6530F3F8CE6345A867199080359250 /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BBFB7DF029570D3DA89F4EA8867EED8 /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BCE4A2AF4D01811C7693014AE1612E24 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = FC5E2D8319B283B8962747D1ED57C037 /* en.lproj */; }; BCED26E631DA2A5593A277A7D1E02963 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D9558B896F99A90A93DC099BD7C8D88 /* UIButton+WebCache.m */; }; BD1D9E289B85888E5A0DA85BFDB7A306 /* common_sse41.h in Headers */ = {isa = PBXBuildFile; fileRef = B298AD16DF9C7781D252AE8F6F69B0B4 /* common_sse41.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD4338E90B5A16B6947BCA512B8F86AA /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 686B2034BBE247CCD34FA7167EE6C12A /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD4338E90B5A16B6947BCA512B8F86AA /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B3147B54DEFE43FB858A7D64F5171C34 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; BD5367AA54AEAA782DE3C4CA57CFECD7 /* GULReachabilityChecker.m in Sources */ = {isa = PBXBuildFile; fileRef = A2894FAA81841C7DE26398644B1F3ACD /* GULReachabilityChecker.m */; }; - BD5CFC11C49F0BB6ED6DE6C3B88A3B5B /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 91A9F86D9F4B6D78014A5ADCA5CABB6E /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD79F6B65349C921CE308EDC53DBFED7 /* RNCWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D07B75AE3686300BD233A5F693F02A6 /* RNCWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD5CFC11C49F0BB6ED6DE6C3B88A3B5B /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = A1F900E624E4F67AFB7FA81DF7F85E61 /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD79F6B65349C921CE308EDC53DBFED7 /* RNCWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A67CFD126B01032A4BB740C95C4F1A0 /* RNCWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; BDCAFF93C7C58C8AD26A612B7F4D8512 /* GDTCORReachability.h in Headers */ = {isa = PBXBuildFile; fileRef = 78A5E4508694C25663685CE163B7A18D /* GDTCORReachability.h */; settings = {ATTRIBUTES = (Project, ); }; }; BE1ABF05189FFE8D346CC00A9F85EAEF /* UIImage+Metadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 6ECC10905A36138211973FA8BFF62640 /* UIImage+Metadata.m */; }; - BE1EE1B1FACDC3A698B499BB6B844904 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A5CE5EDFD4CC2026BCE5EFAD0A77B9F /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE39F1DC3D3F1C43D2DCD3DBCCF32E5D /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = E67E3486091E43C85BFCF40124719261 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE1EE1B1FACDC3A698B499BB6B844904 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D89E2A740EBF31F6D63E4CD54C4BD4BB /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE39F1DC3D3F1C43D2DCD3DBCCF32E5D /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C12EFD3064A699FE323604CCC14F491 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; BE40EDBCF4471381FF28E7701C8FEA69 /* bit_reader_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = B491F35981D199A9F597FA6ADB1CDADD /* bit_reader_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - BE66A472C87FB28630F530C61341D91D /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 579D581C9B4770A71C03452C80A3F9C7 /* RCTModuloAnimatedNode.m */; }; - BE81EB7D0762FF06B9148922F597CE73 /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = E36009054E1FFCB58DB9B3BB9714D549 /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE66A472C87FB28630F530C61341D91D /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 93CCBDDABEAE5942230CF0E025336E1E /* RCTModuloAnimatedNode.m */; }; + BE81EB7D0762FF06B9148922F597CE73 /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = EDEDC37F633DC4E7C3D71348613CEFDA /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; BE904FB7BF17A7C1AED62EE3079A1950 /* SDWebImageCacheSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E395510D11DCC7395A036D8E1F57BA3 /* SDWebImageCacheSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BEAE2BC124DD18BB39D4A17D118FA151 /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F6C6C7719EA9A81F7D8C377F9661426 /* RCTReloadCommand.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BEAE2BC124DD18BB39D4A17D118FA151 /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DDF0744665656F4901AF9C85D660756 /* RCTReloadCommand.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; BEB8A46866B0036585164D48371F67F3 /* rescaler_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 476178CDB7F6A524306920EEDD3D60DC /* rescaler_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; BEEB788D1743D4D1D9AA52C31C528B19 /* FBLPromise+Any.m in Sources */ = {isa = PBXBuildFile; fileRef = BD58A224BC63CD1E1BB8C5E6A0AC8AD7 /* FBLPromise+Any.m */; }; - BEEBCB09A0A2EF83877848B92D64AFBE /* BSG_KSCrashReportStore.h in Headers */ = {isa = PBXBuildFile; fileRef = C7D7B4FBE8105B8A8F9749C0DE0CC4E1 /* BSG_KSCrashReportStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BEEBCB09A0A2EF83877848B92D64AFBE /* BSG_KSCrashReportStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F4538B9A5DD66CFB3917610C824941C /* BSG_KSCrashReportStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; BF23FDD138C85BBD370A5B2154CEA590 /* SDAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 55172F9BCA61ED8903813A0BE84F0A81 /* SDAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF2CC947A4C41569B3A195A9B21F9713 /* RCTVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = D8EBF5FD098AF611C3BC2F90ED7D8C53 /* RCTVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF2CC947A4C41569B3A195A9B21F9713 /* RCTVideoPlayerViewControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 27641C724056FF0B81D6FAE31F26009B /* RCTVideoPlayerViewControllerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; BF3A2F2133AD7A3B2ACE6D1E132BAEDE /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F8611F8EC76BA0AD83706FBD552AEFF /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF545957D6AC7F90C6B1273591A96A42 /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = 52C9EAE00168800C327A273E11C042D3 /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF65D2EA4B15FB41B542CC4ABEF114F6 /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 987968DA8F1A1D930138205600AEF2C8 /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF6A5880435F00A13B94E354AD1306E2 /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = AFF34968982BDBCFB8E19B39698372B6 /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF545957D6AC7F90C6B1273591A96A42 /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A4F18BCCD035A3DB966FB44364322BC /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF65D2EA4B15FB41B542CC4ABEF114F6 /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = EC00180B78B1F10FA9BAA45677C192B6 /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF6A5880435F00A13B94E354AD1306E2 /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 553244C5D8BAF7E5DE26EC41D16D370E /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; BF6C73488638D5E9B195DC5890E36369 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = B2BDA968F3FED747EC612A14381CAFCB /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; BF91C4FB47A214A702EF83BCCEA1FCEA /* GDTCORConsoleLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E711CC040CB2C9B6660541E7C73B310 /* GDTCORConsoleLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; C06E0853195162D78F258D0F541B2CAD /* RSKImageCropViewController+Protected.h in Headers */ = {isa = PBXBuildFile; fileRef = 068267BE04ED7FFA08E2A827F9406A85 /* RSKImageCropViewController+Protected.h */; settings = {ATTRIBUTES = (Project, ); }; }; C0A325EF483D590E330CAE0754811F0E /* yuv_neon.c in Sources */ = {isa = PBXBuildFile; fileRef = FAEB584D2FCC43846A157044BC9D5E46 /* yuv_neon.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - C0ACB39A2A62B6BE2B02F8A7AB97A14F /* RNFirebaseLinks.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F3A0569C30CDC36BA969C3E222C2C32 /* RNFirebaseLinks.m */; }; - C0CB7350BAE204A6BD9FAB47CE2FE34F /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D8C0E9C7C4ED804863EB5057FE496D1 /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C11E5987EE418D21E6B1CF2AB4703EF5 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4899C6E11AA0D7302D047F15DDFC9A60 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C12CECE1BFC62D60E7A7F28CFEB07FA7 /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 87D65F715B53D85F2BF5E4AE697B6965 /* RCTInspector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C13607802A82E097C94614A6F16A33AE /* RNVectorIcons-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D3166CC11D7171E4EDBB61B8556955AD /* RNVectorIcons-dummy.m */; }; - C13728C0CF5BB9AC2E7C7AD120BE6624 /* RCTImageEditingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BE3583A41F596110133CCBC8DDC04DCD /* RCTImageEditingManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - C1527E631CCA0A9E697CE853758205F9 /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C3527A0392AEA73E382892C501CD079 /* RNPanHandler.m */; }; - C160A88864FE384B7BB83ADBD7CD4570 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4899C6E11AA0D7302D047F15DDFC9A60 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C183C6E11A0E0A2F431CBF0CA057B88D /* REACallFuncNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 777241DBD36766002052A8E89DE1A923 /* REACallFuncNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1A123BFA03E70A8959BBE5BFEE568C2 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = A20A1775CECF70FDB0A05B7C12A5D99E /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1B699A7F2B98F0236BD674973A9BAC0 /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = FAD2F71B23C0274678FD7F4994680EA9 /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1C07EA90BC7C396D73BFB7E2876A20C /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E2A53CB11727F0EB1B2BBB80114F6A7 /* RCTUIManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C1C42D2A161E005AC9884543F93F9990 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = CB741FE3778527A80CFC0B2A73FD5D32 /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C20D3318B5E9CD84E1EE98ABED9ED88C /* JSDeltaBundleClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1C3340033258D820E2EB245BAFEB053D /* JSDeltaBundleClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C244C4AEF749407B55BEB89F8A908791 /* BSG_KSCrashSentry_CPPException.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9408139B2A13DBE3A839E2F98232F29F /* BSG_KSCrashSentry_CPPException.mm */; }; - C2684537D71ACDD166474EDB26F48E95 /* RCTNetInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 0515730473F4E50F849E1EB2361EC5F0 /* RCTNetInfo.m */; }; + C0ACB39A2A62B6BE2B02F8A7AB97A14F /* RNFirebaseLinks.m in Sources */ = {isa = PBXBuildFile; fileRef = 7667B53E10D068E0BFA32C6B17ECCEBA /* RNFirebaseLinks.m */; }; + C0CB7350BAE204A6BD9FAB47CE2FE34F /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E5C2F8D2DDCE00D1854B6E7130E97D6 /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C11E5987EE418D21E6B1CF2AB4703EF5 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 76092B968AAC9C724EC9667F654AC5B4 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C12CECE1BFC62D60E7A7F28CFEB07FA7 /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9C9112F2E8C6E60647D2E2E444624B85 /* RCTInspector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C13607802A82E097C94614A6F16A33AE /* RNVectorIcons-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A826F40E441D4412E32324F91F36CDBC /* RNVectorIcons-dummy.m */; }; + C13728C0CF5BB9AC2E7C7AD120BE6624 /* RCTImageEditingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2930A500E273DC05E1A45287FE4CA79F /* RCTImageEditingManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + C1527E631CCA0A9E697CE853758205F9 /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C0F9B2DA9AFD56D2F2E9B9C75991BF6 /* RNPanHandler.m */; }; + C160A88864FE384B7BB83ADBD7CD4570 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 76092B968AAC9C724EC9667F654AC5B4 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C183C6E11A0E0A2F431CBF0CA057B88D /* REACallFuncNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C1F00D3D631186E5C30E5082F7B76425 /* REACallFuncNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C1A123BFA03E70A8959BBE5BFEE568C2 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = C1B98CFF2D3F49F6DFED56367DEDF379 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C1B699A7F2B98F0236BD674973A9BAC0 /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = A0C2CBE489F6BE8623AF5ED5DC1FB0B1 /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C1C07EA90BC7C396D73BFB7E2876A20C /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = ADE425CCA9AB4117146451CCF94F2C89 /* RCTUIManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C1C42D2A161E005AC9884543F93F9990 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = A79E5957E608E87CB9A07FB2D9B74357 /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C20D3318B5E9CD84E1EE98ABED9ED88C /* JSDeltaBundleClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A7AEBA9C7FF343E5421EF7F9BFCC694 /* JSDeltaBundleClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C244C4AEF749407B55BEB89F8A908791 /* BSG_KSCrashSentry_CPPException.mm in Sources */ = {isa = PBXBuildFile; fileRef = 630934A42CE715B3E03D88D2901ACCFB /* BSG_KSCrashSentry_CPPException.mm */; }; + C2684537D71ACDD166474EDB26F48E95 /* RCTNetInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = BC4ECBA43FFB94EB36805D34F4A53EF5 /* RCTNetInfo.m */; }; C26A8A38E4FCFA0A1C3BE2AFC067F378 /* FIRInstallationsVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 81B9283887252C3A5BFACBC794BD9596 /* FIRInstallationsVersion.m */; }; C271EC3CEE125456B9023EF221D3BDF2 /* FIRInstanceIDTokenDeleteOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = D00145960C57E93C0FE7769437FEFA04 /* FIRInstanceIDTokenDeleteOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; C286C22537607F78CDEA71274AFEA354 /* SDDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F19DADEA197E3EB0A522E8E1D520775 /* SDDisplayLink.m */; }; - C29A733CDEBD3A9A2574F947537CEFB2 /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = DB72DE39D34AA04FAB7559A9059240F1 /* RCTEventEmitter.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C2DAABCFA14AF3B14F81C7763C0E9B44 /* REAAllTransitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 8699EEB9603351EF2A61B531B0CA9064 /* REAAllTransitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2FE5A4BD90912BBC15DF5CC9C172146 /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 346FBBEDAD78CD39B96FC164376DAFBB /* JSExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C30309C9191A34D7D22A2256EC998ADA /* Pods-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A03EB9B87FF49512AC6907C1B9AA221 /* Pods-RocketChatRN-dummy.m */; }; + C29A733CDEBD3A9A2574F947537CEFB2 /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D52B9F53E90E46BB7BC2868DCD0ED49 /* RCTEventEmitter.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C2DAABCFA14AF3B14F81C7763C0E9B44 /* REAAllTransitions.h in Headers */ = {isa = PBXBuildFile; fileRef = B1817447D08BB116B2B09ECD993E1770 /* REAAllTransitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2FE5A4BD90912BBC15DF5CC9C172146 /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9F11B9FBA50006F16241B643CC14A271 /* JSExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; C3349FD62950CE68B534E08E98989248 /* filters.c in Sources */ = {isa = PBXBuildFile; fileRef = E154067690FE650334C7C3D34DA323A1 /* filters.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - C34CB0B8FFE337C549DD2A9F0D84B82A /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = F826F239F1818333D62B2F541F75E4C6 /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C34CB0B8FFE337C549DD2A9F0D84B82A /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = F1FCB8B8C78B3CC67C0B2905CCC4AAD7 /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; C376B5C079A3D667D292AFCE36995859 /* SDImageCacheDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = BE710B81BB8CB34A3D44E178C59ED0D3 /* SDImageCacheDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; C3A358A8B68EB87FA331A54416E3E092 /* SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F09D66808FCE05691A438366BC25B746 /* SDWebImage-dummy.m */; }; - C3EAD7F273D022D02D3403E9015A8523 /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = BA39FCE7B7D6C4634079B04809C889B0 /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C45AD96F1A0B37D92B6961C3CE437CB8 /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FE54087BE46CA64232A2F8C9CA43E859 /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C479D38C287606B149EAD8AF8F0532B2 /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = E94F324617435A6F3AE226340AC96FAE /* QBSlomoIconView.m */; }; - C4A2F95818E70C18AF66DFAFDB40D431 /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 23B6D424AE8030B661B6ACEC3201FD55 /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4C0690D0CC7D0EFC458CE9E1C67B9A2 /* RNJitsiMeetViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D505E718CCB16E5F1E3896B054005DD /* RNJitsiMeetViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3EAD7F273D022D02D3403E9015A8523 /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 59A2B19434A72F254FE6595D38FB8712 /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C45AD96F1A0B37D92B6961C3CE437CB8 /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D1A4AD2BE6B55C9529F2FC6474C850EA /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C479D38C287606B149EAD8AF8F0532B2 /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8525930F3F8CD3EBD6DA4389DD5C0EF7 /* QBSlomoIconView.m */; }; + C4A2F95818E70C18AF66DFAFDB40D431 /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = D419A92B054E897166C3CEFC94079EF0 /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4C0690D0CC7D0EFC458CE9E1C67B9A2 /* RNJitsiMeetViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 91D9E1D0C746C2FFBD68E1A7367EC6B7 /* RNJitsiMeetViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; C4EBF0D56475CB1644E5164352A24BD5 /* FIRInstanceID+Private.m in Sources */ = {isa = PBXBuildFile; fileRef = 36585169EB94500CF044692BF107C3A0 /* FIRInstanceID+Private.m */; }; C5114FB6C46BCF309214DF7E7D17C471 /* GDTCOREventTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DBFEEEE8490B0AEC5A93E092F2857A5 /* GDTCOREventTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; C51C3D70CCB9260030FA831AF35788CC /* pb_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = B72D2A1AFE5D8CB8AE76AADD8B87B42B /* pb_decode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - C54354698BDAC62A3BD74819A4F3A2F8 /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = 11149B0B1D22FEDD1C67330D28A66FB5 /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C546F80F28448E4840B54656FED5B9C0 /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 61B19A58B1992BF0BC549A46F9ABC77E /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C57BE850AD61F126370C11804774D465 /* EXAVObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ECC4817DED5EF3C8305E0B1E51CAB24 /* EXAVObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C54354698BDAC62A3BD74819A4F3A2F8 /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = E0BC4658ED68247F4D86F89624EC6C18 /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C546F80F28448E4840B54656FED5B9C0 /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 363F1EF00EC3F453493AAD41BD955E61 /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C57BE850AD61F126370C11804774D465 /* EXAVObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 06A23A775D0C745D7DE8C3DDEC5797F7 /* EXAVObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; C5A7EA3714C687D6888782149F9AD31F /* FBLPromise+Always.m in Sources */ = {isa = PBXBuildFile; fileRef = C06F60B264CEB19482C4DFD3476D64D2 /* FBLPromise+Always.m */; }; - C5B6D6D972FDFA5C328D46C038C831F0 /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDF8EDC8A430227FDC0B35718C308F93 /* jsilib-windows.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C5B6D6D972FDFA5C328D46C038C831F0 /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 315204E8FD52FE3A3515BE4EE234DEA1 /* jsilib-windows.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; C5D9146DE660B22941C6086F34A47E37 /* GDTCORUploadPackage_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B6AE09786B2423B11C27D00079FCE17 /* GDTCORUploadPackage_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C5E72E14D8CFFC9470A4CCF50E4F7446 /* BugsnagReactNative-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E2B626E47713C2DEB8148BA80D9F138 /* BugsnagReactNative-dummy.m */; }; - C61D07BBE1FA5ED2C4AB03C96D9A2F8A /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E24183C28FE5CE42D1500250E20C5090 /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6392E335499D2C84212964C3C05A577 /* BugsnagSessionTrackingPayload.m in Sources */ = {isa = PBXBuildFile; fileRef = 37621F2F3B0BD572AD1150B50770284B /* BugsnagSessionTrackingPayload.m */; }; + C5E72E14D8CFFC9470A4CCF50E4F7446 /* BugsnagReactNative-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D8806E6C372CF900927E6CE9A7101DAB /* BugsnagReactNative-dummy.m */; }; + C61D07BBE1FA5ED2C4AB03C96D9A2F8A /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 92AAE233471128F7AB697528E5779C4F /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6392E335499D2C84212964C3C05A577 /* BugsnagSessionTrackingPayload.m in Sources */ = {isa = PBXBuildFile; fileRef = D69E6F757132D77434CCCF83F16CEB51 /* BugsnagSessionTrackingPayload.m */; }; C65E95799529526B6E7D878BE5A8C15A /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = EEE7EDE32D47E34C402A333EA97DECAB /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6B6684C3D88C826389C24634EC328EC /* RCTTypedModuleConstants.mm in Sources */ = {isa = PBXBuildFile; fileRef = C1045733D4EEFDFE0FBD40488F4887CD /* RCTTypedModuleConstants.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + C6B6684C3D88C826389C24634EC328EC /* RCTTypedModuleConstants.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8ECEB4113FAE0A630DB0A48789C04434 /* RCTTypedModuleConstants.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; C6D0C80B1F5469299A9914D27C84BD2C /* FIRInstanceIDURLQueryItem.m in Sources */ = {isa = PBXBuildFile; fileRef = D53CE5F9F1B3C1396FB3444A3DC670B0 /* FIRInstanceIDURLQueryItem.m */; }; - C6D1392176223C7A48AF027E57177FE9 /* BSG_KSCrashDoctor.h in Headers */ = {isa = PBXBuildFile; fileRef = 58E58CB3CE5773B6B498DDE3F5159735 /* BSG_KSCrashDoctor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6DEF164A573F8287A635565DD249709 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = F2E3AA5EABABDF42ADB808D688164FA4 /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6E12490D93786594E537BE98FC35205 /* RCTNetInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = A0969EF9EEFF594E26EF1F633AD89612 /* RCTNetInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6D1392176223C7A48AF027E57177FE9 /* BSG_KSCrashDoctor.h in Headers */ = {isa = PBXBuildFile; fileRef = EF70D54EF4C3182ABD88763F3D049CE7 /* BSG_KSCrashDoctor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6DEF164A573F8287A635565DD249709 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = DDDC95FFE0C6C7B2851FD524684F54B0 /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6E12490D93786594E537BE98FC35205 /* RCTNetInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = AFAAD27A524D6E425C12216C7F486100 /* RCTNetInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; C742507D7BE5A255918244DACF09664B /* FBLPromise+Await.m in Sources */ = {isa = PBXBuildFile; fileRef = 459EF69C87F0423DE3DAFA049CEC05EC /* FBLPromise+Await.m */; }; - C75E4435E4A6F4E4F77E7B11B6B93DCD /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D89A2992BC35577A4DC64CAE8550A305 /* RCTNativeAnimatedNodesManager.m */; }; - C78C8A90CCE1F00A747F50135C11A8BE /* RCTLinkingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EF9D16860EB5FA761348FDB4DC91DBAF /* RCTLinkingManager.m */; }; - C79294613B7092A89E272A0F5BE8FE3A /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BAD23D7E9A015D36D9070DC74C9C9EB /* RCTSegmentedControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C7A978DE2F048385786BB530A47BB2DB /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = D659AF6E9E8DECF87C08F270451E7140 /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C7B3587D484D82AF3247A699972D2A1A /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 205726300BC482B3679A13F3CF37823B /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8294A3AFB454918E426906BBF91A803 /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = 303DE418C5DFB23A4BD54D9484505CE8 /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8366575C514F3D18B718B19878DDFCB /* BugsnagBreadcrumb.m in Sources */ = {isa = PBXBuildFile; fileRef = F6FBBE3D5E15F36C5BA91A0CFBA40A42 /* BugsnagBreadcrumb.m */; }; + C75E4435E4A6F4E4F77E7B11B6B93DCD /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A20CC0982D78D08FA3BD84F1E518DA51 /* RCTNativeAnimatedNodesManager.m */; }; + C78C8A90CCE1F00A747F50135C11A8BE /* RCTLinkingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 04B0350A98F7FD6735CBAA7A93BD01B1 /* RCTLinkingManager.m */; }; + C79294613B7092A89E272A0F5BE8FE3A /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CE1B26244BAE7DEC268FC99D1DB1116 /* RCTSegmentedControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C7A978DE2F048385786BB530A47BB2DB /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = 1511DFEB994E187AFF9521845948D37C /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C7B3587D484D82AF3247A699972D2A1A /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A3048046DC7897AAB75AF6BF02C67B3 /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8294A3AFB454918E426906BBF91A803 /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = D11A35222301EF61F70E1A10283069EB /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8366575C514F3D18B718B19878DDFCB /* BugsnagBreadcrumb.m in Sources */ = {isa = PBXBuildFile; fileRef = B227F9FBEF5FCD2024E1ED599955D36D /* BugsnagBreadcrumb.m */; }; C856EFB68D99D6BCB7520D35888D15A3 /* FBLPromiseError.m in Sources */ = {isa = PBXBuildFile; fileRef = FE99DA2A671583AFDB9A25490E656721 /* FBLPromiseError.m */; }; C8A1E2B5B461F13C1F45D6B15FFD6DE8 /* FIRLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 5844E9E8BBD906339EA96EF1BD79326F /* FIRLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8D012D66025AB92F9FDC8208D69D2FB /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 58B882052DCBD50DA678B25F6F262911 /* RCTMultiplicationAnimatedNode.m */; }; + C8D012D66025AB92F9FDC8208D69D2FB /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F4E632D2E19B3B79DF2C310705D42BA /* RCTMultiplicationAnimatedNode.m */; }; C8E92C9357E3EC80CA4AA1FE9C8A3E35 /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B8C2145C378EBCD15C3B414625FD2D0 /* NSButton+WebCache.m */; }; - C8F5AE3DE1F7A264D3C7EB9F1168625B /* BugsnagKSCrashSysInfoParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 85ACC6FC263C769CD048E0E6F8D3BA1B /* BugsnagKSCrashSysInfoParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C90AFF718E45E2616D23519AC26AD09A /* UMAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 180207D5E7C1DB8FC8ABD08CD4D5FAA3 /* UMAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C91A80302343239A6EF2EA1AD3B2D760 /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = FE527001EC2F2CCA758ED3F7856D747B /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C940D03C9052AA2516156A393AFB5D41 /* RNFirebaseRemoteConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = CD49EF6D76776DC6E5F1F172C0945E8E /* RNFirebaseRemoteConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C94909826EB31FE3C9016B6E13C2FCF6 /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = F373098BBF8F71646B24E94909B78342 /* UMViewManagerAdapter.m */; }; - C95C8066C336E2C233D889A4AA7BF555 /* BSG_KSCrashSentry_CPPException.h in Headers */ = {isa = PBXBuildFile; fileRef = D66B5E4A692DDB48B6E24A697D6489FA /* BSG_KSCrashSentry_CPPException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9D6F1DEFE0BC49C87D941B8CEDBCD01 /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 078DCD749D06FF25398DB212FE097A6D /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9EB3B7BD3C03FE53AD3B843B3B6B185 /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = B006FACD73AA8737DCDB4B87F42C1DCE /* RCTConvertHelpers.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + C8F5AE3DE1F7A264D3C7EB9F1168625B /* BugsnagKSCrashSysInfoParser.h in Headers */ = {isa = PBXBuildFile; fileRef = EE4BB4E7E0A00A40A77D9D5C97FE5D0F /* BugsnagKSCrashSysInfoParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C90AFF718E45E2616D23519AC26AD09A /* UMAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = C29FD71196E223C3E2239356CC16DD9D /* UMAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C91A80302343239A6EF2EA1AD3B2D760 /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = C59A44A3836E48A3D9E63963E2681D6D /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C940D03C9052AA2516156A393AFB5D41 /* RNFirebaseRemoteConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 13F2CD272CBA0C054B3D23053F74F0C0 /* RNFirebaseRemoteConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C94909826EB31FE3C9016B6E13C2FCF6 /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 77060C09E6D87AD7316709FF3E32F992 /* UMViewManagerAdapter.m */; }; + C95C8066C336E2C233D889A4AA7BF555 /* BSG_KSCrashSentry_CPPException.h in Headers */ = {isa = PBXBuildFile; fileRef = C95C4506AB6B5CFC28D1AEDBD48CAF91 /* BSG_KSCrashSentry_CPPException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9D6F1DEFE0BC49C87D941B8CEDBCD01 /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 375E3F922217B20721576A0AC235351F /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9EB3B7BD3C03FE53AD3B843B3B6B185 /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7F031A2F61456BB1EB892DA1FED39B97 /* RCTConvertHelpers.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; CA19A520589C9D812CE9D3F6369629FF /* FBLPromise+Do.h in Headers */ = {isa = PBXBuildFile; fileRef = A05BCBED3EF0DF896274C0F7F49E194B /* FBLPromise+Do.h */; settings = {ATTRIBUTES = (Project, ); }; }; CA1E3C6D7EF76F233CB84BE0B847FE55 /* GDTCORUploader.h in Headers */ = {isa = PBXBuildFile; fileRef = E843DB2D9152A6891CEC690C8919CC3A /* GDTCORUploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA28EB9031E5E5659B2CA1F6BF10E4A2 /* RNFirebase.m in Sources */ = {isa = PBXBuildFile; fileRef = 563B523AF5F9F59912F84B869AA67C55 /* RNFirebase.m */; }; - CA5793F28513936E05309A9CBDC43D43 /* BSG_KSCrashIdentifier.h in Headers */ = {isa = PBXBuildFile; fileRef = AA9EFF9E1F58142D75197642E0C42041 /* BSG_KSCrashIdentifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA67199CAF85BD631A173567EACB114D /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CDD68563C68630F690340A3F44FCADF /* Orientation.m */; }; + CA28EB9031E5E5659B2CA1F6BF10E4A2 /* RNFirebase.m in Sources */ = {isa = PBXBuildFile; fileRef = ADE63674E150D51CE53B28AEFA23359C /* RNFirebase.m */; }; + CA5793F28513936E05309A9CBDC43D43 /* BSG_KSCrashIdentifier.h in Headers */ = {isa = PBXBuildFile; fileRef = E013C3BD3D8B32F02469CCBECB38B281 /* BSG_KSCrashIdentifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA67199CAF85BD631A173567EACB114D /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BF2B8515953DCD57957BA8EFD20ACFF /* Orientation.m */; }; CA6E8BCDD8BA3F3A19D47CFD4CA9E6E0 /* msa_macro.h in Headers */ = {isa = PBXBuildFile; fileRef = 9602665ED7A4FCF32AFDE7F8439C8C55 /* msa_macro.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA82E137ABBD7249B72E92F7D52A1A2F /* ARTRenderable.m in Sources */ = {isa = PBXBuildFile; fileRef = F35F4E9F258606BF2BE22FDCAC2B7582 /* ARTRenderable.m */; }; - CABED76FF5610C0534B090E89EA3B2FE /* BugsnagNotifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 7649CA0397FB5C42BEA02341EA1C199A /* BugsnagNotifier.m */; }; + CA82E137ABBD7249B72E92F7D52A1A2F /* ARTRenderable.m in Sources */ = {isa = PBXBuildFile; fileRef = DB5FE450AAB53AADE884BA269A897227 /* ARTRenderable.m */; }; + CABED76FF5610C0534B090E89EA3B2FE /* BugsnagNotifier.m in Sources */ = {isa = PBXBuildFile; fileRef = B98282A370896C9527343A2802D27930 /* BugsnagNotifier.m */; }; CADE8DAB6C036105B2CDB8BB6E0718F6 /* FirebaseInstanceID.h in Headers */ = {isa = PBXBuildFile; fileRef = 50D7273241DE97D0F9D835E4AFD14299 /* FirebaseInstanceID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB0D74E997007796BD50F14F96295806 /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = AA55F1D992C614B377DABE157C495CD4 /* UMExportedModule.m */; }; - CB53CB8940FA626EDC9DA002C71F0199 /* RNCAppearanceProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F0086E0F907C2CAC679FA269843490E6 /* RNCAppearanceProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB0D74E997007796BD50F14F96295806 /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = FE36AD354A26A507F517A0A4F4B1692A /* UMExportedModule.m */; }; + CB53CB8940FA626EDC9DA002C71F0199 /* RNCAppearanceProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E2DC9D466362320D9D82C2ABE0FFAA0D /* RNCAppearanceProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; CB600AAB35D900E3F6F6E38BD6D90D47 /* SDWebImageOptionsProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = FA4ECAC99B83A66CECD026177446CB77 /* SDWebImageOptionsProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB6FE39436E925E77F12794C3460AB4F /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07FF47D0C9B3144A517AB68321480C20 /* JSIDynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - CB75321A593E9F9CF14DC01E77D2B71F /* RNFirebaseFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = E96F58AD23FA16CC8D06419570E1E52F /* RNFirebaseFunctions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB6FE39436E925E77F12794C3460AB4F /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7D08DF9539848E8CAC7915FCD30C16E7 /* JSIDynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CB75321A593E9F9CF14DC01E77D2B71F /* RNFirebaseFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = 82675BE62C3ACFEE49CA5D268C891DB4 /* RNFirebaseFunctions.h */; settings = {ATTRIBUTES = (Project, ); }; }; CB97955D7E935F4B372A7198701979E0 /* GoogleDataTransportCCTSupport-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E5A82E2D83D68A798CF22B1F77829FC /* GoogleDataTransportCCTSupport-dummy.m */; }; - CBC3C8CDC98A30E9165A60C0AEC4C6E6 /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 040AE7C4C5960E5068564B1669AC7E23 /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CBE71DAFC11B03D9525FF1D9A22DB7EF /* BSG_KSSystemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B6DB6D0D19BC30059D5D4512C8DAFF9 /* BSG_KSSystemInfo.m */; }; - CC1D981A4F68A1E01BF9083FFC270693 /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DF8CBF4E8847D9B5DCD9C9911BB18CE1 /* React-jsi-dummy.m */; }; + CBC3C8CDC98A30E9165A60C0AEC4C6E6 /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = E3E6A1475FA0286C2069129BE72401FE /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CBE71DAFC11B03D9525FF1D9A22DB7EF /* BSG_KSSystemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 43471D841BB5055A3A2C97042BD45621 /* BSG_KSSystemInfo.m */; }; + CC1D981A4F68A1E01BF9083FFC270693 /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 668A06AC4FD01113F3AD768199562A4D /* React-jsi-dummy.m */; }; CC22415C6197490967F46F17797B9AF2 /* FIRInstanceIDCheckinPreferences.h in Headers */ = {isa = PBXBuildFile; fileRef = 340F8DC0B45AE963FE9FEB6290B2F0BA /* FIRInstanceIDCheckinPreferences.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC2AB736007F0715B7BDD403B7D738E6 /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 87DED0944EDC6F15AE77CC2854EE3793 /* UMCore-dummy.m */; }; - CC2E7A5892E595B5BA476ED0030918DC /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = EF8CA3F3380206E36F78E2DADFF25213 /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC39BA71608BA9FFD62F8C5AF65B227F /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C38DADA01589641F9B17088966CE9D3F /* LongLivedObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - CC5C5748F588ED764B57214FD01FA6AF /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = 246F9D8018A006460594F30A65BFF960 /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CC2AB736007F0715B7BDD403B7D738E6 /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 339D47919E93B2CAED01DCEFD6253C17 /* UMCore-dummy.m */; }; + CC2E7A5892E595B5BA476ED0030918DC /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = C759BECA96DBE8903C63C266DAEE490D /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC39BA71608BA9FFD62F8C5AF65B227F /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D68D7349299EDC71DB05EB4EB4E8C029 /* LongLivedObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CC5C5748F588ED764B57214FD01FA6AF /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BE8E6275C59B97B8ABD3F43F99AF6C8 /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; CCAE7BA7471BB1DF772B3E823C61E0A4 /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 975D51C22494655692ADF60A40FC9F94 /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; CCB6F59AABF0E21BC0F9A4A9021C9181 /* alpha_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 3C5D630EAB7ED6E3B3B8A2DA57CE8B0C /* alpha_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; CCC12688626556FC8D8945D5A6922E8C /* FIRInstanceIDStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 608E4B0589801079221FEB94B6D394AC /* FIRInstanceIDStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; CCDD9B74F7A6299EF3EE5DFB9338D5D9 /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = 31D19F7F78897D1BC258DE9692B90D33 /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD20FB8B82F46A41B46BE2243C2207A6 /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4587B150FD3526CFF08F6177E7B34E5E /* React-RCTNetwork-dummy.m */; }; + CD20FB8B82F46A41B46BE2243C2207A6 /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 04AC24105BA7DC4445C81E39B4B8D8BE /* React-RCTNetwork-dummy.m */; }; CDBD7932A97BB1C7CC97098EBFE7355A /* SDImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = EEC39363574592DDD2C4DE7211730B12 /* SDImageFrame.m */; }; - CDBF9E5042AA209F0DC26458C3E0A33A /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = B1D848DB6A5AD8268BAB056A588CBF24 /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CDBF9E5042AA209F0DC26458C3E0A33A /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 274F543867C64B9A619D27C4513014D2 /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; CDD692D5774C8B76FF85B8E5A7750AFE /* FIRInstanceIDUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = D2339AD0FFA27A5E25CA38B3E89E724E /* FIRInstanceIDUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; CDDC70305F86BE613774D29DC70EE791 /* GDTCCTPrioritizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C90CBA13EADC2DE8CBA3C3E38DBAD8D /* GDTCCTPrioritizer.m */; }; - CE05E508D9AC27EE29A29EE19C9818EF /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = CA0884EEE65265D9C1173315898C715F /* Compression.m */; }; - CE06FC0B40399ED9AC1D7CE1291D0C35 /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E11EFFACF02E15C744578BEF99A351E7 /* React-CoreModules-dummy.m */; }; - CE25C95BBF3F1E5830A8EF8E1F7A9929 /* RootView.m in Sources */ = {isa = PBXBuildFile; fileRef = E7E54C339F5B0A1E7A94E3A2661EFD17 /* RootView.m */; }; + CE05E508D9AC27EE29A29EE19C9818EF /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = BD8C80B573BB1C2651C058B996D5A569 /* Compression.m */; }; + CE06FC0B40399ED9AC1D7CE1291D0C35 /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B140EBBBDF37F8A960B5827F2CB7B09E /* React-CoreModules-dummy.m */; }; + CE25C95BBF3F1E5830A8EF8E1F7A9929 /* RootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D1B26716E0444055D19F8BE193F51AD /* RootView.m */; }; CE287884CA61A8B9A4C533CB271E2A24 /* GULMutableDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 545D3B715E5AF6AFEC5AE16325F9E898 /* GULMutableDictionary.m */; }; CE31B8148A79CC3614A539EE1BD61A0F /* FIRInstanceIDKeychain.m in Sources */ = {isa = PBXBuildFile; fileRef = E97C6B62E60E3076A98791068DE7D7C1 /* FIRInstanceIDKeychain.m */; }; - CE6B545FD5F8B9D7C9CDB838BCA0DE96 /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = EA217BFC56D7D63C24A2E2EFD8B69C20 /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE8503B88DEE00283F39ED2D5DDB41BA /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EAF08B8553B90B6830AAEA9BF90A019 /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE6B545FD5F8B9D7C9CDB838BCA0DE96 /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = 76FE63E3F928B76B0B0BAE72B3D43FF7 /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE8503B88DEE00283F39ED2D5DDB41BA /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FF6EEDD41B74C067D234D6C305BFF65 /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; CE8852AFA15D70A5DE566026EFDFC2F3 /* FIRInstanceIDAPNSInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 59B76FA92742AFE4EC1B07FB04CDCEFE /* FIRInstanceIDAPNSInfo.m */; }; - CEAA8BE4C689E3421CF6258FEE5858B2 /* RNPushKitEventListener.m in Sources */ = {isa = PBXBuildFile; fileRef = BE1DF413DABB55E0CEEB1B3777FB3199 /* RNPushKitEventListener.m */; }; - CEDAFDB3B3EA3DCE1E62FF82FCD516E3 /* RNFetchBlobProgress.h in Headers */ = {isa = PBXBuildFile; fileRef = 542B8057499DAA46276417BD7A79E572 /* RNFetchBlobProgress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CEAA8BE4C689E3421CF6258FEE5858B2 /* RNPushKitEventListener.m in Sources */ = {isa = PBXBuildFile; fileRef = 832862A31898A88E781D6B4F7FECCF18 /* RNPushKitEventListener.m */; }; + CEDAFDB3B3EA3DCE1E62FF82FCD516E3 /* RNFetchBlobProgress.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C969BCCC29425F18EE53652B5D8706F /* RNFetchBlobProgress.h */; settings = {ATTRIBUTES = (Project, ); }; }; CEDCA25A4B55E64D9A49FDE6D20C638E /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D66719B7E0573E532519532723F67812 /* Assume.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; CEDDF9FB89DDC0ED7701D06BB578CAEC /* SDImageAssetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1246B4FC24C785047CD95D5E8BB7AE12 /* SDImageAssetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF138048B1839E5ADDD579CED7E00DAC /* ARTGroupManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C49B46020A92385B1A4D715A276E946 /* ARTGroupManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF2D3F2E3A348ADF3DBD9EF35343E212 /* EXAV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E477D2DCF178AD8A0A119CC11BB83614 /* EXAV-dummy.m */; }; + CF138048B1839E5ADDD579CED7E00DAC /* ARTGroupManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AC949A6CDC9FAD791701093030E2C19 /* ARTGroupManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF2D3F2E3A348ADF3DBD9EF35343E212 /* EXAV-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B48EC1054F17F4B28C2DA20FE8DF6D50 /* EXAV-dummy.m */; }; CF2DBEFC8F676A6C89BCFA1DCBC02491 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 15762D6096B65B02F92828DF3C3101E4 /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; CF36B5C643DE055F1F75230AC8915277 /* SDImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF6CDD59A57C47D27B4C64E3C83F6EB /* SDImageGIFCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; CF76AB411D4BD02C37E3BC20848E9E28 /* GULNetworkURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = DD709B78F7B831FDC9366D13746333E0 /* GULNetworkURLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CFCFD3BD78FC19E128EA473DF18214A1 /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D92E5E61F73843DFCCD1398180E0905 /* RCTSwitch.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CFCFD3BD78FC19E128EA473DF18214A1 /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 907943E2FBD3DB953B4FBA9071E2CB0C /* RCTSwitch.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; CFEA96EBFA4939A78536A1C1A6DD63D7 /* lossless_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 7E1CF3BEFF840D7071D158D044A4E745 /* lossless_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; CFFF4D24501DD722D267B98FC18CC4FD /* GDTCORPlatform.m in Sources */ = {isa = PBXBuildFile; fileRef = BCDC1F0FF0B1E2E4C213D78D24F0F9CD /* GDTCORPlatform.m */; }; D047DEFE3ACFD17E4D2C74AE4C477949 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 06E1729FCDB517FF8E598520953361E3 /* SDImageCache.m */; }; - D05B74D99B907FAA33240B85E01AFC46 /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = 93A6668248E0553F88E3F241BC7DB2CC /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D062A8C245F8153467102568B63FE46A /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 57857EA05E98C1B928FC3C5A62CA0C85 /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D07B97742E6D42B8DAE45A4EBEFB3A13 /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 06A53493AE9D625B0FCD7CED36565037 /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D0D2428916EF61E41BD76DD1CD720A97 /* RNNotificationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 63A1FF8E19476B645DA57F275B450566 /* RNNotificationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D05B74D99B907FAA33240B85E01AFC46 /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = FDB6F03379BB5DCC38B9907F97598F3E /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D062A8C245F8153467102568B63FE46A /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D06D7D56F20F828FAB576DD995736F4 /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D07B97742E6D42B8DAE45A4EBEFB3A13 /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 600667F42973CEECCEE935951B13F5DD /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D0D2428916EF61E41BD76DD1CD720A97 /* RNNotificationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = FDAF171CD6AD6E3563BCE2211C0F9FA2 /* RNNotificationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; D0D43A09965B7EEC94C970B16EE208B7 /* FBLPromise+All.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D7591D0402DD814820F0F732E55134A /* FBLPromise+All.m */; }; - D0F5A66EBCE6C63428203D551465C9BC /* BSG_KSFileUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = F69D004EB967D4DF426BDE52D155C572 /* BSG_KSFileUtils.c */; }; - D114C36DE2B965A7696D1BDCFE2FD45B /* BSG_KSCrashIdentifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 967FA1A50F500261410AB58054ED1F4F /* BSG_KSCrashIdentifier.m */; }; - D13952929E050B80F1F6F52086E7C7BD /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 89AB92D65AAB3D9E4D017CFE86A2A83E /* React-RCTLinking-dummy.m */; }; - D1503EF664C957A47671F960BBCE5C55 /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = E7B9FBD172851AA60C3C6FB07E8E68C5 /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D1531DF670F8F9F3756453F2D690D5C3 /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A66EDBB330981F3DA95B2EDA14F11CA /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D0F5A66EBCE6C63428203D551465C9BC /* BSG_KSFileUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = 07FC8D474C39CCD1546659DCEB345DF7 /* BSG_KSFileUtils.c */; }; + D114C36DE2B965A7696D1BDCFE2FD45B /* BSG_KSCrashIdentifier.m in Sources */ = {isa = PBXBuildFile; fileRef = E57C813DDCCB3010D420482801376EB7 /* BSG_KSCrashIdentifier.m */; }; + D13952929E050B80F1F6F52086E7C7BD /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C1F97DF376D9798299710820D5A07C9 /* React-RCTLinking-dummy.m */; }; + D1503EF664C957A47671F960BBCE5C55 /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B8F563DDF42E97813ADA94A44D41DAB /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D1531DF670F8F9F3756453F2D690D5C3 /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = C9D0647297B92E80FC92B2CA069FAB5F /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D15B1D25AFE4F0CB60215790F195A38D /* quant_levels_utils.c in Sources */ = {isa = PBXBuildFile; fileRef = 36437C1B03AC2005FE5AE9B6ABB4A399 /* quant_levels_utils.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D19105904195D17C5769DDAC4A0E857C /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 329FF8AD3B6D382A19D0707235664543 /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - D1E312DB375D99286F30D9A1B11166DD /* NSValue+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 04758008ADD0BC76EE636BDA8FCEE11E /* NSValue+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D19105904195D17C5769DDAC4A0E857C /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BFDC5015B07AF6726D48629172EF01E0 /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + D1E312DB375D99286F30D9A1B11166DD /* NSValue+Interpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BAF5B2F52394878A35B02A802913F95 /* NSValue+Interpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; D20CB1F465B6DEC72F0A0FB85325E552 /* yuv.c in Sources */ = {isa = PBXBuildFile; fileRef = 82C307D1CC81EE4425E3DE4DFA23E2F3 /* yuv.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D21EB307CB91F199FA4CB0465AD242C6 /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 8200216619F2108FD97AC1FF61DBE564 /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2258A291CF8E9E8C9A366DF12F38F7F /* REAOperatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 646273C14DFF10D35676293DE6BD04CA /* REAOperatorNode.m */; }; - D29F28485DEE738B6FA3CCF80F59FAB2 /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 788CFE3DEE3D8B745B436F4BFEBA494A /* RNLongPressHandler.m */; }; + D21EB307CB91F199FA4CB0465AD242C6 /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B5C9F26FED4E0761F637BAC9D86AD38 /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2258A291CF8E9E8C9A366DF12F38F7F /* REAOperatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F0337242837C1D7E4670132D6F493B4 /* REAOperatorNode.m */; }; + D29F28485DEE738B6FA3CCF80F59FAB2 /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = C8A1AD0ABD4B51F526A2B68A27A82E6E /* RNLongPressHandler.m */; }; D2BE8317E9EBBE5FD4ED18BA5C53794A /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = A6279E1E2E3335F1103BFA5A97B32CAA /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; D2E11DF07AAD7072CC507F7E383B4FE3 /* pb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D469EED379CDAF76B456D41CE1D789E /* pb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2F766BDCAC9C07A3066A4987FB586BF /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DE5790F233E490A47638DABB61B5B9C3 /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3579009269FEC6A34542333B942C9FB /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CBCB1389DF7CF22F69B32B10EE16F0E /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2F766BDCAC9C07A3066A4987FB586BF /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D4ECAB3FBF1E5C23384E87E852D246E1 /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D3579009269FEC6A34542333B942C9FB /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 0018DB3096F92D334478C93DC9F0224C /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; D35CFE42161E05CBCCA4AA4C32CF3661 /* SDMemoryCache.h in Headers */ = {isa = PBXBuildFile; fileRef = BEAA4F63A52753F14D4888D08369618E /* SDMemoryCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D37AE5F466D1D7BE1CDC2D645ABC48B5 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 064C9E82E05BA7D0672A93207EA0A3B5 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D37AE5F466D1D7BE1CDC2D645ABC48B5 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 21DE35A2679D9ED09F78CC7F60A228D8 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; D37BA13E56AB4047C4D544DC931A7111 /* FIRInstanceIDBackupExcludedPlist.h in Headers */ = {isa = PBXBuildFile; fileRef = C33B5059A86C095F0D92336CBCB1F51B /* FIRInstanceIDBackupExcludedPlist.h */; settings = {ATTRIBUTES = (Project, ); }; }; D39505AA86E323C96932E3A04B1A0351 /* alpha_processing.c in Sources */ = {isa = PBXBuildFile; fileRef = 8816AC006C3D22F054F7BAB4EA2511ED /* alpha_processing.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; D3B16597778203DE6EDD2C915FC363E2 /* yuv_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 3967559F2F789C16C8ECC9F64D330D0F /* yuv_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D3BBAAEC1BB62E99D63C32C6742A60ED /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 63CF31F397DF0BDE9FB607FC2E3007A9 /* UMLogManager.m */; }; + D3BBAAEC1BB62E99D63C32C6742A60ED /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 81D1EF2629F8267469FF9635CA325509 /* UMLogManager.m */; }; D3E2973E1A77B52217E5151ACC4C40F9 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47667B177B8F7040093014A945593A04 /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D3E31C7333A9AE3971A60CB70949C92C /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 52428A2381B640479AAAD45EC7423584 /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3FC99851794FBF244FFCEB31750F0FE /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9D820246B0BD3309229891932B60F66A /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - D411D4F1C26BDD8CF0801FB3DCD7930C /* REAStyleNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 95169C2ACD0CFD69D3DA2A7C1BA063BB /* REAStyleNode.m */; }; - D4492AA35116BD68F0668FD3DBC22437 /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 064E53E98DD836B5F60958B76A781812 /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D501D5C43EEF4B1458C136411F3233C6 /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A8E5C1877B75EB931C2F3894E85CF96 /* RNCWKProcessPoolManager.m */; }; + D3E31C7333A9AE3971A60CB70949C92C /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = AD4C01981405A7597CB80DEE9DAF3C4E /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D3FC99851794FBF244FFCEB31750F0FE /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4E3D4FBAD25B67DE005C06028EFEED9D /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + D411D4F1C26BDD8CF0801FB3DCD7930C /* REAStyleNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 513C3F34D99097335FA72E9F425B9845 /* REAStyleNode.m */; }; + D4492AA35116BD68F0668FD3DBC22437 /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 83801A2B1087F85FCBCEE0AAD6F633BA /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D501D5C43EEF4B1458C136411F3233C6 /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D28C3C37EFCF29A4649B7A20E82CBEDC /* RNCWKProcessPoolManager.m */; }; D548578B0B4BAB40AA2F67986DD948C2 /* upsampling_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 73D1E0BDB42EE2F595BCB0C3E231490F /* upsampling_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - D57B25CD40E3EC19D45D1DA315B29F34 /* BSG_KSCrashReportFilterCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = FB59BD2F76D819846E10393D518459F6 /* BSG_KSCrashReportFilterCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D5E171BEB835B46B99500DEC036AB7FC /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E2698DAF3341F1E37B670A4511D03E2 /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D5EB936081DE1ABD23F6EF6E9A31D4A9 /* RNGestureHandlerModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E3EEFACE8AF7F4F9675941712ED3112 /* RNGestureHandlerModule.m */; }; + D57B25CD40E3EC19D45D1DA315B29F34 /* BSG_KSCrashReportFilterCompletion.h in Headers */ = {isa = PBXBuildFile; fileRef = 43757FFCC4023081D0E0FA820FE32047 /* BSG_KSCrashReportFilterCompletion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D5E171BEB835B46B99500DEC036AB7FC /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2417D733FCFBBA6DE5A653206FC6DBC2 /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D5EB936081DE1ABD23F6EF6E9A31D4A9 /* RNGestureHandlerModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 672097DF8942995581CE2F38215EB2A5 /* RNGestureHandlerModule.m */; }; D5F006702C228499C976E45954BA7142 /* SDImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A54A0AB081F02B68C732C27229CC546A /* SDImageCodersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D5F01B05595BB83EFB74E80121CE3C25 /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1873AC74B9B05005FD4C78FB799A0829 /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D5F01B05595BB83EFB74E80121CE3C25 /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6570BEC05AF52AE575BFE1F10E1D6275 /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; D60E40B4C45EE0ABDDDB310B1906F067 /* SDWebImageDownloaderDecryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = B49950F25B4587A0F1428A0FF4D062F1 /* SDWebImageDownloaderDecryptor.m */; }; - D6103FEA120EFB22A9CBCE782B698E5A /* BSG_KSCrashSentry_Signal.c in Sources */ = {isa = PBXBuildFile; fileRef = 35D6078ABC0F8ACC83F36B6668517CDA /* BSG_KSCrashSentry_Signal.c */; }; - D63D855F5E5694B1078376751720F336 /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = B4E7A8B4EF084DEB4E3DBB9421DF309E /* UMModuleRegistryAdapter.m */; }; - D647A0F7425911DA56628C08A2C06F1E /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 731F48FF22DC60A71D7B7D2BDD5CC067 /* React-RCTBlob-dummy.m */; }; + D6103FEA120EFB22A9CBCE782B698E5A /* BSG_KSCrashSentry_Signal.c in Sources */ = {isa = PBXBuildFile; fileRef = A400C135266E951FFAF31B82700341CC /* BSG_KSCrashSentry_Signal.c */; }; + D63D855F5E5694B1078376751720F336 /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = B163ED9C4BB7942553E67152AD19FC89 /* UMModuleRegistryAdapter.m */; }; + D647A0F7425911DA56628C08A2C06F1E /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A5C5801730B079C30BC743C5E2977DD /* React-RCTBlob-dummy.m */; }; D69223C42741872E5B2A529FA5828F8E /* pb_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = 6F2B281A5C5A6DA83EEDED90A470812A /* pb_encode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - D6AD419ACD3BDA8CE50C3335BA8C9621 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = E1F17ADA394A0FB75DCE5E48D30C27C9 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6AD419ACD3BDA8CE50C3335BA8C9621 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 06B5C6560ABB8384D4E8AABCC6938572 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; D6B1A1D99FDE6C30C456AA3E8AEB99CD /* FIRInstallationsStore.h in Headers */ = {isa = PBXBuildFile; fileRef = E146C49FCEE4ED98740C53D8AF16B54A /* FIRInstallationsStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; D6F319CF127DCB6034758EBB926BB032 /* FIRInstanceIDTokenStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA2FA4336B15BA4DCCD78A997AEC892 /* FIRInstanceIDTokenStore.m */; }; - D74FFDC85A25F62F1B5AE4B8AB0B65D0 /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = A0441F83EA88D5BC4EA94D4DC5961DDE /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D74FFDC85A25F62F1B5AE4B8AB0B65D0 /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = D27F6811C1E80C2F86BCD041DE4269D2 /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; D763A2B754500831DDFCD0B3155211C3 /* GULNetworkConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 67495001F5CD5835C2BB0CC49D35E686 /* GULNetworkConstants.m */; }; D7690664E9554486C6A08570CCA16219 /* alpha_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = B1481C8FC99F5FE787F9FBBE96DD5E9F /* alpha_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; D79CB08B6BF6AE52B703A14D2E5EC289 /* SDWebImageDownloaderResponseModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B75AFFDAD90901B97B9F59583DB4E96 /* SDWebImageDownloaderResponseModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; D7C9818EF31B52BF15F5A3DAD128D970 /* GULSceneDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 360D859E4F26E0D45AC34F09DA57FE65 /* GULSceneDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D7DF907042402355DADB8F17FA3F1405 /* BSG_KSString.c in Sources */ = {isa = PBXBuildFile; fileRef = D85B3B178481AFF3161A0E239507A10C /* BSG_KSString.c */; }; - D811B574E795DB5E3BBD364643701297 /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = D6289D1457043A92CBFCBF02944CE384 /* ImageCropPicker.m */; }; - D81AC0C4DC01BB7B898EF80BA080B002 /* RNCAssetsLibraryRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = DA2D0AAF40394684FCAB3CB2A88A63EF /* RNCAssetsLibraryRequestHandler.m */; }; - D8381F8F51F652DB757C7CF69E9B33B2 /* REAFunctionNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E83456EAECC433866101BCF8436F8600 /* REAFunctionNode.m */; }; + D7DF907042402355DADB8F17FA3F1405 /* BSG_KSString.c in Sources */ = {isa = PBXBuildFile; fileRef = 73A8489BE4513CBADC8D8802AF64A207 /* BSG_KSString.c */; }; + D811B574E795DB5E3BBD364643701297 /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 549DD35AF50F448D6C868B08063F11D4 /* ImageCropPicker.m */; }; + D81AC0C4DC01BB7B898EF80BA080B002 /* RNCAssetsLibraryRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B59B706804D65D8A250DA137FCC9B138 /* RNCAssetsLibraryRequestHandler.m */; }; + D8381F8F51F652DB757C7CF69E9B33B2 /* REAFunctionNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 63F98D42B9567C6BAFED9D04BBDAD278 /* REAFunctionNode.m */; }; D84EB10E3D309D71F1E4D8230535B1F4 /* SDAnimatedImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 0695A738C7F41C79A285AD67DCD00EE2 /* SDAnimatedImageView+WebCache.m */; }; D8518E5BF3021B461942AA4A1DF9896C /* SDWebImageDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 435C84BA7D4AB3EB7649F9B26277DA8E /* SDWebImageDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; D86384B27334C1246523F688494DE7DD /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = EF173724C22DB7D2C3F88CAA10675F80 /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Project, ); }; }; D8657431950ACD09CD921390BC208E99 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = C75F6B7CCC80F365375AE3D64978BE9F /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; D8923CC2D680348D04C0B5B01CF695A7 /* GULNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = 899A689BA65BA61151C1DDFB19F5BE93 /* GULNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D89934B15D0E9D0E016816D7FC0AEF3C /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = ADE6781E53EB3E67579C6B6C030FAC93 /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D8BE1C65E30421034BDF3B754E368854 /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = D05763399C0C43784190DA57D7339AE6 /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D89934B15D0E9D0E016816D7FC0AEF3C /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D52E6CD1695F8CFA8572D11EB15479C /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D8BE1C65E30421034BDF3B754E368854 /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 25A03F3B74F4B37CA6245315F4B8E7EF /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; D917491E5DD9992DFF39CCF944C2D549 /* GDTCORStoredEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = E06128CB543E05DF7D4F8B8A3EF8EEF2 /* GDTCORStoredEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D92CAE62ECAFE549B7CADB800BE130C3 /* RNJitsiMeetView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C12BC1B8F44AF03BA844784DE394E50 /* RNJitsiMeetView.m */; }; - D942F947E98B998E31292371B94924C1 /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 423068FE4F3C20C5F41CFAD48E84FAB3 /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9804C6D34DABDB222B6374C28AD9317 /* BugsnagSink.m in Sources */ = {isa = PBXBuildFile; fileRef = DBFFACBDF7FCBBA514D0A627D020879F /* BugsnagSink.m */; }; - D9977E019B78E27FAC73A954C5BBDF8E /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D2152857A727F3E2C909878BE0C4BD3E /* React-RCTVibration-dummy.m */; }; - D9A1F3B4736C2AF9FCEA83028434E03E /* BugsnagMetaData.m in Sources */ = {isa = PBXBuildFile; fileRef = FA6D8039A197ABD63DAD0EA99338AD29 /* BugsnagMetaData.m */; }; - D9E8EF785F0508D50522BF668E520107 /* EXHaptics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C879CF5F9F3F504690C24C4DD70A20A5 /* EXHaptics-dummy.m */; }; - D9F43B12E9310E1070D9ACA28E595ECB /* BSG_KSJSONCodecObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A28FC5B69E97D14575CA0877222A4C5 /* BSG_KSJSONCodecObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D92CAE62ECAFE549B7CADB800BE130C3 /* RNJitsiMeetView.m in Sources */ = {isa = PBXBuildFile; fileRef = 54FA29A58A8091571DFBDADD8EF21000 /* RNJitsiMeetView.m */; }; + D942F947E98B998E31292371B94924C1 /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = AE263565EA9A6623E8098BDDC664794C /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9804C6D34DABDB222B6374C28AD9317 /* BugsnagSink.m in Sources */ = {isa = PBXBuildFile; fileRef = B7339489EE324E550C089F6B24D990FD /* BugsnagSink.m */; }; + D9977E019B78E27FAC73A954C5BBDF8E /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 83E5C868AF0D7E96D4BD8511C1A6D078 /* React-RCTVibration-dummy.m */; }; + D9A1F3B4736C2AF9FCEA83028434E03E /* BugsnagMetaData.m in Sources */ = {isa = PBXBuildFile; fileRef = C01FB8A779A3445EFD23654B3630937D /* BugsnagMetaData.m */; }; + D9E8EF785F0508D50522BF668E520107 /* EXHaptics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CBCC7E011F6EF7E978AC965DE289A43 /* EXHaptics-dummy.m */; }; + D9F43B12E9310E1070D9ACA28E595ECB /* BSG_KSJSONCodecObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = C29F91CE67C0C0BD5E497A29A8AF5C6E /* BSG_KSJSONCodecObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; D9FBFE38219EEA722C7D011D1F510DCD /* PromisesObjC-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C6C1424961A6648F4F404DB4D5B51284 /* PromisesObjC-dummy.m */; }; DA3E756FDDBB22F63B92675EE270BFD9 /* cpu.c in Sources */ = {isa = PBXBuildFile; fileRef = 352467F523D37BA242FF792076C4BBA2 /* cpu.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - DA553EAB5D6042B76746804E1EAB9AAC /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = B8DEA0D80A18F8535E7EC25234F2FD81 /* RNSScreen.m */; }; - DA91CBB04309BF6A2F67578889C95CC0 /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 52C6898186BEA2843E1035FAEB3A1194 /* React-RCTAnimation-dummy.m */; }; - DA9EE774CF939AFC136CFF0C1418CBD4 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CCB10093C9FD906C746FB03D4746CD9 /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DAB77630ECE8FFDE64A9BEFBD0B44DFF /* RNFetchBlobFS.m in Sources */ = {isa = PBXBuildFile; fileRef = ADB0E98F4BB29FE3E50EACF5482D4E73 /* RNFetchBlobFS.m */; }; + DA553EAB5D6042B76746804E1EAB9AAC /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = C13C31ECD854DA37DE88AE1C00078DA8 /* RNSScreen.m */; }; + DA91CBB04309BF6A2F67578889C95CC0 /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 78B21926C799D90FF38F3C01B49421DC /* React-RCTAnimation-dummy.m */; }; + DA9EE774CF939AFC136CFF0C1418CBD4 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D68A6D7E67D45B0196E2F6716B6A190 /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DAB77630ECE8FFDE64A9BEFBD0B44DFF /* RNFetchBlobFS.m in Sources */ = {isa = PBXBuildFile; fileRef = 4083DC5D6BEC378CED9B623819ED172A /* RNFetchBlobFS.m */; }; DAC13692DC590E6044ED75FE6C7A2D99 /* FIRInstanceIDTokenInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DC55014AFA153FD4E3CBC4A4A6CEF69 /* FIRInstanceIDTokenInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DADDBED583C14F757CE0486E2BF43730 /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BE324263A2118CDEF9F5504CFC24A3E /* RCTAnimationUtils.m */; }; + DADDBED583C14F757CE0486E2BF43730 /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 9775310D6981341505F105C9568C5E45 /* RCTAnimationUtils.m */; }; DAFC2F91BEA931FB9BA022CB9B77CA90 /* backward_references_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 645432A1DF9B3036F4D66BBB89CBAA89 /* backward_references_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - DB1BEF5BA047C09D96609A853E646798 /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 46207D01EBBD77F44870058DD2D9337B /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DB1BEF5BA047C09D96609A853E646798 /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2DB4C4BAA0A3E960224AD870D1692FE5 /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; DB5A7C7920EAF6928FBD7479829670B3 /* FIRConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 31CCEDC883A767472D9DE6E98B55225A /* FIRConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB7453AA7276EAE43F16788C031FC022 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 44EE8E6F45961F400E818F1780116AB7 /* RNGestureHandler.m */; }; + DB7453AA7276EAE43F16788C031FC022 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 56FD6071C9093AABD262B1CDC9FBF442 /* RNGestureHandler.m */; }; DB7DE91DCA6700F151D98F200ED5D276 /* GULNetworkConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AB0FF969520EECB0B36AF7E6D88CD2D /* GULNetworkConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB802AF253B585166A65DE3AF2807ACA /* IOS7Polyfill.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A1C07A4A6A34D1CD9D4BB5D2516C977 /* IOS7Polyfill.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB9717086AE45CE81AA97C3D12CDE9C7 /* rn-fetch-blob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E57B395FE7991C5C011CFD925B3A213C /* rn-fetch-blob-dummy.m */; }; - DBB5DF09AA103C6B5C2410567FC0F306 /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 134737EAD8237E8D08ECB9ED16EB2E1F /* RNGestureHandlerButton.m */; }; - DC138CE0F250720A264B598D27AB4C84 /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 6354554715F7F64320598ED85AAC283D /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC236F473EAB0803CB9FA676FAEB4377 /* RNFirebaseDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = 57DFB6CDC6D345A86EF6EEF8F5DEBC0C /* RNFirebaseDatabase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB802AF253B585166A65DE3AF2807ACA /* IOS7Polyfill.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B0DF453C24E692E4F8226C5A42A08FB /* IOS7Polyfill.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB9717086AE45CE81AA97C3D12CDE9C7 /* rn-fetch-blob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9901BACE3A1530200B9D29B6C2010ED3 /* rn-fetch-blob-dummy.m */; }; + DBB5DF09AA103C6B5C2410567FC0F306 /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D3EB0C538A74A00277C1B7D5275BA45 /* RNGestureHandlerButton.m */; }; + DC138CE0F250720A264B598D27AB4C84 /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 400A33EAC15BABDBC9CFAAD979540190 /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC236F473EAB0803CB9FA676FAEB4377 /* RNFirebaseDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A6A4F24729B892F09EEE969DB9C3100 /* RNFirebaseDatabase.h */; settings = {ATTRIBUTES = (Project, ); }; }; DC28E96BA8BC8E051CA66420F836DDB5 /* idec_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = AB976C1FBBC26BF65B263E79ED2A0E2D /* idec_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - DC4053211CA5A4C360EBC1B27C3ECDDA /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 487E750A8155B4038C4510D12BC7FA1A /* RCTJSStackFrame.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DC83F9A19E21E99237CA1E1903EE6DFD /* RNBackgroundTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = FA8ABBEA1E93CE562E48D920956FD8E3 /* RNBackgroundTimer.m */; }; + DC4053211CA5A4C360EBC1B27C3ECDDA /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 59F015CD4C3AD382FF8AB6E95C5C94F7 /* RCTJSStackFrame.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DC83F9A19E21E99237CA1E1903EE6DFD /* RNBackgroundTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = E8AEA7B9442431BEAC08800C2EBDF01E /* RNBackgroundTimer.m */; }; DC96C9309C507BC3469D0CF4CC8D702E /* FBLPromise+Then.h in Headers */ = {isa = PBXBuildFile; fileRef = F603F708AE1BF751B3ACE89E154E4673 /* FBLPromise+Then.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DCB2CC92DA3D38F80AD358E0E1F41FA5 /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D944F127F84969A76D4F95459215595 /* QBVideoIndicatorView.m */; }; - DCEB3F8CF0A4F09EC1E67ECA1B09C86E /* BugsnagConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 5550131458830597A2D600CED021A4CA /* BugsnagConfiguration.m */; }; - DD14A2612F2B64801D9FFC36B588BE89 /* REAPropsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 62F3F46BC10E918E6774D29E2338B7CA /* REAPropsNode.m */; }; - DD355E73AD18C234879AF3950D6CE93F /* RCTVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F3F09E1E0D4A503E5A78EF430C3B3646 /* RCTVideoPlayerViewController.m */; }; - DD631AAE5B18CDDA00ED19CF2081DDB3 /* RNFirebaseInstanceId.m in Sources */ = {isa = PBXBuildFile; fileRef = 866ADD8883AD84B5DB130DEA1F2DAADE /* RNFirebaseInstanceId.m */; }; - DDA26EF3720C9461304F12664EC2308F /* LNInterpolable.m in Sources */ = {isa = PBXBuildFile; fileRef = B75027B3D631BBE631033FCE88791895 /* LNInterpolable.m */; }; + DCB2CC92DA3D38F80AD358E0E1F41FA5 /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 81AF7C72C8D1321A79EFD6250A8453EB /* QBVideoIndicatorView.m */; }; + DCEB3F8CF0A4F09EC1E67ECA1B09C86E /* BugsnagConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 865875386FB2559918C6689786CF4307 /* BugsnagConfiguration.m */; }; + DD14A2612F2B64801D9FFC36B588BE89 /* REAPropsNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 771101BC66D624FBFA77FBF11A3232C2 /* REAPropsNode.m */; }; + DD355E73AD18C234879AF3950D6CE93F /* RCTVideoPlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DF5D0FBF5908E9568AE95C94B45CF8C /* RCTVideoPlayerViewController.m */; }; + DD631AAE5B18CDDA00ED19CF2081DDB3 /* RNFirebaseInstanceId.m in Sources */ = {isa = PBXBuildFile; fileRef = C45E958F1FD041D1C66D329032EC24E0 /* RNFirebaseInstanceId.m */; }; + DDA26EF3720C9461304F12664EC2308F /* LNInterpolable.m in Sources */ = {isa = PBXBuildFile; fileRef = C972750A84A0F589238CF3C40CA01ACC /* LNInterpolable.m */; }; DDBB5BC0602A84CE59DC6778A632ED69 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = ED5D4ABF81DB0F6F91E1A25F93EE1DEB /* SDWebImageDownloader.m */; }; DDC299E5753D48F2A7081D27F73ACFAF /* FBLPromise+Async.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D7BE8D11D0BE425A162D262300BF5D5 /* FBLPromise+Async.m */; }; - DDE368F0AC94152AAC8660C018179335 /* ReactNativeART-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FD45C83428345C00F5023AA9C5BF666B /* ReactNativeART-dummy.m */; }; - DDFB2252C0D8075A2E4C47B1F50BBBC0 /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A29945BD2BC09DFA3D6BC2B78EB2D190 /* RCTBaseTextInputViewManager.m */; }; + DDE368F0AC94152AAC8660C018179335 /* ReactNativeART-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D85FDDE6F7D1E0584936A5EC114653D0 /* ReactNativeART-dummy.m */; }; + DDFB2252C0D8075A2E4C47B1F50BBBC0 /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E6B3F72D28DBBEB7379B5DBECA7B3B2 /* RCTBaseTextInputViewManager.m */; }; DE124FC4A0EC768A4686D70F6B4BFA58 /* FIRInstallationsItem+RegisterInstallationAPI.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E8C019C75FF4F789E40C8784D2EEB25 /* FIRInstallationsItem+RegisterInstallationAPI.h */; settings = {ATTRIBUTES = (Project, ); }; }; DE4FD7EF6E7A5FDEC42D181E800ADA04 /* GULApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FE78D699DF0963CA715538E756C4EE2 /* GULApplication.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF7090744256ADE687EBA55BC5FE8ED5 /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = BF520FDCEC159D80E94AF5330E4341AD /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF9CDE086F36000D7C8E6834838EAAA6 /* RNFirebasePerformance.m in Sources */ = {isa = PBXBuildFile; fileRef = 703E633D67D09CCA45C691AFEF430AF5 /* RNFirebasePerformance.m */; }; - DFA67D9152D6A8AD4D4C5B01F061DB6F /* BSG_KSObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 9080EF5E784DDF1531BA49855E01F18C /* BSG_KSObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DFD82A631E84CF574DC68FA7DCD113BE /* ObservingInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 797EEC8DEE67855B815F6FA3ADF0A50F /* ObservingInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E00AE219C77E8D17BBBF9A091E04A29D /* FFFastImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = CCB2A41EEB91EB3807C5482F1A31903C /* FFFastImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DF7090744256ADE687EBA55BC5FE8ED5 /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DF145921DE85DB434850DC4736F5445 /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DF9CDE086F36000D7C8E6834838EAAA6 /* RNFirebasePerformance.m in Sources */ = {isa = PBXBuildFile; fileRef = 82F7F16CE0883730CD67D3C8EAE7BB61 /* RNFirebasePerformance.m */; }; + DFA67D9152D6A8AD4D4C5B01F061DB6F /* BSG_KSObjC.h in Headers */ = {isa = PBXBuildFile; fileRef = 32220994394A40DE7B9D36CAE714B59A /* BSG_KSObjC.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DFD82A631E84CF574DC68FA7DCD113BE /* ObservingInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 89744B170298F75C90CAC39E6808A498 /* ObservingInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E00AE219C77E8D17BBBF9A091E04A29D /* FFFastImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 65DF2D38D025F5920C9A118C22152FC2 /* FFFastImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; E03B2983E6A3780B1E33F86C0B6727E8 /* GDTCORStoredEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 00A08DD362055E20F1FB0559D19644E4 /* GDTCORStoredEvent.m */; }; - E06AAE1518AEA2562A0D7137B157DA37 /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AC9EBEA2723A60E109E0AB57C958FDE /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E06AAE1518AEA2562A0D7137B157DA37 /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = F3CCB24FC34E85BE20A08461CEAC5964 /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E06FF2EA4D8E7057808DAECF514487B2 /* RSKImageScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = C9C21A13DD4599456884602B0D4C6757 /* RSKImageScrollView.m */; }; E092937984315305C4F482FDC1AB25EE /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = C6A63FCD6FAFEE69391E5C3FC275512F /* SDWebImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0C46A52452ABB7A82187CF8BADC033D /* RNDateTimePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = D1C3728E396239603DE8696250258E58 /* RNDateTimePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0D3705D832446D3FEB5C2823DCFEB8A /* REAOperatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D11352460D45BF5E088E22D1C62A7CAE /* REAOperatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0F5927CF8044CD7C525F063BB91C410 /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 3149F11E1549C357BC99FB243454991D /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0C46A52452ABB7A82187CF8BADC033D /* RNDateTimePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = C9EE23420BFAC48413A4637E84819DC1 /* RNDateTimePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0D3705D832446D3FEB5C2823DCFEB8A /* REAOperatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 45DCCF91BE6331A403D82963970FFDFE /* REAOperatorNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0F5927CF8044CD7C525F063BB91C410 /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 5160329ADA5B68E17C053672412941D6 /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; E0F9AB2F0F827441784FE65F9DEA24FC /* SDImageTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D7F7DEEE1B431B212DE4B6E85BFD120 /* SDImageTransformer.m */; }; - E0FBC07A277E9FA12F6964DF7C385E64 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C311D25970FF30E9C7C775ED20FD09A0 /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - E11D90E3A741AFE59213CF41F60AAFC3 /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = BC7FB46749CEB238F31830ACF280624A /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E13446308B20AADCEBAF1C8EA38E3EBC /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A31D7F54597E076BF9613538EAF5E3C /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0FBC07A277E9FA12F6964DF7C385E64 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 79C1357F2591BBF578F21D97ECF2B59E /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + E11D90E3A741AFE59213CF41F60AAFC3 /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = E6FEC01938E6E2881B3F79CA8423559A /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E13446308B20AADCEBAF1C8EA38E3EBC /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = 963529313674244E03C747A4948AE491 /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; E19F094AEE34A8B92913D6BDD5E9A718 /* GULReachabilityMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 464C3A02594F9D69187EC87E695B4726 /* GULReachabilityMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; E1C350EB67C41B14911972FCE699FCA5 /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AE6009DB9E0286F743D5CFA5415F06EF /* F14Table.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E1C92AEEAF907D9FBB3D536670867DE4 /* UMAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = EEBA21C2ABED57C6474F653A70AC35DE /* UMAppLoaderProvider.m */; }; - E21AAEA8465DD61EEF9AB43C823EC425 /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F319CA198824B225B3954A404F9BA23D /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E265276741F6CCD0B0197C40C1EBA401 /* RCTVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A086905870854E2803180C1E248E8B3E /* RCTVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E1C92AEEAF907D9FBB3D536670867DE4 /* UMAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = D1ADC607BB15353F965858ABCFB3CC56 /* UMAppLoaderProvider.m */; }; + E21AAEA8465DD61EEF9AB43C823EC425 /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A16DEFAB0875333C26E3139CE5310E82 /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E265276741F6CCD0B0197C40C1EBA401 /* RCTVideoManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 77258C342D4729EE4CF05D804A6056E8 /* RCTVideoManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; E27FEF47747D16413DA5F5E3DB760E17 /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E5CFD24886A762C411A37478D6B0296 /* UIImage+MemoryCacheCost.m */; }; - E2A6689C380DCEF64FA16056E84D8149 /* BugsnagSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 1008C6A52CFF0FCD4F3F4A73DE63755C /* BugsnagSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2BF9B26DC83D490DA1578C1C984489C /* Bitfield.h in Headers */ = {isa = PBXBuildFile; fileRef = EB6168ABE2CE62305490CA4BD7049283 /* Bitfield.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2E490B23FB206AE0B3CD336767D0DC4 /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9271E0A545759858345B56CF01EE6EA1 /* RNDeviceInfo-dummy.m */; }; + E2A6689C380DCEF64FA16056E84D8149 /* BugsnagSession.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E822F4CDCF4DB122075F36B3348CB32 /* BugsnagSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2BF9B26DC83D490DA1578C1C984489C /* Bitfield.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F8A795D79440FA00273CD98F065B963 /* Bitfield.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2E490B23FB206AE0B3CD336767D0DC4 /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A75A67682FD28D02E198C5940C1521C6 /* RNDeviceInfo-dummy.m */; }; E2EE20BD16B60C9E9C8F5745895E4CEB /* RSKImageCropViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 481BAF2737C4B9EED2882A2C4CB20C17 /* RSKImageCropViewController.m */; }; - E3258A68B76FE2FCC58C4C633E400B8C /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EB476B4FF06F149CDC7E60CA6FA4B4B6 /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3258A68B76FE2FCC58C4C633E400B8C /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 72C7372FB61DF360A86BD59E40639D4D /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; E32C9EE312F7082CA358C8DA02112A8E /* GDTCORLifecycle.h in Headers */ = {isa = PBXBuildFile; fileRef = E0E17F86AEE63B4E96B07B6417885A38 /* GDTCORLifecycle.h */; settings = {ATTRIBUTES = (Project, ); }; }; E366DD0852E04C44719F436504C65C5F /* SDWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A65228A597C9CDF1630D3E33E79C2E7 /* SDWeakProxy.m */; }; - E39E3634C4CA7E2E69BB72A8AF9DF0DC /* RCTKeyCommandsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 03D2EC049AA7AA9388E7BE1D539DDC8A /* RCTKeyCommandsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3D899247BA051EF2CCED618D78F98BD /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = 105733A577C33B0FCA5F228D1857F8B3 /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3D8D8CEE66A0FC7506029A673BE066D /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FAF62BFFC896F70FC39BD6610038A65 /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E39E3634C4CA7E2E69BB72A8AF9DF0DC /* RCTKeyCommandsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 636F31DA774BEA7BE943A8E6CCC0CFF0 /* RCTKeyCommandsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3D899247BA051EF2CCED618D78F98BD /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = 089E361FA9F6CCDEF000FDACC54CBDEF /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3D8D8CEE66A0FC7506029A673BE066D /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B7CFD05C691F6924977123D6341303E /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; E3DA0536FD69192110548E00EF3BE7FC /* GULNetworkURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 1876F2F1E1CB7222FA2BE64E89BC0A68 /* GULNetworkURLSession.m */; }; - E3F4BCEBE73BFC628C5F5AA0EF0016EF /* BSG_KSSingleton.h in Headers */ = {isa = PBXBuildFile; fileRef = C5091C0A789A5722B65B44F7A1254FCB /* BSG_KSSingleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3F69F9F53C3AF391D03FE780AD7E764 /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 21DF6D72948E115B6A80FA386B080004 /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E4371B1E44E185F3F7756EE3FFC0D0D4 /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 25CE33BA1C7530FA89B2ACD4901E2FC9 /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E448A5F8D630963A29733720AB2830D0 /* BSG_KSCrashReportStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 43F71913AE130ACD0E258AA4A470CC39 /* BSG_KSCrashReportStore.m */; }; + E3F4BCEBE73BFC628C5F5AA0EF0016EF /* BSG_KSSingleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 90790859284BE76172F93E9F7813BB5D /* BSG_KSSingleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3F69F9F53C3AF391D03FE780AD7E764 /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 69E73D0D712ABA9F6DEED0F86AF52EF7 /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E4371B1E44E185F3F7756EE3FFC0D0D4 /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 215284327ECF7BC0EC9C01C23DA52960 /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E448A5F8D630963A29733720AB2830D0 /* BSG_KSCrashReportStore.m in Sources */ = {isa = PBXBuildFile; fileRef = F1DD820E50ED7683D2682FC978902760 /* BSG_KSCrashReportStore.m */; }; E448F434853BB876889DEDECD8355860 /* GDTCORRegistrar.h in Headers */ = {isa = PBXBuildFile; fileRef = 147CFFA41FD70FB3BEA2696A188FD294 /* GDTCORRegistrar.h */; settings = {ATTRIBUTES = (Project, ); }; }; E49C99B16AE53555FE7A7CB8A8BE5382 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = ABBAB6A3B14167BE15806D2D4C391430 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; E4DF0038F580620277B1D09CFAEA7194 /* GDTFLLUploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D6E08DDF45483F5A4732B16AF971B03 /* GDTFLLUploader.m */; }; E4F2A48E51116B466E81C84FFB3C33B5 /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = F08B0F9A4D8A738B0F5EF58D5545D0A9 /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E4F57F221918EF831DFF3968C9B44936 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = FCEEFA2D1D9902927071C8FBAA81460E /* RCTSlider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E4F57F221918EF831DFF3968C9B44936 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BA51F00ECD12529E58CF5FCF1BDD822 /* RCTSlider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E5216B6E62473377EA6E284532506268 /* Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FA8915E0D8D275C898AC3CC45B0C183 /* Folly-dummy.m */; }; - E552D26DBE5A715DFF524CE675331BC6 /* RNPushKit.m in Sources */ = {isa = PBXBuildFile; fileRef = D65D464BFA160C2DAC22A43DA581AEAB /* RNPushKit.m */; }; - E554598FD317EE9149AB8454AA9059F8 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E5C0B0A941461267A103EFB48484C56E /* RNScreens-dummy.m */; }; - E575B82987686FB278B44B3EB095A37A /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = C573F9839F0DFBBBF0B71A04BC958D8F /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E552D26DBE5A715DFF524CE675331BC6 /* RNPushKit.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C775F0A3839BF88C0D89C889B59B26C /* RNPushKit.m */; }; + E554598FD317EE9149AB8454AA9059F8 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F75B10ADD795D175038A5C942CC2F902 /* RNScreens-dummy.m */; }; + E575B82987686FB278B44B3EB095A37A /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = 28200B7B2826E413420961FA86E7E2E9 /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; E5782D8BD91896AAF55C1CBCBEF37684 /* SDImageWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = F15A1B308313E7B51B2753B9D83EDFA5 /* SDImageWebPCoder.m */; }; E5CAC048154072FBC7D33C3C690D1666 /* FIRInstanceIDCheckinPreferences.m in Sources */ = {isa = PBXBuildFile; fileRef = E728B448CD6DE78410A3FA3D7DFFAF58 /* FIRInstanceIDCheckinPreferences.m */; }; - E5F11EB51F68D959C8291875C93E4B1A /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 819452E386D6F7260FFE35AB5A6519F0 /* React-jsinspector-dummy.m */; }; - E5FB31F6C23D375DE5CBC98123BE9B8D /* RNGestureHandlerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CE9AE7FF8E58CF83EA0A6D584CD74613 /* RNGestureHandlerManager.m */; }; - E5FC836186D971C23AE7EA2BBD891DA9 /* BugsnagSessionFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 6932F20496C83361F27869BCFF8CA021 /* BugsnagSessionFileStore.m */; }; + E5F11EB51F68D959C8291875C93E4B1A /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F9E7EF7E62D98E528212D0D273427AD /* React-jsinspector-dummy.m */; }; + E5FB31F6C23D375DE5CBC98123BE9B8D /* RNGestureHandlerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EDFD91143B580A2011219BF543907D2 /* RNGestureHandlerManager.m */; }; + E5FC836186D971C23AE7EA2BBD891DA9 /* BugsnagSessionFileStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 82B7FDA33841430FAECFEB78091A9B83 /* BugsnagSessionFileStore.m */; }; E64DF891F62A7CC6064235FD1A9DCF5D /* SDImageLoadersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A50C6F190916F34A6C994F0FA9A369F /* SDImageLoadersManager.m */; }; - E6672788C9A13BEF81FB7F5821C0B79E /* RNEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = CAC6941D32D79578AEDB6050C10F403E /* RNEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E67CC774BCC800FC2518913B50739E55 /* ARTLinearGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = B214BD9C36501DA0F666AE8B05AD9A4C /* ARTLinearGradient.m */; }; - E6ABE72B7BC5B02D311C204E250FA5F3 /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 6522F588FD87E22B716396B0BB2FCC23 /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E6B28EC2EAA76DA7CBCA209D55786E4C /* RNFastImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DCF29C4013DFB5FA396D0A90D013CF7F /* RNFastImage-dummy.m */; }; + E6672788C9A13BEF81FB7F5821C0B79E /* RNEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AF6A5BBC472C7054D73C96893FD931C /* RNEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E67CC774BCC800FC2518913B50739E55 /* ARTLinearGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = A8B5C306DE7AF28132B3BAD6F0B04749 /* ARTLinearGradient.m */; }; + E6ABE72B7BC5B02D311C204E250FA5F3 /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CEDF8BB61428E7B1CA483A5342D87C7 /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E6B28EC2EAA76DA7CBCA209D55786E4C /* RNFastImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 923936132C5FF045A354B7B75A74E01D /* RNFastImage-dummy.m */; }; E6C3AC1533E09AB22822D392C9B9CFCC /* FIRDependency.m in Sources */ = {isa = PBXBuildFile; fileRef = C460DA70768C93ED1BE2D6D8F8EB4963 /* FIRDependency.m */; }; - E6C8BD53A9389792CDC6E69D7FEB223A /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = DE05C87555688FF24DEF167EEFF2E549 /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6D227640A6B27493E6D63BAF5C6F11E /* RCTGIFImageDecoder.m in Sources */ = {isa = PBXBuildFile; fileRef = A4CE0674C2BBE6BF5B371ADA74A89652 /* RCTGIFImageDecoder.m */; }; + E6C8BD53A9389792CDC6E69D7FEB223A /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 43E5FD1C5B9357E739C64C0EAC4F8290 /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6D227640A6B27493E6D63BAF5C6F11E /* RCTGIFImageDecoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 490B8C7C98FC25E75F19D4B8B135D6F5 /* RCTGIFImageDecoder.m */; }; E6FE2807B85DDFB3EA91EEF768018D80 /* dec_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = 4DF0BD63D7D4CFDCC663E62D0F856294 /* dec_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - E7171E9DE4E1C13572715CB434C0B5F2 /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 50E3E3361D76E10FF66B5EDF3675DEAC /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E7171E9DE4E1C13572715CB434C0B5F2 /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EF03D4A1089DE603CBFFF9D9D52203D /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; E77893AECA58C42BEFB11A9F3D0F0E89 /* SDAnimatedImagePlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 378C25F0844A70F6AF0AD604D5B04960 /* SDAnimatedImagePlayer.m */; }; - E77AD62D1F1A5ED37D541E208A1B6545 /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 097FE086579CAB093DD5BDC17FD6AFC0 /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E77AD62D1F1A5ED37D541E208A1B6545 /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 87250954950E13682D9F5CD7F3A6BA91 /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; E7A53AFEB6F93AA9F66679AFBF68CA43 /* SDFileAttributeHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 88FB1508A1C9E9DF1C4FCF0644BFB25D /* SDFileAttributeHelper.m */; }; E7C43AA674EF98DB10295D5A0FDEF294 /* UIImage+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 631C18F49615412D4C905B1C37D9ADA9 /* UIImage+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E825EB7097FB4979649C593B3A86B567 /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 72B29B254D8D74DC776EE9189702D11E /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E84B9D70F5DC04842F89B53195E9D52C /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B2D64547DAA0DB27D79EDCA28E88DB4 /* RCTTextShadowView.m */; }; - E853513BCE291CEE0B0E1CA5D20B1809 /* RNFirebaseAnalytics.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DDE23DA939219B390290D7B9FEA0763 /* RNFirebaseAnalytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E825EB7097FB4979649C593B3A86B567 /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 58C75434D5A226A79016D53B6234AA57 /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E84B9D70F5DC04842F89B53195E9D52C /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 33AFE038D4008021778FB31EC6A6EFA1 /* RCTTextShadowView.m */; }; + E853513BCE291CEE0B0E1CA5D20B1809 /* RNFirebaseAnalytics.h in Headers */ = {isa = PBXBuildFile; fileRef = D3B3453CE4DE764804926152E606A99A /* RNFirebaseAnalytics.h */; settings = {ATTRIBUTES = (Project, ); }; }; E85404923CD3A01CF558D3850CFE3679 /* GULHeartbeatDateStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 16FB6D1CB6C00FD26DF39F79C94A3B7C /* GULHeartbeatDateStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E893729E87251274E6D1D3B51566E3B4 /* RNCAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CDC959EAAC82AB0723B5116CE019382 /* RNCAppearance.m */; }; - E8A6ABDCF3C0C5876058B074C4E29BB6 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 337FC4191A6870FFEA90EF31F9905044 /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E893729E87251274E6D1D3B51566E3B4 /* RNCAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 674FA7B59F6E13FCB007AF7757327943 /* RNCAppearance.m */; }; + E8A6ABDCF3C0C5876058B074C4E29BB6 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = B316EE8749A03932D358C95F9114570E /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; E8E1EDE9F3E6489979B88DD4A1772C5A /* FIRInstallationsHTTPError.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A09F908C75D99E518BBF382A235C2DB /* FIRInstallationsHTTPError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E8F7886CF346A4A59D5620CEAA69B8D7 /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 79290D430AEE27ED0F3A2ADD6900A403 /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E947B8EE3C12F59A7BE6DA22F4E43AC9 /* ARTNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 231C432A3961BDFBCC43561A5EA4F36B /* ARTNode.m */; }; + E8F7886CF346A4A59D5620CEAA69B8D7 /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = EF788968BF757270E8F0956A01A609CE /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E947B8EE3C12F59A7BE6DA22F4E43AC9 /* ARTNode.m in Sources */ = {isa = PBXBuildFile; fileRef = D48621AC50DC4D30040BB50CD2442F17 /* ARTNode.m */; }; E98690E099869FCA322CDB7C8AB9B323 /* webp_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 369513EEA056867CD6A5F02835B302FE /* webp_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; E98CCDCFD26438DD750B626B558080DB /* SDWebImageDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 55331CDCA3E4E9F322A2CA7CE5915A6A /* SDWebImageDefine.m */; }; - E99670DE6BBAD7C09E618409533D1080 /* EXDownloadDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = ACD2F3F414E96D13C35322EF4AE69D91 /* EXDownloadDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9ACBB81BB2D21567E75CB08C2B132A4 /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = 12D02610BE157E747D2067DF8797C640 /* RNLocalize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E99670DE6BBAD7C09E618409533D1080 /* EXDownloadDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FA81729A1DB43571D35E2E7A19E1345 /* EXDownloadDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9ACBB81BB2D21567E75CB08C2B132A4 /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = 92D3A2C71CB1459A2CE0C33710DEA4CD /* RNLocalize.h */; settings = {ATTRIBUTES = (Project, ); }; }; E9BEC3539C84BEBAE9C56DD82FE4AE08 /* GDTCORConsoleLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FC1353AA6CA2364871614AD5734013C /* GDTCORConsoleLogger.m */; }; EA92BC0787BF825827888594F2AEBA4E /* SDImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 7480B7F4FAB96A496173DE0E7C617B9C /* SDImageCoderHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EAC3645D8AC3873C347FC01F30F07184 /* BSG_KSDynamicLinker.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A875199F18994CD8E1A92BBF9964643 /* BSG_KSDynamicLinker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB0B31B8287F6C7F98F99A2AF00CACB4 /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 08063712435A35B0888B9B7E6FC2C8DA /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EAC3645D8AC3873C347FC01F30F07184 /* BSG_KSDynamicLinker.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CE510F89D067BBF690E179DBFE1E75D /* BSG_KSDynamicLinker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB0B31B8287F6C7F98F99A2AF00CACB4 /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = BB2398BE031D52DFDEFD4D59EED50148 /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; EB2C44784270DFBA3B582FB79FB0B4CA /* alpha_processing_mips_dsp_r2.c in Sources */ = {isa = PBXBuildFile; fileRef = 3E30B8CCF8842538B301F60452DFD5E4 /* alpha_processing_mips_dsp_r2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - EBA14ECF6325AE246FF34646A5D8CA77 /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = A016D6A210522AC24080C76A0C53477C /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBA79B0AE533BE87BCF47925BEEF5A58 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = 857BD78B074C625BC77FD4BDC49254F1 /* RNGestureHandlerEvents.m */; }; + EBA14ECF6325AE246FF34646A5D8CA77 /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = F4C8A918CFE8CFB9403313034C194463 /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EBA79B0AE533BE87BCF47925BEEF5A58 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = 04BE1D6CA0CD9241EB81A4AB5F3C45A9 /* RNGestureHandlerEvents.m */; }; EBDA10C96D8A27B909F8DB3B0A7C32F1 /* pb_decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E9D30B663A082E804F4CAA873DD3822 /* pb_decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBFD540945522362ECEE6BE93F273482 /* RNFirebaseAdMobBannerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D11686F510A95536BF8A8CDDFC2B6601 /* RNFirebaseAdMobBannerManager.m */; }; - EC08AB594C6A1EE421C0F7221243CB62 /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 31EF0BEB53628F3F62B196C7F169532C /* RCTBlobManager.mm */; }; - EC0BF2510F9ED9AF098DD223FC443285 /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 71E58CFEB0AC5CB428A0D88D7FC89826 /* RCTBaseTextInputView.m */; }; - EC9004FACF5144E188B844C9527904D6 /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = C564AA6335B6EBC9C23AFBD015DF763D /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EC99C50385781477A8923300E8BC421B /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D448E23AE03762C59E62FEE30B234CF /* RCTTextViewManager.m */; }; - ECA780FF54FE7C9F647A4D72E95010F7 /* ARTLinearGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = A86677E63E89F27DFB0A8B995E0C24D0 /* ARTLinearGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EBFD540945522362ECEE6BE93F273482 /* RNFirebaseAdMobBannerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CDBD1952FFD5475618E10B078F85101C /* RNFirebaseAdMobBannerManager.m */; }; + EC08AB594C6A1EE421C0F7221243CB62 /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = EACBACF9153DD3E5D782F861B1761ED0 /* RCTBlobManager.mm */; }; + EC0BF2510F9ED9AF098DD223FC443285 /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DAE96F078224826317C344961328901 /* RCTBaseTextInputView.m */; }; + EC9004FACF5144E188B844C9527904D6 /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 09B04B8589E68E2687A1D94C462182AD /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EC99C50385781477A8923300E8BC421B /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 627C072D1242A8741EB84490641B4EEE /* RCTTextViewManager.m */; }; + ECA780FF54FE7C9F647A4D72E95010F7 /* ARTLinearGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 31238A8B7C9D38F8ABB58C56ED0A8793 /* ARTLinearGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; ECB28850CF749899A41813E488AE29E7 /* GDTCCTNanopbHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 06F15669F5B860FA4E51821B5C31DD25 /* GDTCCTNanopbHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; ECF5EE9A8CBB6789B7B126A9A26A5F1F /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = C4479616B9A8800084821451D7E8362A /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ECFB29DE3E310D2CF27F7C2D40F93A9A /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EA67F22BED9DF0E10C8FD51DFA3C479 /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ECFB29DE3E310D2CF27F7C2D40F93A9A /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D71A2300D1F1BA16C41BEDF99A0397F /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; ED62691B003B2C54B15DD706EBD7FA6B /* histogram_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = DFC6BCB3B33D02DBB888628D1E52A351 /* histogram_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; ED6F8B6CE9CEFC1D4CD6E21DF8103BCD /* SDWebImageIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 436BEED2A30591A8D4E5DB90E45FC2FA /* SDWebImageIndicator.h */; settings = {ATTRIBUTES = (Project, ); }; }; EDA6631D3EB50C35BD2E88DEAEECA297 /* FIRInstallationsVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 668DB3196C8AC5E9F322863CBC018C56 /* FIRInstallationsVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; EE273A1922351D221CFDAFFC3FC1BEEE /* UIImage+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = F3AD925B23A79ECA6E6EBDF8DB7412D2 /* UIImage+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE5A08FA36B0D47C84E6173B27CA2152 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A8D98458AF6A341AED8D30B08B285BB /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE6C34D5DC88F870B40D305A75D38553 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 3980D6B93CD85765ECEA7CB4F162B932 /* de.lproj */; }; + EE5A08FA36B0D47C84E6173B27CA2152 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 878DA4DA1965E991360A0B90C6221A8F /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EE6C34D5DC88F870B40D305A75D38553 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 2A90292EAD4E4B3D95515EA21628B634 /* de.lproj */; }; EEBF8313CA8F65F42F85E698A4170BB3 /* GULLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 63FC874B85C176CC532B90BB75E6546F /* GULLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; EEEE2F8856949DC3AD8768907BC1155B /* FBLPromise+Timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 812DCB2F8F49903836E6EBBDD65655F2 /* FBLPromise+Timeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; EEF97C679BEE5F2A9C7F7D95720C9AF6 /* lossless_enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 9E97258EDDE1B0FF09F0FC66346AD27A /* lossless_enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - EF2C4FB84AFC8710114EB87DF542FA40 /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = BE1D3669F434F811A32D13C0E52FAFE8 /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF2C4FB84AFC8710114EB87DF542FA40 /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F1B903AFBB12AAE3480AA42378C8726 /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; EF627458DF9DF92352237F2364F8D8B7 /* FIRCoreDiagnostics.m in Sources */ = {isa = PBXBuildFile; fileRef = BE9A40D3A7B0498886FB7048EF92990B /* FIRCoreDiagnostics.m */; }; - EF686B36ADD04B852E545DE24FC4ED46 /* RCTSettingsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BAA6FC1F2189DF65B88AE20FCC0882CF /* RCTSettingsManager.m */; }; + EF686B36ADD04B852E545DE24FC4ED46 /* RCTSettingsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A871FA84A52BD22BB179B42C1F44F20 /* RCTSettingsManager.m */; }; EF6ED61C297982CF31DF19548C24548C /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 14E9D8CDCDCDC635008003D55AC6728F /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EFCBDB29A0854F4C329462E88F5FB5EF /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = DEB78093614332D12C5E9B2C2B7A9A7F /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EFCBDB29A0854F4C329462E88F5FB5EF /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E7037E56436AE0964F96889FED26B9D /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; EFDDDA86D58A5A3B5A5C52CD2E4684D8 /* random_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BB4E471066205C1B9F8413CE80BAB3E /* random_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F017287C4E1183CC83C54BCDF409A28C /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = D4D7A183F0626C3DEEF5CC2967FE038A /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F017287C4E1183CC83C54BCDF409A28C /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 51E045377B57602000DED486F9BA7183 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; F026131495373C5DE569B201034D9101 /* cost_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = 3C4BE532E284D6FC858B445EBCE54BE5 /* cost_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F02C80E50A42C5C5D22B26EC7C971239 /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = F08F8876D360987112249A47F58AACD3 /* RNPinchHandler.m */; }; - F0AB1EAEB67FA9F7F0EAC55737D635B8 /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F6B55E3590A31D0796E2F6D82597EEC /* TurboModuleBinding.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F02C80E50A42C5C5D22B26EC7C971239 /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 19B7DC0C36E8788004AC04F6BE858392 /* RNPinchHandler.m */; }; + F0AB1EAEB67FA9F7F0EAC55737D635B8 /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E847FBA812E94CC9BCCD9EE428CC1966 /* TurboModuleBinding.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; F0B46213F4296B9F86E89D13B3812DA4 /* UIImage+ExtendedCacheData.m in Sources */ = {isa = PBXBuildFile; fileRef = 395775162350335AB985C2E53A0F2AFA /* UIImage+ExtendedCacheData.m */; }; F0DDCA31D954C30755FAAFC075C96D5C /* GDTCORPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = CE71CD3D3C773A121030FB81AB751D1A /* GDTCORPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F0F6FF2BDBAEAE1AB3B9FC5CFB1DD69B /* RNNotificationCenterListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B482BF8DF2E75DF9287FB4F450FA8A0 /* RNNotificationCenterListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F0FCF80EBEDFE45F3FE19DEEE0A94D56 /* RNNotificationParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 3496CD4A788972B860A4EFD810330F4B /* RNNotificationParser.m */; }; + F0F6FF2BDBAEAE1AB3B9FC5CFB1DD69B /* RNNotificationCenterListener.h in Headers */ = {isa = PBXBuildFile; fileRef = C36A46BD905DCD5C55106653B5BB691C /* RNNotificationCenterListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F0FCF80EBEDFE45F3FE19DEEE0A94D56 /* RNNotificationParser.m in Sources */ = {isa = PBXBuildFile; fileRef = DF33E3CF7D684DB98F89BAEB8F8E2E65 /* RNNotificationParser.m */; }; F128E5421AFDD733B6EA5E6DC0BDBBBF /* dec_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = 2FC5C1273D1024C325327DCD080C4650 /* dec_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F15DE35EBA4CB4B476438C0692A0950A /* FIRHeartbeatInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = FFE34689D2E3DE37AC652BA9C6743AD3 /* FIRHeartbeatInfo.m */; }; F19BF0C7860B5391D62C5E675AB146B4 /* bignum-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = BF0E8DD8BC7FDA879032926A40B37AA3 /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1A4EF081FF2A5D0C5CA12DA474211AC /* BSG_KSMach_Arm64.c in Sources */ = {isa = PBXBuildFile; fileRef = BBCF27136550EC50E081875275784C83 /* BSG_KSMach_Arm64.c */; }; + F1A4EF081FF2A5D0C5CA12DA474211AC /* BSG_KSMach_Arm64.c in Sources */ = {isa = PBXBuildFile; fileRef = 6C42D1AEB2EA0DD81E36AE847D421E47 /* BSG_KSMach_Arm64.c */; }; F1CFAD1BBFF7E0BDA26021957C170257 /* vp8_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = B0D7F4389F6E6CC404907A69EE8797DE /* vp8_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1DBD2564FDBAE92A9E4AA8D7CCC7E01 /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EEBCC60D88F119311E2306993289D72 /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1E1333AEA9A20A7D09582045666A987 /* EXVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = 56D107B000A8B0D9871E0D276C2B74AC /* EXVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1DBD2564FDBAE92A9E4AA8D7CCC7E01 /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 78AE025AF94C2093809106A016A35345 /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1E1333AEA9A20A7D09582045666A987 /* EXVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = 20F168BF5FD0754BFE7FF0FDA8265702 /* EXVideoView.h */; settings = {ATTRIBUTES = (Project, ); }; }; F253676650181C9AB4472384CDCFE3B9 /* CGGeometry+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = A1EC5104042BAFCD052B353B775968D7 /* CGGeometry+RSKImageCropper.m */; }; - F2678A8C2C1CC5973FADEE574737BDCE /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 690B02E454204005B57638DB0F9B8CA4 /* RCTInputAccessoryShadowView.m */; }; + F2678A8C2C1CC5973FADEE574737BDCE /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = C388D8B8AF0927DDBF721CD4F0BAC23B /* RCTInputAccessoryShadowView.m */; }; F2826D6E1658277DA089B70D6A8EE819 /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = 03D64694CDD23D5AA5D2926DA6659EED /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2DC4D68D95807B1FAB1279790CB7918 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 34051B0AED319EEDA4682DBE6B0DACF9 /* RNTapHandler.m */; }; + F2DC4D68D95807B1FAB1279790CB7918 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BDD5D8C1862DCB74794EE23E2C9D4D0 /* RNTapHandler.m */; }; F2E8A9FD857BB35C68640079AC2A68AB /* FIRInstanceIDAPNSInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 7121DEBABF2BDFF8481B59788B8C759F /* FIRInstanceIDAPNSInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2F6974CB2911E6E418367E261E1CB4A /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D44ADEA66B7D9218BADCBC933C7A6B3 /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F30AE70097060CD9BC8221D42344048D /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 685FE3980782BE2DDDB50F4D9DEF7AC8 /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F2F6974CB2911E6E418367E261E1CB4A /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = D96E9F96EC89E9F9284338352C43C102 /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F30AE70097060CD9BC8221D42344048D /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B321CCACE72FDC621355E383F7664018 /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; F34C639FB1271BA9041CE7D33BBB6859 /* FBLPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E1351AE14BC4DCE7B93E301AA99026B /* FBLPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F358B6463CF3BC773C24CE612205CF12 /* BugsnagNotifier.h in Headers */ = {isa = PBXBuildFile; fileRef = A6ADF59D1C982FA1E0C05A534D0328D6 /* BugsnagNotifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F358B6463CF3BC773C24CE612205CF12 /* BugsnagNotifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 538BC0B0037435C15B566E75E8D2C7FC /* BugsnagNotifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; F3A009B81FF8A92B347826968ED9AF1E /* demux.c in Sources */ = {isa = PBXBuildFile; fileRef = 66BE2E56E1110F499C048713FEB1CE2A /* demux.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F3E90E8C1586DE0BC8F64B440C00EF15 /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DB3A55DA2EE23AA22896E1AAC35CE39 /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3FF0E6A7EBEC4415BE364AC9798CBC4 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AA0F52207F6680AC6CC12E0FC833672B /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3E90E8C1586DE0BC8F64B440C00EF15 /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 40C8CDF7DDF4D4317E4FB9A090B13B2A /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3FF0E6A7EBEC4415BE364AC9798CBC4 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EB63F685143CFE850F245E806125F4AE /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; F40EA7396762A710141555DE1EF792D0 /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AE4C4F557F4921C9D27A6E75DDB9A1A /* ScopeGuard.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; F4227A5A22C299DB2F673D8875C42BAD /* picture_psnr_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = 54D0A0D72E5409D9555B3AB6C444425A /* picture_psnr_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F4604D394027188B0F18448BA46914DF /* FIRInstallationsLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 999C11E9F0B6529BC62034D8CCC9BC0B /* FIRInstallationsLogger.m */; }; - F4640C0CE6B316988B18BF1105985E43 /* BSGSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = F60E2EF468D037CB0D942D8EBA189471 /* BSGSerialization.m */; }; - F481E164606508264C13898ADAAAE788 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CC7D21AC60B2AAB8DE08718F0CF5314B /* RCTScrollContentViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F4640C0CE6B316988B18BF1105985E43 /* BSGSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FB321404EF961390E06B73C021A358C /* BSGSerialization.m */; }; + F481E164606508264C13898ADAAAE788 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F8F38AFD3B266BA2D4AEBDA526734BCC /* RCTScrollContentViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; F49F1B5A4B1DA201D133771E9923D648 /* webp_dec.c in Sources */ = {isa = PBXBuildFile; fileRef = 8D7029D8FB8076E86500FDD8484FDDD4 /* webp_dec.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; F4F2AD90553CB120BC682940433493B8 /* lossless.h in Headers */ = {isa = PBXBuildFile; fileRef = DB4059D2FB364A28E6585D247CD47FBA /* lossless.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F4F36A29C561D301C91A59338D5E8744 /* RCTKeyboardObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = B925713E8B07BC43A6B251B538AD3EA9 /* RCTKeyboardObserver.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F5100582E3FCC4BD8A1031EFC2E7CF14 /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = CEFD06A3C0255C0DD7E540F9AD5E5E2B /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F515A6E7B426BDEB13B544686F7E09B5 /* REABezierNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E7130322F2B2B2F8C06DCD1A9288949 /* REABezierNode.m */; }; - F518CDF6FC7F5085F4C33D36E71E6B35 /* RNCAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = 4772BB24FF087ABB268F34C6001F5DAE /* RNCAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F4F36A29C561D301C91A59338D5E8744 /* RCTKeyboardObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = 33E42C181DD42D9C5AB95F31B1DF9AC0 /* RCTKeyboardObserver.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F5100582E3FCC4BD8A1031EFC2E7CF14 /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 3868C09A16BB72A9B708B4819E23937A /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F515A6E7B426BDEB13B544686F7E09B5 /* REABezierNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C1DB3872977A9B38AA80081DB9F0D90 /* REABezierNode.m */; }; + F518CDF6FC7F5085F4C33D36E71E6B35 /* RNCAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = D2EB5842AB2F72FCE3166D064FA10F10 /* RNCAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; F526E360D7A60F00F7F67F7885804263 /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = B101A21C2A5287012254B056CFA7D4FC /* UIImage+ForceDecode.m */; }; F555F8C238747A97FF295FA277B84567 /* lossless_common.h in Headers */ = {isa = PBXBuildFile; fileRef = 21BBC4149E367B15994D55B0BE6395A3 /* lossless_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F567ADBF1B3738DBB51490CA6B7CE24E /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 181A77A89D32902A302952F3FCF15AC5 /* QBImagePickerController.m */; }; + F567ADBF1B3738DBB51490CA6B7CE24E /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = FD6A7F7AF7A06D9D2D5EBC4E87A4E5DB /* QBImagePickerController.m */; }; F56B25509F8FD04924C91D993984B005 /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54EB650E96F37C37F0F35851F8C12BA6 /* Conv.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F588489733C335360B5422279F3C2969 /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 9331613AA7DCF2A30266E92812D8A152 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F595927E48BC68499910B400D64A825A /* ARTShape.m in Sources */ = {isa = PBXBuildFile; fileRef = EA59CDB4F40FC74738755F21FD9179AF /* ARTShape.m */; }; + F588489733C335360B5422279F3C2969 /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A37B85ACEC04F42234F39F36922AF4DF /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F595927E48BC68499910B400D64A825A /* ARTShape.m in Sources */ = {isa = PBXBuildFile; fileRef = C6CB42DCB25CE96E7B610081A0C9032A /* ARTShape.m */; }; F59622D0F09DEF59155C8969D1B74946 /* FIRInstanceIDCheckinPreferences+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CC3251FDA9E9F879B68C261CF445809 /* FIRInstanceIDCheckinPreferences+Internal.m */; }; F5D27F49E8DEC09ED4DF62A5F2975463 /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 842C1C29367F774BD441F53EB6BD4437 /* diy-fp.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - F60DB066439D039A0455DFA72FCFD83F /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = F7564569153B3646AE14B6629780102C /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F6730E7A3A36F244F62EB6480A1E6304 /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5D57B59194C2DF888C374F2572B6C4D7 /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F60DB066439D039A0455DFA72FCFD83F /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = E99246ECA2FF3A52EF5E264B6D7ABC84 /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6730E7A3A36F244F62EB6480A1E6304 /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 09FEF9981606134C65ADBEB0FB57B17E /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; F678D6DF5474A127E8A5C548654BDE5C /* UIImage+ExtendedCacheData.h in Headers */ = {isa = PBXBuildFile; fileRef = 108BA2E99330882B915006784045B5A9 /* UIImage+ExtendedCacheData.h */; settings = {ATTRIBUTES = (Project, ); }; }; F6835F579A7F608E9D9DF7936BD0B6E5 /* cct.nanopb.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EE448D03DC1030CB1623347E60A913A /* cct.nanopb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F69EE9565EC9739DCBEAECC9B2096D35 /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 786146B866CF521A81994E9F50622913 /* RCTCxxConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F6B89787B48EB4A234BBEAD9D7FD761A /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F24CA04296687DC525C19E3508E7361 /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7305542A490B6F40F96281B25C15D50 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 57EF022C73BD0F88A58907CD6F984194 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F69EE9565EC9739DCBEAECC9B2096D35 /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = B4C688ACFAAB5C8C2F3F7922A721D3C3 /* RCTCxxConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F6B89787B48EB4A234BBEAD9D7FD761A /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 226179432C6080ECA229D01D76926AFC /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7305542A490B6F40F96281B25C15D50 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FFD0AEBB89BB36C053458AF452310619 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; F75DC605FC8D1F7681541CE667AB7CB4 /* huffman_encode_utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 102D559173B1A82E75F05608FC7771F9 /* huffman_encode_utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7957488A7E05B294D0FDCB86F08DE8B /* react-native-slider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0624EC83F8BA9DDD82C75BD1368A4942 /* react-native-slider-dummy.m */; }; + F7957488A7E05B294D0FDCB86F08DE8B /* react-native-slider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D814C2EE03734CB4327B241BBB99174D /* react-native-slider-dummy.m */; }; F7AA02141B7C9712F22D1023EE2FA272 /* syntax_enc.c in Sources */ = {isa = PBXBuildFile; fileRef = E5BFD2113CD9F64E3ED9DA735B433731 /* syntax_enc.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F7B792DEEF85A28A3315F3307DCB1A9E /* LNInterpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = FE01A817AF12C8D716A411A94FF9CEF5 /* LNInterpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7B792DEEF85A28A3315F3307DCB1A9E /* LNInterpolation.h in Headers */ = {isa = PBXBuildFile; fileRef = 31C12D553C2C6EBEDD958013FD380CD3 /* LNInterpolation.h */; settings = {ATTRIBUTES = (Project, ); }; }; F7B8AA8AD5C283D228877B2FC07E7E98 /* SDDeviceHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = CAB97B058E412E0CFCBF16E6AD07DCA2 /* SDDeviceHelper.m */; }; - F7EDF44CF901CFAE15E5A31C4B31A19C /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 174297031D5D97064D38A19C7DC9241E /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7FC446C7B196854DA9D5F0CCB37460B /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 426717A30224C3E0314EC82D0C8ABDA4 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F80534B97F3B0762396355EE60A3D145 /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E0135EE9EF6E64ED0A15859C04043B9B /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F831BA67263E221FBA278D7508C1607C /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 68D81A512B718B97E473BF6AB68B9261 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7EDF44CF901CFAE15E5A31C4B31A19C /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E755321532787F7DB40AC844B2A0AE0 /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7FC446C7B196854DA9D5F0CCB37460B /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F0E13FC825A0389AFB6D7962502FE1D /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F80534B97F3B0762396355EE60A3D145 /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 99FBE28ACFF451E8AC265AEE68702C39 /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F831BA67263E221FBA278D7508C1607C /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = DC23F2A6776968AC25F6B3A06A87CADB /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; F83D6DC16A3DDE2C67D8E9F41EF111A9 /* yuv_mips32.c in Sources */ = {isa = PBXBuildFile; fileRef = FF92B16CAA4A7AFB4FC58207B113E26A /* yuv_mips32.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - F87498071918FC238AE4EC261728F5A8 /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = B759F1B53D8E8BC2586922278DA8B9C3 /* RCTCxxUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F891A17F467C8B71420B0B6FC1B505FD /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = 69AF57D8E15BF741474E5EDAD33E1515 /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F87498071918FC238AE4EC261728F5A8 /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9BD2DF60DA184804CFE750C979ACC465 /* RCTCxxUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F891A17F467C8B71420B0B6FC1B505FD /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = 4575FF1293FEB3125B895E2A0DA0FD7B /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; F8F23B650278EC92BD4E1D20F5F3084F /* FIRInstanceIDCheckinService.h in Headers */ = {isa = PBXBuildFile; fileRef = CF993D633A32BC1ADCF4B996EA47AB13 /* FIRInstanceIDCheckinService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F933C60C18D983D25A94CD31A49C9954 /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = DCF6521E5919CF003A5CA05DB1ECD2E0 /* RCTProfileTrampoline-arm.S */; }; - F94498F57D718CB7AC71CD5A40393BD6 /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 00CAF1D34389375225EDD890D60EACCE /* RCTPackagerConnection.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F99C6EF148A5F929C6714A10414821BB /* react-native-jitsi-meet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EB64474F78A6BB6F97CC4740B32C7E6 /* react-native-jitsi-meet-dummy.m */; }; + F933C60C18D983D25A94CD31A49C9954 /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = 3A9A28B444753B9F9526CD5412636FE0 /* RCTProfileTrampoline-arm.S */; }; + F94498F57D718CB7AC71CD5A40393BD6 /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 82DE597588FF763411D2654522BE7936 /* RCTPackagerConnection.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F99C6EF148A5F929C6714A10414821BB /* react-native-jitsi-meet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 54DCCA8CF849B2B71253E54894E70343 /* react-native-jitsi-meet-dummy.m */; }; FA0980CF93ACFCE4817D2934112E098E /* ColdClass.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC3FBA3E5B2AE0036A215BD1C8E37D31 /* ColdClass.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; FA14342E79B4712BB89BFD6F442A6A64 /* enc_msa.c in Sources */ = {isa = PBXBuildFile; fileRef = 782DC576EA301487BA3AFF6CDF22C7F0 /* enc_msa.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FA261EF55BDA4678D08512DF89105B12 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = A04A060236236CB1CC69946A6634F6AB /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA41B3CEA87D34E244EA46A8F06EBCD1 /* BannerComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 6363E470823122AA16E3405C3E6F776E /* BannerComponent.m */; }; - FA44144AF28DD8451DD209C556DCD1BF /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = BB52110DE8E2349D608ED3EB4782BAC7 /* RCTTouchHandler.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FA6CDEB2A292F61C8FA52F4239629B79 /* RNVectorIconsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 45CE8B37F73C35AD44948FA7205C0F4A /* RNVectorIconsManager.m */; }; - FAA84D230376CBFEFBC366FE93E11B41 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 990864F692682DB3E444C12A8510DF88 /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB3F4050BDAAD6BDCFAEA8A02A706358 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 064C9E82E05BA7D0672A93207EA0A3B5 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB5F17821545A8F999EB39EDE058612B /* BSGOutOfMemoryWatchdog.h in Headers */ = {isa = PBXBuildFile; fileRef = 8659CD9676701F05C5E73AD43A3F580C /* BSGOutOfMemoryWatchdog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA261EF55BDA4678D08512DF89105B12 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AA5EC5DA0AC2A640AD55520734F6D8F /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA41B3CEA87D34E244EA46A8F06EBCD1 /* BannerComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 6838A85B8F9A94BEA6F282886E2B333E /* BannerComponent.m */; }; + FA44144AF28DD8451DD209C556DCD1BF /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 0142AF2AC764160F5E7DDCFAC7A40FC4 /* RCTTouchHandler.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FA6CDEB2A292F61C8FA52F4239629B79 /* RNVectorIconsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B3E5DD41E0FA57BBB1449FE2675DE59 /* RNVectorIconsManager.m */; }; + FAA84D230376CBFEFBC366FE93E11B41 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 148A1C8D6353A1FF05E6C4F40DF9FE8A /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB3F4050BDAAD6BDCFAEA8A02A706358 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 21DE35A2679D9ED09F78CC7F60A228D8 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB5F17821545A8F999EB39EDE058612B /* BSGOutOfMemoryWatchdog.h in Headers */ = {isa = PBXBuildFile; fileRef = 61935962D316655D08F4C0C658529A2B /* BSGOutOfMemoryWatchdog.h */; settings = {ATTRIBUTES = (Project, ); }; }; FB622B6F25A8FB70B8156427BB2963BB /* FIRInstanceIDKeychain.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D68CBDDD5A7D610F9E436686A07B74A /* FIRInstanceIDKeychain.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB82A5DA6674B7D813DE2686C03E2CC0 /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = CD254CE9CF8E43C6DE245D2EFBB1327A /* RCTScrollContentShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FB8A58CBBA5D6FA69A71DD1E1075091C /* BSG_KSFileUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CF2E9B29664C031D65952681C658B45 /* BSG_KSFileUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB97B1AE771BD3BCB2E5A6D924D3A9F2 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = 50C282BD01406EB53341BA80730F136A /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FBA62BAE57B920681ECCC87E951DD37B /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 96CE6B0ECBD3204E0C50C074AE3C78E6 /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FB82A5DA6674B7D813DE2686C03E2CC0 /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BE510633AEDC567A5FC1865B344C48C /* RCTScrollContentShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FB8A58CBBA5D6FA69A71DD1E1075091C /* BSG_KSFileUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = EAC3D0BCF30C8AE869CCC160C96A4108 /* BSG_KSFileUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB97B1AE771BD3BCB2E5A6D924D3A9F2 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4E637E78DD99F45D9C9882E5AB714206 /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FBA62BAE57B920681ECCC87E951DD37B /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 32535E19DA9B81F52BD854BC718FE596 /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; FBBA7842602DADBDAE57A0FC05A97B85 /* FIRInstallationsAPIService.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B019F88D183D8F0E9D8BF083F3699B1 /* FIRInstallationsAPIService.m */; }; FBED05764440E7FEF17C007B2437FB0D /* FIRVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = FA6C315437C3214205593E74AB412E48 /* FIRVersion.m */; }; - FBFF630974B4E7F16EF2281009230DC5 /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A7C248BADF3865A6618EF2C69F7E05D /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC43075F446DDCBCB3BEF943699C2806 /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = E1A49906A4E8D2A3DFE6B2A1C271E1B5 /* RCTImageBlurUtils.m */; }; + FBFF630974B4E7F16EF2281009230DC5 /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 15CFC51C2159AED55EF822EE01AA5DFD /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC43075F446DDCBCB3BEF943699C2806 /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 577553B429DDED8615E5E164CB183A63 /* RCTImageBlurUtils.m */; }; FC775095597914294ABF7C56BF70052A /* FIRComponentContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 0723D9254A0FF8AAD5189C6A5CDB013B /* FIRComponentContainer.m */; }; FC8EB7790089B59A9534F58C07FCF438 /* FIRInstanceIDDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = EB3D678D3F78C857A36FCEE91C3A72E5 /* FIRInstanceIDDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC98D260B0CFC32AFF56A78B6D25EEFA /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 150FB51A57D749CC6D1C8520B60A0C77 /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FCA9B32C098008A8220242E8353046E7 /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C82F5DA02C568BB4C4C5400DD44F5A00 /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FCDC5F5AF807DB5781447F7EC845B581 /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F086F98B3F77E66182412592E10B532 /* RNDeviceInfo.m */; }; + FC98D260B0CFC32AFF56A78B6D25EEFA /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 91BC942CF16AC147CAD7D1217158C055 /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FCA9B32C098008A8220242E8353046E7 /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07E5DA47E4212DB768DB092C518399AD /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FCDC5F5AF807DB5781447F7EC845B581 /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 01B218C01075CC627D6CD84828172CB7 /* RNDeviceInfo.m */; }; FCFBF36506CE48E9AD3D878FCD18ED4F /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BA675DA25C52E2FD5633ACE43240432 /* UIImage+GIF.m */; }; - FD0FD721DD68A6C1A0E02CD6C8D21303 /* EXUserNotificationPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 6100746B256DDD1521CB49EBC2877F8A /* EXUserNotificationPermissionRequester.m */; }; - FD4EFA8CC12FE490181AB0F8F45FEA83 /* Bugsnag.h in Headers */ = {isa = PBXBuildFile; fileRef = 38AF223B6C2A7948451309ED536B110C /* Bugsnag.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FD51669FC205662481C7CF2DA4AB6748 /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A87E4D5E2E4700D4A86435710A176C0 /* RCTSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FD93A07171842B9645ABA0BDD9EC9721 /* BSG_KSBacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 072013CF77A7E9DD1769B206AAF002C5 /* BSG_KSBacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FD0FD721DD68A6C1A0E02CD6C8D21303 /* EXUserNotificationPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = E6670F2D0C21AAC77816339E4F162C86 /* EXUserNotificationPermissionRequester.m */; }; + FD4EFA8CC12FE490181AB0F8F45FEA83 /* Bugsnag.h in Headers */ = {isa = PBXBuildFile; fileRef = 648EFD12C8881B842B22AA55F3DC4FE9 /* Bugsnag.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FD51669FC205662481C7CF2DA4AB6748 /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46B486541A6AA377CDD781BA73395D1C /* RCTSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FD93A07171842B9645ABA0BDD9EC9721 /* BSG_KSBacktrace.h in Headers */ = {isa = PBXBuildFile; fileRef = C80725470BFDE1260F794A5179DD62A2 /* BSG_KSBacktrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; FDC1636FB7D672F02CDD074DD9B040E9 /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 0ACF31EDEFE1E569CF6189573939269F /* SDWebImageDownloaderOperation.m */; }; FDD1A736761E6777D1D9DD0B5685900A /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 65985823BA9E59CD5D699B8553FBFC7A /* SDWebImageCompat.m */; }; - FE098B411C6CE6A74C722B985273AA07 /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A261092ADB1CF40A6E3D2F9C7D161383 /* experiments.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + FE098B411C6CE6A74C722B985273AA07 /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AA513D0B104EF704EEBE81CD19D01108 /* experiments.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; FE2DAFC3D1DB1C90CAD82D4C6CDC4BCC /* ieee.h in Headers */ = {isa = PBXBuildFile; fileRef = F790E8CC5AC5310B53CA380DA817176B /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE7D0BE1B4F581460DB11DCED18BCE1B /* RNCAssetsLibraryRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B476702B19503C1FDA97A6B38A5288F /* RNCAssetsLibraryRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE9C3D782258B259386212536AAD2830 /* ARTSolidColor.h in Headers */ = {isa = PBXBuildFile; fileRef = 585FF7AA3BD932ED49167696613A7A58 /* ARTSolidColor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE7D0BE1B4F581460DB11DCED18BCE1B /* RNCAssetsLibraryRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6123B2A15408A70B76B79C57A175C786 /* RNCAssetsLibraryRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE9C3D782258B259386212536AAD2830 /* ARTSolidColor.h in Headers */ = {isa = PBXBuildFile; fileRef = 39E2BF8E4BE4C32B9113556EDECA42ED /* ARTSolidColor.h */; settings = {ATTRIBUTES = (Project, ); }; }; FEACA20561A5919D3F143BC299FE7D8D /* SDAsyncBlockOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = F2659EE472B6D6569574FAB9D3BCFB98 /* SDAsyncBlockOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; FEE81DDBC8EE950322B4DFBC3C91A8F5 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = 19F7DAA1BD0C331F0062BBC640DBC35E /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; FEEE952E4702DBF6900E7A327CF08AE9 /* FBLPromise+Retry.m in Sources */ = {isa = PBXBuildFile; fileRef = BA065BF226D7D8BE5F672D1B12FD2519 /* FBLPromise+Retry.m */; }; - FF217BF4F60D6ABBE53FF634B951F784 /* FFFastImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = A7B18A8AF8D4C770AB7976F1BD5A587C /* FFFastImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF217BF4F60D6ABBE53FF634B951F784 /* FFFastImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 8097A444830D3C6CCE125A1719EBE321 /* FFFastImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; FF25A72AFBFDD3B1F8A677B56EE3F6C6 /* rescaler_sse2.c in Sources */ = {isa = PBXBuildFile; fileRef = D74BB20E1BC0B778FF8CFFA36C0840CF /* rescaler_sse2.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; - FF28A2B722BF2ACB2EEEA732848F44CD /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F3ADF9C76F2B35E241D0673AC307509 /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FF60B7B41824DC680D901D24F8DB2F78 /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = D4D3E4C632A4B02346E1FCF568BC9511 /* EXFileSystemLocalFileHandler.m */; }; - FF7C6B581125343FB5108C6A39FCBFFB /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 73EAEFEE2973DE2B608731E9FE3C8A25 /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF28A2B722BF2ACB2EEEA732848F44CD /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 312EAC12211C21781B4792A8CEB9CF55 /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF60B7B41824DC680D901D24F8DB2F78 /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C0237864402485714C0421AC8F8AADA /* EXFileSystemLocalFileHandler.m */; }; + FF7C6B581125343FB5108C6A39FCBFFB /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D8915AB6846EAFEF97610B429FEE5D2 /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; FF825C5AA742FABD882CD741329E55CF /* FIRInstallationsErrorUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = FC39B30F26E84F6B31EE5DC99AA7A735 /* FIRInstallationsErrorUtil.m */; }; FF8366ADAE423B2AFB5753C39F314128 /* alpha_processing_sse41.c in Sources */ = {isa = PBXBuildFile; fileRef = C9483040D5F6D422F682396B87AF87D3 /* alpha_processing_sse41.c */; settings = {COMPILER_FLAGS = "-D_THREAD_SAFE -fno-objc-arc"; }; }; FFC03B7D8F37AE0403024D9BD66DB19C /* vp8li_dec.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AF863C6208094AACCEA61A2F59700AB /* vp8li_dec.h */; settings = {ATTRIBUTES = (Project, ); }; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 009B366E5E2A3C5851414797EEDD5C92 /* PBXContainerItemProxy */ = { + 010F36F2347E5BDCBC4E6E49710D2278 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; - remoteInfo = "react-native-jitsi-meet"; + remoteGlobalIDString = 7573B71C21FB5F78D28A1F4A184A6057; + remoteInfo = "react-native-keyboard-input"; }; 013C8C712E31279FB89EBADB1C1A4BC4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2124,13 +2127,6 @@ remoteGlobalIDString = 64F427905796B33B78A704063422979D; remoteInfo = "rn-fetch-blob"; }; - 01E5B55FE466BBE88DFD1C484E69B112 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; - remoteInfo = UMConstantsInterface; - }; 01FFD3CB91B418CC5113D5E39E3FF816 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2138,14 +2134,14 @@ remoteGlobalIDString = 4D67CFB913D9C3BE37252D50364CD990; remoteInfo = RNUserDefaults; }; - 026F5244571FA414E08736B1E2149CA1 /* PBXContainerItemProxy */ = { + 02525C2141BB9A4A01F1E0FA5C519889 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; - remoteInfo = RNRootView; + remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; + remoteInfo = UMTaskManagerInterface; }; - 0276F213FBFC4511C62F0F477562E5B5 /* PBXContainerItemProxy */ = { + 026F5244571FA414E08736B1E2149CA1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; @@ -2159,19 +2155,19 @@ remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; remoteInfo = UMFileSystemInterface; }; - 031C2EA37CDB75891AE2780B35BA5650 /* PBXContainerItemProxy */ = { + 037069A333838AB146D7F63FFFE3951D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; - remoteInfo = EXAV; + remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; + remoteInfo = "rn-extensions-share"; }; - 03712FEDA4115C56DD8AD56ED7AB6180 /* PBXContainerItemProxy */ = { + 03F91BE40E4BA9EF5AEC14AE2493E3C6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; - remoteInfo = UMFileSystemInterface; + remoteGlobalIDString = 4D67CFB913D9C3BE37252D50364CD990; + remoteInfo = RNUserDefaults; }; 040622B4EF3FFAC25FCB8BED372F45F5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2187,13 +2183,6 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 05B411B5A4EB787DE1F9BC701E22AF0C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; - remoteInfo = RNReanimated; - }; 05C70C130BBF2D57D3A41CA7A93B606B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2201,6 +2190,20 @@ remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; remoteInfo = "React-RCTVibration"; }; + 05F3296DC7B71257BAB4E7EA20B49B5C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 214E42634D1E187D876346D36184B655; + remoteInfo = RNScreens; + }; + 065BFE3FBC016DE8B3F82D6E861F4425 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; + remoteInfo = FirebaseAnalytics; + }; 067E5D93DB083FB51E091E438339E7F1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2208,12 +2211,12 @@ remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; remoteInfo = RNReanimated; }; - 07DC6E90BB516E5BBEDABE6015A7FABA /* PBXContainerItemProxy */ = { + 079575269BF1C202F91689D97EB0CB8C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; - remoteInfo = PromisesObjC; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; }; 089558083C37398D29C4A58DC2A7459D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2229,12 +2232,12 @@ remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; remoteInfo = "React-cxxreact"; }; - 0D3E742EA786DBC3E2BF9E2225E7DCD8 /* PBXContainerItemProxy */ = { + 0C1F6CC4A277B307210A9116412BCF88 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ABB048B191245233986A7CD75FE412A5; - remoteInfo = Fabric; + remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; + remoteInfo = FirebaseCoreDiagnostics; }; 0D54CC8FA15B8E03ED01ED73B9D48C5F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2243,13 +2246,6 @@ remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; remoteInfo = "React-RCTVibration"; }; - 0DC6D7B6B51A1759AA29C1CFE8A83A64 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; - remoteInfo = RNBootSplash; - }; 0ECB4C54EED84F5258E41AFD4657F11F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2271,12 +2267,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 10A2CA64564D9BE7D4B0CDC43B00130B /* PBXContainerItemProxy */ = { + 10B716BE952DF4ACDC263269B6902701 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; - remoteInfo = RNDateTimePicker; + remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; + remoteInfo = "React-RCTBlob"; }; 10EEA2C29319093946EC6A3B886E46CC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2299,13 +2295,6 @@ remoteGlobalIDString = A83ECDA5673771FA0BA282EBF729692B; remoteInfo = RNFirebase; }; - 135111807A876FFA943605E046969218 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; - }; 13791CBAE3B4CCAF1FC636BA2BBD9DE4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2313,6 +2302,13 @@ remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; remoteInfo = UMConstantsInterface; }; + 13AC1F43D30AB26B7E2C8CF0E0C7AF85 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; + remoteInfo = GoogleUtilities; + }; 13EF1229647EEDD20E086226A26C9EA6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2320,12 +2316,26 @@ remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; - 1630DDB4D96B5C56F8CC9F20A2C9566E /* PBXContainerItemProxy */ = { + 14B666024CA64597B43CE38F6D7DDE09 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; + remoteGlobalIDString = FF879E718031128A75E7DE54046E6219; + remoteInfo = RNReanimated; + }; + 1681F444A2C51CE79C7CBC093E01B2B3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 18B56DB36E1F066C927E49DBAE590128; + remoteInfo = RNRootView; + }; + 182481D8C5E337F94FA9D3653C09772D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E16E206437995280D349D4B67695C894; + remoteInfo = "React-CoreModules"; }; 185B11EB8A27612A9B75BAA1ACDFBF0A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2334,6 +2344,20 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; + 1973D2AB91A1181FC1F0BCCCE2121517 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; + remoteInfo = FirebaseCoreDiagnosticsInterop; + }; + 1A6CA696B572F159D2EE37ABDDCD59DF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; + remoteInfo = RNVectorIcons; + }; 1AEF2AE5DA4BA57F6D0DD29D48C9BBB4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2341,6 +2365,13 @@ remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; remoteInfo = "React-RCTActionSheet"; }; + 1B0B63EFB5EDF8CAF404F6A7CA74FBED /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; + }; 1C84D35F43BF9C71C2EEE3812CDC5C8D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2348,12 +2379,12 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 1D878A6381A4238997D5B579163E3859 /* PBXContainerItemProxy */ = { + 1EB1D3D9073FEC354A84EF669DD545EB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; - remoteInfo = FirebaseAnalytics; + remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; + remoteInfo = UMCameraInterface; }; 1FE0D22DE8F2CC26E4B8CDC4387197BD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2376,13 +2407,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 226EAAFF3F88F12C59774DBDE73D5CC8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; - remoteInfo = GoogleAppMeasurement; - }; 2284921B4FC397971FFFACC555D01A18 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2390,12 +2414,12 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - 2317A40B7C150D46FAA9E0C3DCDB9517 /* PBXContainerItemProxy */ = { + 241B0C0FBFB4AB65D5322D5FF2360773 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; - remoteInfo = FirebaseInstallations; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; 243E1224598243CE0CCEE4E8D1F2D091 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2404,6 +2428,13 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; + 24E824196205BBC567A456AAE112E95F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; + remoteInfo = RNDeviceInfo; + }; 2539C386890D7883A108FF4E3829524A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2432,6 +2463,13 @@ remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; remoteInfo = "react-native-background-timer"; }; + 26354B7FDB6A56A235F8E0C3C3F671DD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; + }; 273EEB006344CBC3B742234147B60471 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2439,12 +2477,26 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - 28BC4B6D182A1D27AFA08B556E747E67 /* PBXContainerItemProxy */ = { + 27A25526B87AA7A8A1D634F37B5D6D92 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; - remoteInfo = UMAppLoader; + remoteGlobalIDString = A30157FD17984D82FB7B26EE61267BE2; + remoteInfo = RSKImageCropper; + }; + 2805E98090370AB565058323100E30E1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; + remoteInfo = Folly; + }; + 2A905BCFAF16D3E950B9D2A951CD7B8E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; + remoteInfo = RNGestureHandler; }; 2AB4E316E2673B76ACA537189D619922 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2474,6 +2526,13 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + 2C18553D873449FD7C3173E75DF691C9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 869CED37B4B77AAE35DF8B6E70788BBC; + remoteInfo = EXLocalAuthentication; + }; 2C95DFFCB2EC326C56D43774DED19805 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2488,26 +2547,12 @@ remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; remoteInfo = "React-RCTLinking"; }; - 2D1AA35A20094E6443447E8F9F65C5B9 /* PBXContainerItemProxy */ = { + 2E86699B107E612C4D1692104AA502A8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; - remoteInfo = RNLocalize; - }; - 2DA8FD4B3FFE4F55DA70E52BDA699220 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; - }; - 2F4213A00BA48DD07F2FD714B1A52A04 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; }; 3003CE0CFABA4E201818060DE26E35D6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2516,19 +2561,12 @@ remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; remoteInfo = RNBootSplash; }; - 304C800E427F82D90C34E1A52A661AFF /* PBXContainerItemProxy */ = { + 30D7589FC8A6B5E61EACF670AD7DE482 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0A915EE9D35CA5636731F8763E774951; - remoteInfo = UMCameraInterface; - }; - 30EAEAFC419AE08F635DB2086318C0A9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; - remoteInfo = "react-native-document-picker"; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; }; 311444313BA6A2014AF61E6FFCF67BB4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2537,20 +2575,6 @@ remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; remoteInfo = "react-native-slider"; }; - 311F21EA672234C162B1F34F1C02DF00 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; - }; - 315B8DAAF144D14207F6A71EA0436D24 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; - remoteInfo = UMReactNativeAdapter; - }; 32EDED458FEDBDD31B9D588BD688E1DA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2565,13 +2589,6 @@ remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; remoteInfo = RNVectorIcons; }; - 348632903E55247A44879A3CF2E78753 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; - }; 34B556DF76EB14506DA19B1213547A54 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2593,13 +2610,6 @@ remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; remoteInfo = UMImageLoaderInterface; }; - 36ED6E3FCEDC81325131F54C8CC01C7A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; - remoteInfo = "react-native-webview"; - }; 37562607B50897FB3AAA234B8CC037CC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2607,13 +2617,6 @@ remoteGlobalIDString = 9E25537BF40D1A3B30CF43FD3E6ACD94; remoteInfo = FirebaseInstanceID; }; - 3771870BC3D85AF57CBBDD44F9990F27 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; - remoteInfo = KeyCommands; - }; 386C0EB352726BA92F7F015C2FB264EF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2635,12 +2638,19 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 3C7C3304584EEE799BC8B7B9303A3DEF /* PBXContainerItemProxy */ = { + 3C6AAF9121D88F931A8C5859842DAD29 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; - remoteInfo = EXHaptics; + remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; + remoteInfo = RNFastImage; + }; + 3D02FF26ACBED825F851904ABFF34A97 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; + remoteInfo = "react-native-orientation-locker"; }; 3D45E3DCD38109B38F5BA73AFDB65794 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2663,6 +2673,13 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; + 3E67D0361165AA4BE02DBF5A3BD9A612 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; + remoteInfo = EXConstants; + }; 4081F7E82AA90518127218043568BD4D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2670,6 +2687,13 @@ remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; remoteInfo = "React-RCTAnimation"; }; + 4112A28F2A24F4716BA9B280425C93C1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9E25537BF40D1A3B30CF43FD3E6ACD94; + remoteInfo = FirebaseInstanceID; + }; 418E15E77F7E215AA9622C72DC826707 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2677,12 +2701,33 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 41C5364D3A2E064BF82FBB179744B077 /* PBXContainerItemProxy */ = { + 428AE3E3B0C434B2BE72A0E6DC13CFAA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6C1893932A69822CBE3502F2E0BCFB6D; - remoteInfo = EXConstants; + remoteGlobalIDString = EAB05A8BED2CAC923712E1C584AEB299; + remoteInfo = "react-native-keyboard-tracking-view"; + }; + 431A487526903183015DF762ADFE9D43 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; + }; + 443A841EF4596E3CCD4E5368DB1090E2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; + remoteInfo = nanopb; + }; + 449A7602971F7F4AD6E8484B88342D55 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; }; 449D79087AC8EFD285D3D6948D363A86 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2705,13 +2750,6 @@ remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - 466357888C957D35FD3CC1086163251D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; - remoteInfo = "react-native-slider"; - }; 46C8DE13FECE137E1DF29D2657A15C93 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2726,12 +2764,19 @@ remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; remoteInfo = "boost-for-react-native"; }; - 4DB049AE68293453192E1CEC8BA2A43D /* PBXContainerItemProxy */ = { + 49132977A4DA3680C1269CBAB66DEFE5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; - remoteInfo = UMImageLoaderInterface; + remoteGlobalIDString = 64F427905796B33B78A704063422979D; + remoteInfo = "rn-fetch-blob"; + }; + 4AAD8356AB559C18D4616CBF8EDFF5C1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; 4E10E94546B9897329BB7132343AC50E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2747,19 +2792,12 @@ remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; remoteInfo = "React-RCTNetwork"; }; - 4E3B033EEA55F3FA32B3BC861CB9E268 /* PBXContainerItemProxy */ = { + 4F327B4F5B04100E23934DEAE1F1ADF9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; - remoteInfo = UMFaceDetectorInterface; - }; - 4E893028394A552BE41B6226518DE75A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 64F427905796B33B78A704063422979D; - remoteInfo = "rn-fetch-blob"; + remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; + remoteInfo = FBLazyVector; }; 4F47ACA22456ABDDC1033CCE85E508AC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2768,12 +2806,12 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 4F542B7BEAB5005B3265BACDE9299050 /* PBXContainerItemProxy */ = { + 4F9FAD4B19C28355027266679630E3C7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9E25537BF40D1A3B30CF43FD3E6ACD94; - remoteInfo = FirebaseInstanceID; + remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; + remoteInfo = PromisesObjC; }; 4FF10556B9B41D07EFAC6AA420559421 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2824,13 +2862,6 @@ remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; remoteInfo = "rn-extensions-share"; }; - 547E94C3029432044C20F637A66A2197 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A30157FD17984D82FB7B26EE61267BE2; - remoteInfo = RSKImageCropper; - }; 54A7BA384E80D5DB0269C827877FE175 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2852,6 +2883,34 @@ remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; remoteInfo = ReactCommon; }; + 571319F08F76CC193EBD50B6E656DB59 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; + remoteInfo = "react-native-webview"; + }; + 5723BD8BC9FC87052D11640A573EA5A8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; + remoteInfo = ReactNativeART; + }; + 57EAE39E918ED16C96A59433DEDBE065 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A83ECDA5673771FA0BA282EBF729692B; + remoteInfo = RNFirebase; + }; + 590A41B12D8E65F97795BD838AF35F3E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; + remoteInfo = GoogleAppMeasurement; + }; 592671C6C3F74111AF89BE688E45B730 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2859,13 +2918,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 5970E9A1ABF2A305A073A3AB53C00BB1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; - remoteInfo = "react-native-background-timer"; - }; 59A6F7E541C545C99CA82678B8F26212 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2873,6 +2925,13 @@ remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; remoteInfo = SDWebImage; }; + 5B947975706BA7F74B186549D744C4F8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 897EF6A99176326E24F51E2F2103828C; + remoteInfo = UMReactNativeAdapter; + }; 5BE488B88EB1D7B8BFE4A63D278D4B18 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2880,12 +2939,12 @@ remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - 5DF272D084A199962A43D10C0BC00758 /* PBXContainerItemProxy */ = { + 5DDF9A546640B539CD3819B6E7B9C201 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; - remoteInfo = EXImageLoader; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; }; 5EED9A44D7E37951C7239080722062AE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2894,6 +2953,13 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + 5FF29D64C467F8686429C38FCC131E61 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2AD4F40E67E1874A0816F6B34289EB41; + remoteInfo = UMFaceDetectorInterface; + }; 60630CC2B00EAB9D8A1BC762FFB41D39 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2901,13 +2967,6 @@ remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; remoteInfo = "React-RCTImage"; }; - 60E25F7A2D036C215268B0133A2B25BC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; - }; 61101C6B91C9ABBD9763AA3B33D38B1C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2922,19 +2981,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 64503D6CF9D1179C0E7053FA07627612 /* PBXContainerItemProxy */ = { + 646FD43A8C1D0BF61EA88C3762BB9EF7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; - remoteInfo = FirebaseCoreDiagnosticsInterop; - }; - 6464B6E6A508315ADBF0DD9910C87F42 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; - remoteInfo = "react-native-appearance"; + remoteGlobalIDString = C0E41540D6862472ED7F2FA11669BE1F; + remoteInfo = Crashlytics; }; 65685AEAE3C8051C0DE124A6E5ACB197 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -2943,6 +2995,13 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; + 664EF26E9FE25B5113E4BA5E3DF75A7C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; + remoteInfo = UMSensorsInterface; + }; 66882DD906C9CBF33A822B0F489B5493 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2957,6 +3016,13 @@ remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; remoteInfo = GoogleDataTransportCCTSupport; }; + 679C5C413972E4C8C96CE0EDE50D9F82 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; + remoteInfo = "react-native-notifications"; + }; 67DBA14725D781CE21CD917340667E43 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2964,13 +3030,6 @@ remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; remoteInfo = FirebaseCoreDiagnostics; }; - 68882FE91E8F07801F9D4053F4DAB9BC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 50188AAB5FAECCA9583327DBA2B0AF2B; - remoteInfo = UMTaskManagerInterface; - }; 69B6897572B545367799A5E51AFE075D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -2992,12 +3051,12 @@ remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; remoteInfo = RCTRequired; }; - 6ABF63A64703FB6B8EDE20D7D0C9D210 /* PBXContainerItemProxy */ = { + 6B407D74ACD4C0726B90F63D35661B74 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7573B71C21FB5F78D28A1F4A184A6057; - remoteInfo = "react-native-keyboard-input"; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; }; 6BA468018F66C1D47DAEA3ECC88158D1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3006,6 +3065,13 @@ remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; remoteInfo = FirebaseInstallations; }; + 6D065445C5F828CD139CE00E33ABA0A9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D11E74324175FE5B0E78DB046527F233; + remoteInfo = "react-native-document-picker"; + }; 6D3BF89DF4987F4669AD095F4AB5877B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3013,12 +3079,12 @@ remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; - 6DACF8C0F22A39191BC967102D6C106D /* PBXContainerItemProxy */ = { + 6D40AA86B2E2885EA4685884E1B247A7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; - remoteInfo = BugsnagReactNative; + remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; + remoteInfo = GoogleDataTransport; }; 6DBD6F286817EB85A8F0BB2E8D08F4D9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3041,6 +3107,13 @@ remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; remoteInfo = Yoga; }; + 704327F4FCF1D8A6879F755448C69B26 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 97C4DE84FA3CC4EC06AA6D8C249949B7; + remoteInfo = UMImageLoaderInterface; + }; 70C8D8D121922CA292DF26257F5999A6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3048,12 +3121,19 @@ remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; remoteInfo = "react-native-notifications"; }; - 714A07B70CFE0D342507C7441A7733AF /* PBXContainerItemProxy */ = { + 70FAF6A591BC2B09C3E9689203FA3205 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 90148E8FD1C445D7A019D504FA8CBC53; - remoteInfo = ReactNativeART; + remoteGlobalIDString = 409F3A0DB395F53FFB6AB30E5CD8ACD1; + remoteInfo = EXHaptics; + }; + 720CC6AB7ACA5F827E8E8393EBC84D85 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6514D69CB93B41626AE1A05581F97B07; + remoteInfo = "react-native-background-timer"; }; 729C920815C311E1D586861019E10612 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3076,6 +3156,13 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + 7479C9A02CE9BD8D4DD262E3491EA1C7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0745200E60DC80C9A0A48B7E6C1518D7; + remoteInfo = BugsnagReactNative; + }; 74C2CAAD882619C327EBDCCC07631937 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3083,13 +3170,6 @@ remoteGlobalIDString = ABB048B191245233986A7CD75FE412A5; remoteInfo = Fabric; }; - 757B77F0B498E69396E0C74846D8BF12 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; - }; 76EEA5F62CC441995D555175CAB0A477 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3104,12 +3184,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 77C0307677F96E7EAA19E44B4AC1C36F /* PBXContainerItemProxy */ = { + 78960F097FC7A2E31B0C67A8BF19D7C0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; + remoteGlobalIDString = 014495932E402CA67C37681988047CA2; + remoteInfo = UMFontInterface; }; 7A9D426F64FA97581C779ECB7FA9F4E1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3125,12 +3205,12 @@ remoteGlobalIDString = C49E7A4D59E5C8BE8DE9FB1EFB150185; remoteInfo = FirebaseAnalytics; }; - 7BF3F72957B341826FB5C431428C574A /* PBXContainerItemProxy */ = { + 7C0EFBC3DA1A8FEEE7CCF50505737ECA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C0E41540D6862472ED7F2FA11669BE1F; - remoteInfo = Crashlytics; + remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; + remoteInfo = RNImageCropPicker; }; 7C309567C8843AC36F40EF4B09960A84 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3153,19 +3233,33 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - 7EC255EF0588263AD48E5A9D82667AA3 /* PBXContainerItemProxy */ = { + 7E6AE3A663516C885BEC6831BB93EA13 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 214E42634D1E187D876346D36184B655; - remoteInfo = RNScreens; + remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; + remoteInfo = "React-RCTText"; }; - 8031C67A3AC6BFD0567A0899EFCE3F81 /* PBXContainerItemProxy */ = { + 7ED2152CB8618F6EE3F905D50E567C27 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; + remoteGlobalIDString = 3FF2E78BB54ED67CA7FAD8DA2590DBEE; + remoteInfo = "react-native-appearance"; + }; + 802EFC4137516115D17EF457E62E586F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; + remoteInfo = EXPermissions; + }; + 803F096642966EB8F55A6272ACDE03AE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; }; 8075D3C81C368FF63B92A7E7DC84BF6B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3181,12 +3275,19 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 8127C199B09E7344E16D06C2DAC0BFF3 /* PBXContainerItemProxy */ = { + 81B20C29D8DE0AECFEEA7BFC3548E125 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; + remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; + remoteInfo = UMConstantsInterface; + }; + 81B4FA49E72F5B07122014F9148A9903 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; 81C7B5355049BCCDEE79296B202D9398 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3202,19 +3303,12 @@ remoteGlobalIDString = 5EB4B0B6DA6D5C0C3365733BEAA1C485; remoteInfo = FirebaseCoreDiagnosticsInterop; }; - 8334C8FC8577858592BDC0786942DFB0 /* PBXContainerItemProxy */ = { + 857F47971C60AB633BBCA1479AD1A1F9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; - }; - 858548AA95583BA281547528A7EB75C9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; - remoteInfo = libwebp; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; 861146BBBDF6493BE7981140D74FCF30 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3237,27 +3331,6 @@ remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; remoteInfo = GoogleUtilities; }; - 87902AC2034D180399F6F9616A496B19 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; - remoteInfo = UMPermissionsInterface; - }; - 87B1438B0FFEB51C8DCBA37F36B873A8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; - remoteInfo = GoogleDataTransportCCTSupport; - }; - 87E5C9F975AB763A5143A82246A5F346 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; - }; 882BEE9E8FCF0A6BD665F01DFBEF822B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3265,13 +3338,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - 8B0CC042D2BB6CFDE6FBCECEEEF2823A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8D7F5D5DD528D21A72DC87ADA5B12E2D; - remoteInfo = GoogleUtilities; - }; 8B7A5156DF566192088634AF35396110 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3279,13 +3345,6 @@ remoteGlobalIDString = 8D18C49071FC5370C25F5758A85BA5F6; remoteInfo = "react-native-webview"; }; - 8C57ADD29742FFBBDEBD6F8118B4A203 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A83ECDA5673771FA0BA282EBF729692B; - remoteInfo = RNFirebase; - }; 8CD598B3122E1B5D5E0411E9F8DFF385 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3300,6 +3359,13 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + 8E2912F692FBDA68360FBA733E4BD06E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 87803597EB3F20FC46472B85392EC4FD; + remoteInfo = FirebaseInstallations; + }; 8F2CFEAA002887A4B7BB9024FB93494D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3314,12 +3380,12 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 90F7EC51D8E0445FEB8FEF6F191B8E01 /* PBXContainerItemProxy */ = { + 90490396F7C1E940A6B8AD3BB303EFAD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; }; 914920FE125E08820136442E6C40FF7E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3328,6 +3394,13 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + 91BEA0F05746420FDC0C50149AEC23BB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7F591BD8674041AAAA4F37DC699B5518; + remoteInfo = KeyCommands; + }; 925B94B36D67D27AF51664D1645EC2F7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3335,19 +3408,12 @@ remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; remoteInfo = SDWebImage; }; - 9389B24C6FEE926EB5868FF077EE995B /* PBXContainerItemProxy */ = { + 94B3FE0841D5771605B743B9D9C34B0F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1092C13E1E1172209537C28D0C8D4D3C; - remoteInfo = "react-native-orientation-locker"; - }; - 944166BB75C3540947B47A61E00F1027 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 449C1066B8C16DEDB966DCB632828E44; - remoteInfo = RNAudio; + remoteGlobalIDString = 9668C19AA6D8EA320F83875FA286855A; + remoteInfo = UMConstantsInterface; }; 95BD7607104E910918F88DD81F19B1C1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3356,12 +3422,12 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - 960835EC514314A05F7943573E7BEFC2 /* PBXContainerItemProxy */ = { + 965AB3845BF6C37B9A2E428591D1EE93 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; - remoteInfo = UMCore; + remoteGlobalIDString = D760AF58E12ABBB51F84160FB02B5F39; + remoteInfo = RNDateTimePicker; }; 973587FD3243D488ACC2A2CBA4B833BD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3377,13 +3443,6 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 983212EB1986FDC908F36896EC393334 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A238B7CE3865946D1F214E1FE0023AAE; - remoteInfo = "rn-extensions-share"; - }; 983AD1895C24585DEA95A1E14A0A74C6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3391,12 +3450,12 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - 998F35AD969AB327A363BDA289A1D1EE /* PBXContainerItemProxy */ = { + 98DC88E4F289D79EC718F92BFAEEA55A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EAB05A8BED2CAC923712E1C584AEB299; - remoteInfo = "react-native-keyboard-tracking-view"; + remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; + remoteInfo = UMBarCodeScannerInterface; }; 9999A457A3E364808C9E122EC64D955D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3405,6 +3464,13 @@ remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; remoteInfo = "React-RCTNetwork"; }; + 99F60170E12FF8170CD126673B97BE8D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B51433D546A38C51AA781F192E8836F8; + remoteInfo = RNLocalize; + }; 9A2D94180C1D8549B209C4F116F4FC88 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3426,13 +3492,6 @@ remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; remoteInfo = "React-RCTBlob"; }; - 9B9B97ED97C50B630A191963DB572D6F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; - }; 9EEE23D6519FCEE6884F6DF117317D7A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3440,6 +3499,13 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; + 9F4E2440EF4574322286CDA4DA94C082 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 13D7009C3736FB694854D88BAD4742B6; + remoteInfo = EXAV; + }; A1CACC0574AB439458D00BDADA747D2B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3454,13 +3520,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - A299ADA3FDB57DC308D9943551798DC9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; - }; A33043B018A8D3B28DA9124A1579E13A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3475,12 +3534,19 @@ remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; remoteInfo = Yoga; }; - A3DBDB7E61928C7A987A5757D63FC1D8 /* PBXContainerItemProxy */ = { + A5C032CADFDD5FF9425906A35EEF7600 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; + }; + A5E93EA8063D382962CD625FB871E75A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3E5D106F8D3D591BD871408EEE0CC9FD; + remoteInfo = "react-native-video"; }; A6C96CD915FAFFA438FE9774216C27FC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3517,13 +3583,6 @@ remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; remoteInfo = "React-jsiexecutor"; }; - A967341B3ABFCE9F8CB2F366C557AE3F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; - }; A9D92F68FAFAEBBE26C78B0172ED347C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3531,13 +3590,6 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - AA4771F2AE7A8217798AF679AFBD766C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; - }; AA5B8F43EAD114EE3717346D55C72BE5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3552,6 +3604,13 @@ remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; + AD880691E573EBE9FCDF6F2A893C48CE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; + }; AEC8DF6D4B91F6B6CAA5DFE9C52B76F8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3566,12 +3625,12 @@ remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; remoteInfo = "boost-for-react-native"; }; - B01B77BFA13926F2953C36CCF9208B26 /* PBXContainerItemProxy */ = { + AF3BD2E560D9BCB5EB0470EC5E3F3D6A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; + remoteInfo = "react-native-cameraroll"; }; B10540874D34CE93E1E04DA052C09DD7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3580,6 +3639,13 @@ remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; remoteInfo = "React-RCTLinking"; }; + B12303CADAB09821A27E506ABCC2BF15 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; + remoteInfo = SDWebImage; + }; B18F531D8621BA8DA9400B26175750BE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3622,13 +3688,6 @@ remoteGlobalIDString = 014495932E402CA67C37681988047CA2; remoteInfo = UMFontInterface; }; - B6F6DE272AE840D439D4E212F15B9972 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 868B90C74770285449C60DBA82181479; - remoteInfo = EXFileSystem; - }; B7282A609EFDBCCF6DFE5923B1E9396A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3657,6 +3716,13 @@ remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; + B9FDCA5AC3313C8525A813F6509EA979 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A4EF87F5681665EAE943D9B06BBB17DF; + remoteInfo = "react-native-slider"; + }; BB43E3440C83F8BC24E141BE6C01D507 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3671,19 +3737,12 @@ remoteGlobalIDString = B53D977A951AFC38B21751B706C1DF83; remoteInfo = GoogleAppMeasurement; }; - BC053D6398114D625FF0A3961F6EADDD /* PBXContainerItemProxy */ = { + BC406AA3DA99669F34D95FC9E8727CCE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; - }; - BC0E24BAD53CA37058593F97F194653F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; - remoteInfo = FirebaseCore; + remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; + remoteInfo = SDWebImageWebPCoder; }; BD32043515F4B199AB0E22406C68A35D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3692,12 +3751,12 @@ remoteGlobalIDString = 214E42634D1E187D876346D36184B655; remoteInfo = RNScreens; }; - BEE30E3C2F5A9552CB3F23E358CFDFDD /* PBXContainerItemProxy */ = { + BE30554915EAC89D8ABF9586ADFB7195 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 96150F524B245896B800F84F369A9A5A; - remoteInfo = RNVectorIcons; + remoteGlobalIDString = 4402AFF83DBDC4DD07E198685FDC2DF2; + remoteInfo = FirebaseCore; }; BF32D407ED9D0F154DE76F25EEB923DB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3713,13 +3772,6 @@ remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - BF84C143D6EBE43DF555D15B5EE3ACE0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BA3F5E5AA483B263B69601DE2FA269CB; - remoteInfo = "react-native-cameraroll"; - }; BFD1349A73D002FF8BADA635DB23EA34 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3748,19 +3800,19 @@ remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; remoteInfo = FBLazyVector; }; - C1E040C72155E0BD72C0036B503132D1 /* PBXContainerItemProxy */ = { + C25EC963308C8AD23F2EAEE4190FBF7F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2038C6F97563AAD6162C284B3EDD5B3B; - remoteInfo = UMSensorsInterface; + remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; + remoteInfo = EXWebBrowser; }; - C46FA263189B0ECE07304B366E0F235D /* PBXContainerItemProxy */ = { + C295506CE457FFFFB2D724BE5655F8B0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 263266A9E29FFF0E9C8CA0E4582BFCF4; + remoteInfo = EXImageLoader; }; C505646291F935A38C2D95467150C6BF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -3790,6 +3842,13 @@ remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; + C6344B644685ABDE6E42DAE49708EB83 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C452F579644C83E8D8E36EC24A9BBD46; + remoteInfo = UMAppLoader; + }; C6B6F02506FCA9766276DEF5FAE04229 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3811,6 +3870,20 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + C833FE201BE782A869104308A103F20A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; + remoteInfo = JitsiMeetSDK; + }; + C88F1C5A940B23F4CC7C8E730D593988 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = ABB048B191245233986A7CD75FE412A5; + remoteInfo = Fabric; + }; C8C199D46FD3DD67148F0D47BF9A2023 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3832,6 +3905,13 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; + C9BE69FB541275F9EC7555AE25270410 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; + remoteInfo = Firebase; + }; C9C235729131851E3935743551F6290B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3853,6 +3933,13 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + CB066F03A91730AB0A64FB00C885A955 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 868B90C74770285449C60DBA82181479; + remoteInfo = EXFileSystem; + }; CB8A7E990CD7E856B8CADD28DC191F90 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3860,13 +3947,6 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - CC7579BE594E9C2055FF160E880AE8D1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; - }; CCFD53E94AFA8D4B32BA9AA6DA6A23FB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3881,20 +3961,6 @@ remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; remoteInfo = "React-RCTImage"; }; - CD7690E946928C6C0840D661BE36A3E0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; - remoteInfo = nanopb; - }; - CDBE94877C6D4B970862A0ADD531BFB6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1953860EA9853AA2BC8022B242F08512; - remoteInfo = SDWebImageWebPCoder; - }; CE4ABC821438FE01620EA075157CDAD2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3902,20 +3968,6 @@ remoteGlobalIDString = EAB05A8BED2CAC923712E1C584AEB299; remoteInfo = "react-native-keyboard-tracking-view"; }; - CE84263865CA613B1FA36C369A82E708 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0D82774D2A533D3FFAE27CAB4A6E9CB2; - remoteInfo = RNImageCropPicker; - }; - CEB3DDBD3B319EA1083FDAFB813591F1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; - remoteInfo = SDWebImage; - }; CEEAB0ABDC6919813DC4584C776CA72F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3944,13 +3996,6 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - D1B96D1A2A83B4518555350707DCC5E4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E16E206437995280D349D4B67695C894; - remoteInfo = "React-CoreModules"; - }; D1DD6F0528614F3F6A959C01AB7F7DCB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -3972,12 +4017,12 @@ remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; remoteInfo = "React-RCTNetwork"; }; - D3EE9341838CA7E943BB9AD25B50B193 /* PBXContainerItemProxy */ = { + D34E826E72AAC6075591C569DE222FC3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 014495932E402CA67C37681988047CA2; - remoteInfo = UMFontInterface; + remoteGlobalIDString = 449C1066B8C16DEDB966DCB632828E44; + remoteInfo = RNAudio; }; D465047540D12FD9D95291AE82A76DB9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4007,6 +4052,20 @@ remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; + D62C017428E93B98F00E023C43EC1EE8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; + remoteInfo = UMCore; + }; + D681F2B0538A69821F2C0FD7218C3B49 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F4F25FCAC51B51FD5F986EB939BF1F87; + remoteInfo = GoogleDataTransportCCTSupport; + }; D88726238C500FF73BA8C26C24D566C2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4028,6 +4087,13 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; + DA35838819017E5F13ACCA694A4E876D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; + }; DA72BD0D2ED3CB12079CDD61E7D8396D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4035,20 +4101,6 @@ remoteGlobalIDString = 2BBF7206D7FAC92C82A042A99C4A98F8; remoteInfo = PromisesObjC; }; - DB563667E5597F27C55793C16A9BC07F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0A72FB88825FDC7D301C9DD1F8F96824; - remoteInfo = EXPermissions; - }; - DDB8A150219B61420412DA360BC8EEBB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = CA400829100F0628EC209FBB08347D42; - remoteInfo = "react-native-notifications"; - }; DDC3038F75F2A9519773ABAA55479EB1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4056,6 +4108,13 @@ remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; remoteInfo = "React-RCTText"; }; + DDEC6C04AA59AC1B97F3C2BB108C4518 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D39AB631E8050865DE01F6D5678797D2; + remoteInfo = "react-native-jitsi-meet"; + }; DDFCA674E1FE8DC1DB86D5A0C0A1FB6A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4077,12 +4136,12 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - DEB197AF412E24C112F52BB60EB5FBEE /* PBXContainerItemProxy */ = { + DE9AC43A73900857969F0FAA687D7E50 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = 6677891AC2F7AB93E04BFF30B293A46B; + remoteInfo = RNBootSplash; }; DF12C5D7BB68C2724D2F39A531F2A52A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4098,13 +4157,6 @@ remoteGlobalIDString = DBCB1B4965863DDD3B9DED9A0918A526; remoteInfo = UMCore; }; - DFB4A58260571AB91C9D0C4EB0E6A1B7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; - remoteInfo = RNFastImage; - }; DFCEEA3FA40436CB4AA040326D6F8E6D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4119,19 +4171,12 @@ remoteGlobalIDString = D2B5E7DCCBBFB32341D857D01211A1A3; remoteInfo = nanopb; }; - E137612F47B7A22F0242E14FC690929F /* PBXContainerItemProxy */ = { + E3055A8F01220FCFBA2C6E15CEAAA9B4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3E5D106F8D3D591BD871408EEE0CC9FD; - remoteInfo = "react-native-video"; - }; - E13B3730EAAD0D2C19BDCA36DD877D2F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 620E05868772C10B4920DC7E324F2C87; - remoteInfo = FirebaseCoreDiagnostics; + remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; + remoteInfo = "React-RCTAnimation"; }; E3DCB3D8F0A533B7BB46EB61E99CA3EE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4175,6 +4220,20 @@ remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; remoteInfo = Folly; }; + E9C75B361059AEFF9DABA06F2AB989EA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 47D2E85A78C25869BB13521D8561A638; + remoteInfo = libwebp; + }; + EA5E346BB2401BCD34D7C25846427199 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; + }; EA7D3C9BF70768251AC619FFF3DC5BAD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4182,13 +4241,6 @@ remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; remoteInfo = RNDeviceInfo; }; - EBF3E550B17EEEE25D8FAB7E96AD83A4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5B40FBDAD0AB75D17C4760F4054BFF71; - remoteInfo = JitsiMeetSDK; - }; ECB0846A8D8B0BEE23EE31A925213C3A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4217,12 +4269,12 @@ remoteGlobalIDString = C0E41540D6862472ED7F2FA11669BE1F; remoteInfo = Crashlytics; }; - EF12062ACBD3E6ED97BAD7CDB5D34D97 /* PBXContainerItemProxy */ = { + EF1EEBC25EEF9243F1A601C1A96218C2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 072CEA044D2EF26F03496D5996BBF59F; - remoteInfo = Firebase; + remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; + remoteInfo = "React-jsiexecutor"; }; EF35D916FEB5C7D4563D576974DC8374 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4259,13 +4311,6 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - F1FAA6FE9B6B2A3E535F20FB1BB8CC36 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4D67CFB913D9C3BE37252D50364CD990; - remoteInfo = RNUserDefaults; - }; F2DC85F54A13CF837109A697617C4E93 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4294,6 +4339,13 @@ remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; + F5A9D915D6C8FD061CB4DB0667D354C8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2644525CCE081E967809A8163D893A93; + remoteInfo = UMFileSystemInterface; + }; F5F7CB4B73527CAE5938631602CC182F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4322,12 +4374,12 @@ remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; remoteInfo = "React-RCTText"; }; - F78CA6764FF0A3E4A6A11A27010FB8AF /* PBXContainerItemProxy */ = { + F7C50B898D179D7DFE35ECD39EC435E5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 807428FE76D80865C9F59F3502600E89; - remoteInfo = RNDeviceInfo; + remoteGlobalIDString = F7845084F0CF03F54107EEF7411760AD; + remoteInfo = UMPermissionsInterface; }; F9BC7D28AD87790D95A38C36E89FA025 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -4343,27 +4395,6 @@ remoteGlobalIDString = 0BB7745637E0758DEA373456197090C6; remoteInfo = RNFastImage; }; - F9E81C3B88924A5793FE10331731D898 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 49821C2B9E764AEDF2B35DFE9AA7022F; - remoteInfo = UMBarCodeScannerInterface; - }; - FA0CF652A37D1E756453BEDCBDE97146 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; - }; - FA8F60EF2A2A0BC56FA8B5C042E073D1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; - remoteInfo = RNGestureHandler; - }; FC21EA40C24BBDB20C2BE4568BC0017C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -4378,2341 +4409,2341 @@ remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; remoteInfo = React; }; - FCBB1B42DCB705A8679475F8526B16E1 /* PBXContainerItemProxy */ = { + FD2DF1CD4E96EAAF9AA56671852F345E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9EB556EE511D43F3D5D7AAF51D8D0397; - remoteInfo = EXWebBrowser; - }; - FD2BBD7914DC0A39373ABFE08B456E66 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5C0371EE948D0357B8EE0E34ABB44BF0; - remoteInfo = GoogleDataTransport; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 00002E8FB2C0CA6E6D8DFBF2547CADBC /* UMSensorsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.xcconfig; sourceTree = ""; }; - 000FC0F253268189A87D3FD6261B5CFA /* rn-fetch-blob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.xcconfig"; sourceTree = ""; }; - 001A5C06BAB91C0F64838710C7B61912 /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = event.cpp; sourceTree = ""; }; + 0018DB3096F92D334478C93DC9F0224C /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; 001B7F2F6A312651D3606F252836C2F5 /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = src/demangle.cc; sourceTree = ""; }; - 0036AEE678787725C977E1A36F674AD6 /* RNFetchBlobFS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobFS.h; path = ios/RNFetchBlobFS.h; sourceTree = ""; }; + 003F77A050EC3E8996B044A5976155EA /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "ios/QBImagePicker/QBImagePicker/zh-Hans.lproj"; sourceTree = ""; }; 0078CF9DAC8CC4187F6E291B8F51727E /* SDImageIOAnimatedCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoder.h; path = SDWebImage/Core/SDImageIOAnimatedCoder.h; sourceTree = ""; }; - 0096C45B37BCEA61A77CC464024A90FC /* QBCheckmarkView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBCheckmarkView.m; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.m; sourceTree = ""; }; + 0086AEEAD45DC59D6693CBD261CE72B5 /* RNFirebaseInstanceId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseInstanceId.h; sourceTree = ""; }; + 008EF4A8E637E3AEF9D320EA581F1D58 /* BSG_KSSignalInfo.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSignalInfo.c; sourceTree = ""; }; 00A08DD362055E20F1FB0559D19644E4 /* GDTCORStoredEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORStoredEvent.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORStoredEvent.m; sourceTree = ""; }; - 00CAF1D34389375225EDD890D60EACCE /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPackagerConnection.mm; 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; }; + 0142AF2AC764160F5E7DDCFAC7A40FC4 /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; + 014EF95AAC4DFB40DC1F1AFC58414C97 /* RNUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNUserDefaults.h; path = ios/RNUserDefaults.h; sourceTree = ""; }; 014FBCA79FB8FD0C06F5F4EBBC1B6BE8 /* FIRInstanceIDVersionUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDVersionUtilities.m; path = Firebase/InstanceID/FIRInstanceIDVersionUtilities.m; sourceTree = ""; }; - 01544C0A323FB8C35DFBB477A1FE6428 /* React-jsi.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.xcconfig"; sourceTree = ""; }; 0162C892BDD766E04E2714F47090AB60 /* FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRApp.m; path = FirebaseCore/Sources/FIRApp.m; sourceTree = ""; }; - 017C43B026CB04C1EF78BFBE3ECC4F37 /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; 017CC1B34A00D5D000439D51172861CF /* FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptions.h; path = FirebaseCore/Sources/Public/FIROptions.h; sourceTree = ""; }; - 01BA4F6CDF122A85D4FEC3D3AE900FB7 /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = ""; }; - 01CF4554E741926D31EF30679F8D8CC7 /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; - 01D1031E2444DF454E531A9DC65702B7 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nManager.h; sourceTree = ""; }; + 018DA950D2BC6582FBF0875EF15BE036 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = ""; }; + 01B218C01075CC627D6CD84828172CB7 /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; + 01FB45C7FD3C9C71EE2326C6D2C35FB0 /* KeyCommands-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeyCommands-dummy.m"; sourceTree = ""; }; 01FEFA98B5E8668AD537CEE144C68D35 /* FIRInstallationsKeychainUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsKeychainUtils.h; path = FirebaseInstallations/Source/Library/SecureStorage/FIRInstallationsKeychainUtils.h; sourceTree = ""; }; - 021D3A238914E4C4396D0F66537A9862 /* REABezierNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABezierNode.h; sourceTree = ""; }; - 02226A43F8307859A386CB61543C5E17 /* RCTNetworkTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNetworkTask.m; sourceTree = ""; }; - 02780F2B2D2239DCC2F77193E2D15E82 /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = ""; }; - 02B273A00658D942D23E36B021688801 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; - 02B75C8F90265EEBA66E0C8EE71B6B25 /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; - 02B778A4B4AB6FC889FF15E6943BFC10 /* EXVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoPlayerViewController.m; sourceTree = ""; }; + 0200BF5B53B1EAE97CEA1BBB0277DC76 /* AntDesign.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = AntDesign.ttf; path = Fonts/AntDesign.ttf; sourceTree = ""; }; + 024606C24DFB6DFF07FD9F7FC9556B48 /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = ""; }; + 029605E4F75D599083442F50C89433FC /* react-native-keyboard-tracking-view-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-keyboard-tracking-view-dummy.m"; sourceTree = ""; }; 02B92AD44CE84D68E6DC4BD460DA089D /* Fabric.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Fabric.framework; path = iOS/Fabric.framework; sourceTree = ""; }; - 02BCE96DAA4141BCC0FA88CBC7F36DF2 /* Zocial.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Zocial.ttf; path = Fonts/Zocial.ttf; sourceTree = ""; }; - 030383C37C015A0A7495A41108ED8282 /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = ios/QBImagePicker/QBImagePicker/es.lproj; sourceTree = ""; }; - 032D1211FB26C186977EF1BE4D4D822D /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; sourceTree = ""; }; + 0302318BE1A4996F6362DEECA23878B8 /* JSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSCallInvoker.h; path = jscallinvoker/ReactCommon/JSCallInvoker.h; sourceTree = ""; }; 037048A23ACDD15887BD75AFB6F14662 /* GDTCCTPrioritizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTPrioritizer.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTPrioritizer.h; sourceTree = ""; }; 037F5EC90407C5CE3418149B6C7A824B /* utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = utils.c; path = src/utils/utils.c; sourceTree = ""; }; + 0381A251667F2E0736F1F8B62BCAA077 /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; 0383EBC057B08B3B4D8E2D06F7D33F38 /* GULNetworkMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkMessageCode.h; path = GoogleUtilities/Network/Private/GULNetworkMessageCode.h; sourceTree = ""; }; - 039F8CCF120C1DF125B71E7498805BE2 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 03C3CDA2CF0DA9F0A6D414B553B98ED9 /* react-native-appearance-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-appearance-prefix.pch"; sourceTree = ""; }; - 03D2EC049AA7AA9388E7BE1D539DDC8A /* RCTKeyCommandsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandsManager.h; path = ios/KeyCommands/RCTKeyCommandsManager.h; sourceTree = ""; }; + 03985525EDA89F3F7A68A80B93EC051C /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; + 03C581B5EAD8C9A859EE4A56D56414BA /* RNFirebaseCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseCrashlytics.h; sourceTree = ""; }; + 03D230A5DC176F0B184A61B8C98B6BEA /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; 03D64694CDD23D5AA5D2926DA6659EED /* vlog_is_on.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vlog_is_on.h; path = src/glog/vlog_is_on.h; sourceTree = ""; }; - 040AE7C4C5960E5068564B1669AC7E23 /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; - 0410C8D27F334123935DEE0E751BB616 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 042BD1F843AF0B4A4B0B1CF490C929B6 /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; - 0456C2D13A1432E8F3873A6AC42239DD /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; - 04758008ADD0BC76EE636BDA8FCEE11E /* NSValue+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSValue+Interpolation.h"; sourceTree = ""; }; - 04BD6390C90806014868F7551406BFDA /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = Libraries/ActionSheetIOS/RCTActionSheetManager.h; sourceTree = ""; }; - 04C381672D051C2816D59F6B5E2544F2 /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; - 04D9890E05EDA71F5F625F17AF28414C /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = ""; }; - 04EA08A77D9346780B4B301D8DE2F6B8 /* REAValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAValueNode.m; sourceTree = ""; }; - 04EA1C75A760C09973E3167EFE3E6935 /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; - 04F28DD77A9FB29773F86A16D7162345 /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; + 03DEF745B4A8AB46F50B24D0270F4753 /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; + 03E428AC1A9B8C1B06A9AE52D832972D /* UIView+FindUIViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+FindUIViewController.m"; path = "ios/Video/UIView+FindUIViewController.m"; sourceTree = ""; }; + 041AE7063506BA408912E1C0DC8B5B9F /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = ""; }; + 0498B64643BBE06318BD049DCBD0A9E6 /* 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; }; + 04AC24105BA7DC4445C81E39B4B8D8BE /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = ""; }; + 04B0350A98F7FD6735CBAA7A93BD01B1 /* RCTLinkingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLinkingManager.m; sourceTree = ""; }; + 04BE1D6CA0CD9241EB81A4AB5F3C45A9 /* RNGestureHandlerEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerEvents.m; path = ios/RNGestureHandlerEvents.m; sourceTree = ""; }; + 04ED4DEE7B509B2575509E63CEB2B1AD /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = ""; }; 0500B10E6BA68DF16917B05F920FA4CE /* quant_levels_dec_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant_levels_dec_utils.h; path = src/utils/quant_levels_dec_utils.h; sourceTree = ""; }; - 0502C86B7DF4B00EAC6505457E2B31C3 /* RCTLocalAssetImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLocalAssetImageLoader.m; sourceTree = ""; }; - 0515730473F4E50F849E1EB2361EC5F0 /* RCTNetInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNetInfo.m; sourceTree = ""; }; - 053250B4E1F9B565A8C721AFF28B912D /* ARTPattern.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTPattern.m; sourceTree = ""; }; - 0572B4EB9F4F75A40B37AA4D6D5EA83D /* RCTTypeSafety-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-prefix.pch"; sourceTree = ""; }; - 05B1E533FC7DC6FD39092E4978318E1A /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; - 05C5F05F167A7407E3BC0A5C60D195CF /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; + 058883D577F30E4210855B6DE5283D8B /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; + 058D28B4A68C709F7AA6A06D8A25D3F3 /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; + 05B625DEEE974C099FC67FA0558BC026 /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; 05D21B2E62B525961EA9BE1309FB1D32 /* Unicode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Unicode.cpp; path = folly/Unicode.cpp; sourceTree = ""; }; + 05DE3B152B393181033A3529CEC2B6BE /* react-native-jitsi-meet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.xcconfig"; sourceTree = ""; }; 05F2BC055A4813F5A29FBD88A3F3261D /* FBLPromise+Then.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Then.m"; path = "Sources/FBLPromises/FBLPromise+Then.m"; sourceTree = ""; }; + 05FCAD5BF02AFE224924B65BD9903055 /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; 0605FB329064F4B740AB3DA84343A94A /* vp8_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8_dec.c; path = src/dec/vp8_dec.c; sourceTree = ""; }; - 0624EC83F8BA9DDD82C75BD1368A4942 /* react-native-slider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-slider-dummy.m"; sourceTree = ""; }; + 06277AF1991D365E5B1E771917DD49D7 /* BSG_KSSysCtl.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSysCtl.c; sourceTree = ""; }; + 0630350963F5CC0D94D065864C0C43AF /* RNCSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSliderManager.m; path = ios/RNCSliderManager.m; sourceTree = ""; }; 064078AF10DF91404B3DE14C08B4C6D7 /* filters_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = filters_utils.h; path = src/utils/filters_utils.h; sourceTree = ""; }; 06489499588BFA8FD5E63DD6375CD533 /* libFolly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFolly.a; path = libFolly.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 064C9E82E05BA7D0672A93207EA0A3B5 /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; - 064E53E98DD836B5F60958B76A781812 /* RNGestureHandlerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerManager.h; path = ios/RNGestureHandlerManager.h; sourceTree = ""; }; - 066CA46EC4E3C3080CF06433222E437E /* EXAudioSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioSessionManager.h; path = EXAV/EXAudioSessionManager.h; sourceTree = ""; }; 06736283C77882D931377C3AF94D64FD /* FIRInstallationsIIDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.h; sourceTree = ""; }; 068267BE04ED7FFA08E2A827F9406A85 /* RSKImageCropViewController+Protected.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RSKImageCropViewController+Protected.h"; path = "RSKImageCropper/RSKImageCropViewController+Protected.h"; sourceTree = ""; }; 0695A738C7F41C79A285AD67DCD00EE2 /* SDAnimatedImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "SDAnimatedImageView+WebCache.m"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.m"; sourceTree = ""; }; - 06A53493AE9D625B0FCD7CED36565037 /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; - 06B669943C192B510CD5FC44F1C41A75 /* RNNativeViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNNativeViewHandler.h; sourceTree = ""; }; - 06BC4A59920333D19413DD86CB3696F3 /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; - 06D3C4F743E3864073808EA43C339893 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 06A23A775D0C745D7DE8C3DDEC5797F7 /* EXAVObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVObject.h; path = EXAV/EXAVObject.h; sourceTree = ""; }; + 06AF9DEAB18ECA63C1C7E00A032CB825 /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; + 06B0D6A47C619AD6632A50690B027C2D /* UMCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.xcconfig; sourceTree = ""; }; + 06B5C6560ABB8384D4E8AABCC6938572 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; + 06CBBD83E6C1F160B7D5A5719C8DCBEB /* BSG_KSSignalInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSignalInfo.h; sourceTree = ""; }; 06E1729FCDB517FF8E598520953361E3 /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = SDWebImage/Core/SDImageCache.m; sourceTree = ""; }; 06F15669F5B860FA4E51821B5C31DD25 /* GDTCCTNanopbHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTNanopbHelpers.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTNanopbHelpers.h; sourceTree = ""; }; 06FC5C9CF96D60C50FCD47D339C91951 /* libnanopb.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libnanopb.a; path = libnanopb.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 06FFFF82DF3F0B943AF0E0DE7CF1E19E /* RNCAppearanceProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProvider.h; path = ios/Appearance/RNCAppearanceProvider.h; sourceTree = ""; }; - 0702B34AA844C30524B48B62B561BBFF /* FontAwesome.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome.ttf; path = Fonts/FontAwesome.ttf; sourceTree = ""; }; 0707F165A40293C90DB9DB10B0433839 /* enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse41.c; path = src/dsp/enc_sse41.c; sourceTree = ""; }; 070C05407939F9DFE5B7ED06A3FE346E /* FBLPromise+Wrap.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Wrap.m"; path = "Sources/FBLPromises/FBLPromise+Wrap.m"; sourceTree = ""; }; - 070D8D1C1B32FFBE094021C01913F8BC /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; - 072013CF77A7E9DD1769B206AAF002C5 /* BSG_KSBacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace.h; sourceTree = ""; }; + 071D90A52285C5F4B905B6DD3028570D /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; + 0722D2EC567F23AE93ADAE6D32994A8C /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; 0723D9254A0FF8AAD5189C6A5CDB013B /* FIRComponentContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentContainer.m; path = FirebaseCore/Sources/FIRComponentContainer.m; sourceTree = ""; }; - 0728E8867E1424D47A7CDFCDD3463E04 /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = ""; }; - 074DDB0ADE3E453E37436DD6DE29DB44 /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; sourceTree = ""; }; 0752B852E884FC47B65B0C2D2105EE8E /* WebRTC.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebRTC.framework; path = Frameworks/WebRTC.framework; sourceTree = ""; }; - 0764C74C255EA604FCBA84129BEADD2D /* RNVectorIcons.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.xcconfig; sourceTree = ""; }; - 078DCD749D06FF25398DB212FE097A6D /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; 079482D8D03370ABEA3B4293E9E0F902 /* buffer_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = buffer_dec.c; path = src/dec/buffer_dec.c; sourceTree = ""; }; - 07CFB0E0B4BDEDA2A38B1B0CBE538C1A /* RCTVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideo.h; path = ios/Video/RCTVideo.h; sourceTree = ""; }; - 07E0234DD7051C7D65C2E4D36FFF87BF /* BSG_KSCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReport.h; sourceTree = ""; }; - 07E63C29FE4669ACECF77D183070A956 /* RCTTypeSafety.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.xcconfig; sourceTree = ""; }; - 07FF47D0C9B3144A517AB68321480C20 /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIDynamic.cpp; sourceTree = ""; }; - 08052EC8B77314B3AD6D1227DF3D04D9 /* RNDateTimePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePickerManager.m; path = ios/RNDateTimePickerManager.m; sourceTree = ""; }; - 08063712435A35B0888B9B7E6FC2C8DA /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; - 082D69279D22CB77C22AE6C1AC9A531A /* KeyCommands.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = KeyCommands.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 08408B034BD4895C8154293305785149 /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; + 0797AE20CA374FA355E5FBE35EF12C88 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; + 0798B90710BEE010D41A8725BE3E757B /* RCTDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDeviceInfo.m; sourceTree = ""; }; + 07E5DA47E4212DB768DB092C518399AD /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBigString.cpp; sourceTree = ""; }; + 07FC8D474C39CCD1546659DCEB345DF7 /* BSG_KSFileUtils.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSFileUtils.c; sourceTree = ""; }; + 0840CE117A17CF8930BBBD11D54CBF22 /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = MethodCall.cpp; sourceTree = ""; }; 08419E1C07242E0A29A26A675DC67E63 /* FIRInstanceIDTokenFetchOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenFetchOperation.h; path = Firebase/InstanceID/FIRInstanceIDTokenFetchOperation.h; sourceTree = ""; }; 084DF8B81E62B3FA2DD1A9E2620122EC /* RSKInternalUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKInternalUtility.h; path = RSKImageCropper/RSKInternalUtility.h; sourceTree = ""; }; - 088B3B353DE06ECB638B9C33B6563F45 /* TurboCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboCxxModule.h; path = turbomodule/core/TurboCxxModule.h; sourceTree = ""; }; - 08BCDAB5B66339457CF6451737AC1DC0 /* RNCAppearanceProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProviderManager.m; path = ios/Appearance/RNCAppearanceProviderManager.m; sourceTree = ""; }; + 089E361FA9F6CCDEF000FDACC54CBDEF /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; + 08A767C7171B7484BC840053A91D0193 /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = ""; }; + 08AC8CB8E44B9D7D19D80AA1B56368B0 /* QBAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetCell.m; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.m; sourceTree = ""; }; 08D1FFC2980C1ED72AE9A4C44A0544C3 /* libreact-native-document-picker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-document-picker.a"; path = "libreact-native-document-picker.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 08D8CE592E3E6D38A9ADF97B640DA0CB /* EXPermissions.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.xcconfig; sourceTree = ""; }; 08ECB6371492FBD46314AE3703CD8DAF /* json_pointer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json_pointer.cpp; path = folly/json_pointer.cpp; sourceTree = ""; }; - 097C8E97EDDEDDB179E18497993BF8AE /* ARTNodeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTNodeManager.m; sourceTree = ""; }; - 097FE086579CAB093DD5BDC17FD6AFC0 /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; 099A43376A0723FBD49B492ED1DA139D /* near_lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = near_lossless_enc.c; path = src/enc/near_lossless_enc.c; sourceTree = ""; }; 09A8F5B7DA6974622D6C9A6189F7FAEE /* FIRInstallationsIIDTokenStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIIDTokenStore.h; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.h; sourceTree = ""; }; - 09B3467217EC6F9C8309249B31D9B0C9 /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; - 09CFE0206070257FA56A9423FF01E393 /* React-RCTBlob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.xcconfig"; sourceTree = ""; }; - 09EAF8FF19D2FABF20F4CEF3A61E196D /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; + 09B04B8589E68E2687A1D94C462182AD /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; 09F74600A3F236533A7364611CBCD0A9 /* FBLPromise+Validate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Validate.h"; path = "Sources/FBLPromises/include/FBLPromise+Validate.h"; sourceTree = ""; }; + 09FEF9981606134C65ADBEB0FB57B17E /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = RAMBundleRegistry.cpp; sourceTree = ""; }; + 0A05659F0F906E80F05804D2793FA971 /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; + 0A2A0BA4AF08430D48A45519F923A40F /* Octicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Octicons.ttf; path = Fonts/Octicons.ttf; sourceTree = ""; }; 0A50C6F190916F34A6C994F0FA9A369F /* SDImageLoadersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoadersManager.m; path = SDWebImage/Core/SDImageLoadersManager.m; sourceTree = ""; }; - 0A7FAA47021000A0AE68D49BDAFB6229 /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; - 0A8D98458AF6A341AED8D30B08B285BB /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; - 0AC58D43F520AB9E41176EF916A98C28 /* RNNotificationEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationEventHandler.m; path = RNNotifications/RNNotificationEventHandler.m; sourceTree = ""; }; + 0A517D02219DB5640240657199D64B29 /* Foundation.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Foundation.ttf; path = Fonts/Foundation.ttf; sourceTree = ""; }; 0ACF31EDEFE1E569CF6189573939269F /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = SDWebImage/Core/SDWebImageDownloaderOperation.m; sourceTree = ""; }; + 0AD90983FA7D465181A1A5CFF499F0DD /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; + 0AEC25EAAA5E51A74B9582B5EDA35EC3 /* 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; }; + 0AF4CA0BA956D4476ADBBF1B6E4E78FA /* ARTPattern.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTPattern.m; sourceTree = ""; }; 0AF863C6208094AACCEA61A2F59700AB /* vp8li_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_dec.h; path = src/dec/vp8li_dec.h; sourceTree = ""; }; - 0B1A6B95632FBEA8316F5995577B86CE /* RNCWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebViewManager.h; path = ios/RNCWebViewManager.h; sourceTree = ""; }; 0B1BB1A3C8627427538472C2BEF119CE /* FIRInstallationsIIDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDStore.m; sourceTree = ""; }; 0B2C19870540C57176CD67F1135A50CA /* yuv.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = yuv.h; path = src/dsp/yuv.h; sourceTree = ""; }; - 0B32CE21976E9E9D0ECF62099636E0D0 /* RCTUIImageViewAnimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTUIImageViewAnimated.h; path = Libraries/Image/RCTUIImageViewAnimated.h; sourceTree = ""; }; + 0B3E5DD41E0FA57BBB1449FE2675DE59 /* RNVectorIconsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNVectorIconsManager.m; path = RNVectorIconsManager/RNVectorIconsManager.m; sourceTree = ""; }; 0B600A9196EDF7F5CE30EAA93665B08F /* GDTCORStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORStorage.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORStorage.m; sourceTree = ""; }; + 0B67E23A4D5E5329C0527C804BD3134E /* react-native-appearance-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-appearance-dummy.m"; sourceTree = ""; }; + 0B824D421BC9F1ACD7F0FB4708517650 /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = ""; }; 0B8C2145C378EBCD15C3B414625FD2D0 /* NSButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSButton+WebCache.m"; path = "SDWebImage/Core/NSButton+WebCache.m"; sourceTree = ""; }; 0B9BD3B6B09CD5A1C2631CF99883907E /* frame_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_dec.c; path = src/dec/frame_dec.c; sourceTree = ""; }; 0BB0025F1EC6EF96CB0113EBC33D3711 /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = SDWebImage/Core/SDWebImageOperation.h; sourceTree = ""; }; - 0C12BC1B8F44AF03BA844784DE394E50 /* RNJitsiMeetView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetView.m; path = ios/RNJitsiMeetView.m; sourceTree = ""; }; + 0BD10F59E4A10D804EB12B741C087F5B /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleUtils.h; path = turbomodule/core/TurboModuleUtils.h; sourceTree = ""; }; + 0BD8D43D83B7997FCC63F1C3E83C6F1B /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 0C041C1310AE95E7FC32B4BCEF39B5E3 /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = ""; }; + 0C2B5550BAD8A5777A79E8FB7EB4D833 /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; + 0C2DF73102D11D25584EE0473C499831 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; 0C3136B59B61BB160560C616ED25BC08 /* NSBezierPath+RoundedCorners.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBezierPath+RoundedCorners.h"; path = "SDWebImage/Private/NSBezierPath+RoundedCorners.h"; sourceTree = ""; }; - 0C9EA76FCBB390F7393463F23865DB10 /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; - 0CDD68563C68630F690340A3F44FCADF /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; - 0D0188ABDD81B9AA39D4779AFAEAE851 /* EXRemoteNotificationPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXRemoteNotificationPermissionRequester.m; sourceTree = ""; }; - 0D1A6C113D375ECC144BAE47C35619DA /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIndexedRAMBundle.cpp; sourceTree = ""; }; - 0D1DE266071B6B3F0DF6EFAD39C2915F /* RNCSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSlider.h; path = ios/RNCSlider.h; sourceTree = ""; }; - 0D4454889C698F3EA7E727F1944FC804 /* FBReactNativeSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBReactNativeSpec.h; path = FBReactNativeSpec/FBReactNativeSpec.h; sourceTree = ""; }; - 0D9CE7D0FA1F5BD8EE21C37BD6C1D84D /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; + 0C4157C2FAA19B37B490BC14D91400ED /* REAValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAValueNode.h; sourceTree = ""; }; + 0CBCC7E011F6EF7E978AC965DE289A43 /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = ""; }; + 0CC59D489EF2C068C5C82032B002449B /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; + 0CDA8FCB4FCCED71D58F8B8D0C98D377 /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; + 0CE1B26244BAE7DEC268FC99D1DB1116 /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; + 0CF4A6E68D0685DE586ED50622C61AB0 /* UMBarCodeScannerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.xcconfig; sourceTree = ""; }; + 0D3425F077BBD8F4E0203BAAC9D87879 /* FBLazyIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyIterator.h; path = FBLazyVector/FBLazyIterator.h; sourceTree = ""; }; + 0D9715EB95C9838A87A58AD5F196C593 /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 0DB662C3FB633BCCF0EFD8EBAEEF8AF1 /* GDTCORClock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORClock.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORClock.m; sourceTree = ""; }; - 0DCBA648191323A9584295FF82215FDE /* 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; }; - 0DEE0DF28D1C938FB2E16A1233B1CEFB /* experiments-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "experiments-inl.h"; sourceTree = ""; }; + 0DDE34F065DF5E05D72D5B285F4B2FB3 /* ARTSurfaceViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSurfaceViewManager.m; sourceTree = ""; }; + 0DECC37F011305E4F8D5201A3D90010D /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; 0DFCFAD3BB3A6A89D23F127637FA0517 /* SDImageCodersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCodersManager.m; path = SDWebImage/Core/SDImageCodersManager.m; sourceTree = ""; }; - 0E19EE3FCE03EAE838447F0E063168D9 /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; - 0E1C9947A2D5849DD68B9C1005A42612 /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; - 0E1D2D89644507DDB99C0775951349FF /* ARTNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTNode.h; path = ios/ARTNode.h; sourceTree = ""; }; - 0E236CE2865A5040C193A4DFAFD30940 /* BSG_KSSysCtl.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSysCtl.c; sourceTree = ""; }; - 0E2698DAF3341F1E37B670A4511D03E2 /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; 0E28FEB864CD8E6FC7A5CD387F3CE7FD /* FIRInstallationsErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrors.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallationsErrors.h; sourceTree = ""; }; - 0E325B1606A5D238A63D17132321A066 /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = ""; }; - 0E58C96CDA56F63E2CE4F0D73A23A121 /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; - 0E64EB3A2D9EFBB4C3058273DDDFD253 /* ARTRadialGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRadialGradient.m; sourceTree = ""; }; - 0E6E452DCA2DFA4CC9919E00868F396B /* RNRootView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNRootView-prefix.pch"; sourceTree = ""; }; + 0E407BF44DCAC2F5C9171F6175AD699F /* RNVectorIcons-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNVectorIcons-prefix.pch"; sourceTree = ""; }; 0E711CC040CB2C9B6660541E7C73B310 /* GDTCORConsoleLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORConsoleLogger.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORConsoleLogger.h; sourceTree = ""; }; - 0E7130322F2B2B2F8C06DCD1A9288949 /* REABezierNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABezierNode.m; sourceTree = ""; }; - 0EA1D090A682A9E2453410A8C657DBBD /* BugsnagSessionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTracker.m; sourceTree = ""; }; - 0EC1CB159386CB919070179891392053 /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; - 0ECA46EC91758D088E75BE45C7B214A2 /* RNFirebase-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFirebase-prefix.pch"; sourceTree = ""; }; - 0EE3C78A4FB57AF8C4DDA6636283EF42 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 0EF0FE62DAB45ACD6147B1C7764C1870 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 0E76F3759E8407C982EDBF7A405F370E /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; + 0E84E6C970C887F862CFF4A74D75AF6C /* React-RCTActionSheet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTActionSheet-dummy.m"; sourceTree = ""; }; + 0E91B911130158B9E8F172DC0BBB76C9 /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; + 0E93ECCDA1756C61A19DA411120DAAB7 /* RCTKeyCommandConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandConstants.h; path = ios/KeyCommands/RCTKeyCommandConstants.h; sourceTree = ""; }; + 0EB20BE3ECCF35EADA103257BA92078B /* QBImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBImagePickerController.h; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.h; sourceTree = ""; }; + 0ED91A38D50BB121286DD13CE08A30CF /* RNRootViewGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRootViewGestureRecognizer.h; path = ios/RNRootViewGestureRecognizer.h; sourceTree = ""; }; + 0EDFD91143B580A2011219BF543907D2 /* RNGestureHandlerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerManager.m; path = ios/RNGestureHandlerManager.m; sourceTree = ""; }; + 0EF13686829746A2F67F9C4179C93609 /* REASetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASetNode.h; sourceTree = ""; }; + 0F218E27E1059AFDA5D2F6B49784ED27 /* RNLocalize.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.xcconfig; sourceTree = ""; }; 0F2BEB3203326DA9994D2329F5515A34 /* ssim_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim_sse2.c; path = src/dsp/ssim_sse2.c; sourceTree = ""; }; 0F354B2F01F2D88BF64EFB54C7F55D9B /* vlog_is_on.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = vlog_is_on.cc; path = src/vlog_is_on.cc; sourceTree = ""; }; - 0F41A60939B7366F027B2F9CEF367328 /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = ""; }; - 0F66C4D688719C36A136311FAE73BF2F /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; + 0F7B2000BE3105D55FDF862386C46774 /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = ""; }; 0F838A60D7566E3ED6EAAAB29782AD39 /* quant_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_dec.c; path = src/dec/quant_dec.c; sourceTree = ""; }; - 0FC60135AD706121FC84515E79346E05 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 1008C6A52CFF0FCD4F3F4A73DE63755C /* BugsnagSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSession.h; sourceTree = ""; }; - 101F9C70AAA1F7A8A54A50C4F4168F78 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialCommunityIcons.ttf; path = Fonts/MaterialCommunityIcons.ttf; sourceTree = ""; }; + 0FA81729A1DB43571D35E2E7A19E1345 /* EXDownloadDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXDownloadDelegate.h; path = EXFileSystem/EXDownloadDelegate.h; sourceTree = ""; }; + 0FB14AEB040EF55E079AD9DF8E45383B /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPlatform.h; path = React/CoreModules/RCTPlatform.h; sourceTree = ""; }; + 0FD67A5A0A0E791A241650D09B2C852B /* RNNotificationCenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenter.h; path = RNNotifications/RNNotificationCenter.h; sourceTree = ""; }; 102D559173B1A82E75F05608FC7771F9 /* huffman_encode_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffman_encode_utils.h; path = src/utils/huffman_encode_utils.h; sourceTree = ""; }; 10518D1EE8B03DD5443764694A2E2192 /* libwebp-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "libwebp-prefix.pch"; sourceTree = ""; }; - 105733A577C33B0FCA5F228D1857F8B3 /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; 106194880B0291DBB2CB25096A7764E5 /* RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageCropper.h; path = RSKImageCropper/RSKImageCropper.h; sourceTree = ""; }; - 107135BEBA6EA7330C01077FA39CD6DF /* BSG_KSCrashAdvanced.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashAdvanced.h; sourceTree = ""; }; 108BA2E99330882B915006784045B5A9 /* UIImage+ExtendedCacheData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ExtendedCacheData.h"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.h"; sourceTree = ""; }; 108CB420FAB407BE3178EAEC6141D97E /* FIRBundleUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRBundleUtil.h; path = FirebaseCore/Sources/FIRBundleUtil.h; sourceTree = ""; }; - 10F8A885C4E82BDA4D26FA34B581D952 /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pl.lproj; path = ios/QBImagePicker/QBImagePicker/pl.lproj; sourceTree = ""; }; - 110113E7E10CA709CFBB74056A2731E4 /* Foundation.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Foundation.ttf; path = Fonts/Foundation.ttf; sourceTree = ""; }; - 11149B0B1D22FEDD1C67330D28A66FB5 /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; - 111BBF6A1A8F20F888226023AC96D7F2 /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; + 10A3D7035CD7D2F0C8454D9EDC73BA99 /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = ""; }; + 10B4D2544463909549F12C7F692223DB /* KeyCommands.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = KeyCommands.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 110F5F208B1277BEBFCEDFFA467DE235 /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; 112CFA9961DCCEA1D55E037EE24E1C38 /* CGGeometry+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CGGeometry+RSKImageCropper.h"; path = "RSKImageCropper/CGGeometry+RSKImageCropper.h"; sourceTree = ""; }; 11613175A36C6EBE31343B6BACA3302C /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = FirebaseCore/Sources/Private/FIRComponent.h; sourceTree = ""; }; - 118FDB9E5AAE4B0F868A9FB23850B670 /* RCTCustomInputController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomInputController.m; sourceTree = ""; }; - 11B20C54AC294E8BACE99BCDC7C20891 /* RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotifications.m; path = RNNotifications/RNNotifications.m; sourceTree = ""; }; - 11B7D73230E6A947F4A33D7520ABA840 /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; + 11918BF00AEACDEB104E48AC350AF3D8 /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = ""; }; + 1199498CED9F8347974A740A839A1121 /* RNFetchBlob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFetchBlob.h; sourceTree = ""; }; 11C0A683D9914E0CCC77E6DCABB2816C /* SDImageCachesManagerOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManagerOperation.h; path = SDWebImage/Private/SDImageCachesManagerOperation.h; sourceTree = ""; }; 11C183F4C4B1F1E989B5028A735C3B2A /* RSKImageCropper-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RSKImageCropper-prefix.pch"; sourceTree = ""; }; - 11D227BCF5211CC470C656A32E7BDB55 /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; - 11F111103A19458BC91CBDEFB769696D /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworking.mm; sourceTree = ""; }; - 1231FB2390229D9B8DCC2C8E8015FA4B /* REAEventNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventNode.h; sourceTree = ""; }; - 1238E92EDB750B4A397E54323FA4A5DD /* RNDateTimePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePicker.m; path = ios/RNDateTimePicker.m; sourceTree = ""; }; + 11C69D513A3C6989D4E6AD2745DE7E66 /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ReactMarker.cpp; sourceTree = ""; }; + 11C8A67A523D91820F05E1E75A938EB7 /* UMConstantsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.xcconfig; sourceTree = ""; }; 1246B4FC24C785047CD95D5E8BB7AE12 /* SDImageAssetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAssetManager.h; path = SDWebImage/Private/SDImageAssetManager.h; sourceTree = ""; }; - 1262C362E414E45C0BF6B4B8BAF38B88 /* RNReanimated.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.xcconfig; sourceTree = ""; }; - 12D02610BE157E747D2067DF8797C640 /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.h; sourceTree = ""; }; - 12EE46404C88EE4302878276636C0E0D /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; - 1313C8CC89483B18E4E5DE62B296F5FF /* Ionicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Ionicons.ttf; path = Fonts/Ionicons.ttf; sourceTree = ""; }; - 13187CC7C3D18C84AA6A39297545EC1C /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; - 134737EAD8237E8D08ECB9ED16EB2E1F /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = ""; }; - 13569BD963332ED5AA1C999B78DBE3D9 /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; - 13951187B0C12BD8402BCA7CBA95D0A7 /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ModuleRegistry.cpp; sourceTree = ""; }; + 124B50748AC829D4F462CD6D1806C564 /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; + 129CC95C969B20399F41C6937A02D570 /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; + 12A16BBD093134117D9B4CFDF9359DDF /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = ""; }; + 12B539A266AA947F50A5C2AA6BD5C8AA /* BugsnagSessionTrackingPayload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingPayload.h; sourceTree = ""; }; + 12D0680A4FB4EE6DAC0C2C1E7E07543D /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = ""; }; + 1308887462257AEAE38116C2EF6147D7 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; + 131D3902D9352C048A30423FCBF0B8FA /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; + 13B3D5DF0D3F1C1EDF9FBF32FB4D10A8 /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; 13BC4224F66908DB532F9B44C792439A /* GULReachabilityChecker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityChecker.h; path = GoogleUtilities/Reachability/Private/GULReachabilityChecker.h; sourceTree = ""; }; 13C8C8B254851998F9289F71229B28A2 /* libFirebaseInstallations.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseInstallations.a; path = libFirebaseInstallations.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 13D15DAB3C5711DFB7C6B3F1F3166E3E /* BugsnagFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagFileStore.m; sourceTree = ""; }; - 13FC8FAFD490E87CCFC0834A8B362450 /* RNGestureHandlerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerModule.h; path = ios/RNGestureHandlerModule.h; sourceTree = ""; }; - 1453431E0BC0744C320103A0F1D5378A /* 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; }; + 13D918F729CF132872915DE76691DF4A /* ARTSolidColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSolidColor.m; sourceTree = ""; }; + 13F2CD272CBA0C054B3D23053F74F0C0 /* RNFirebaseRemoteConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseRemoteConfig.h; sourceTree = ""; }; + 13FAC8112719E5F8DF48A5580D6146ED /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; + 140D85D2FCCE01CFA3794C3526771E62 /* UMPermissionsMethodsDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMPermissionsMethodsDelegate.m; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.m; sourceTree = ""; }; + 14227FAAE815AD5DE3A7008DC8C3F31E /* RNFirebaseNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseNotifications.h; sourceTree = ""; }; + 14485ECF294113273CEEB34F289F0D57 /* FBReactNativeSpec-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBReactNativeSpec-prefix.pch"; sourceTree = ""; }; 147CFFA41FD70FB3BEA2696A188FD294 /* GDTCORRegistrar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORRegistrar.h; sourceTree = ""; }; 1488EEFA6E3BB4A30E0FA6D3CAB794CC /* FirebaseAnalytics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.xcconfig; sourceTree = ""; }; + 148A1C8D6353A1FF05E6C4F40DF9FE8A /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = ""; }; + 14A1909E30018152870D41BE4CF7E326 /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; + 14A8661687FD61C71A893E1752F079E7 /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = ""; }; + 14E28936216B895E1CA952A7599FACA1 /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; 14E9D8CDCDCDC635008003D55AC6728F /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = FirebaseCore/Sources/Private/FIRAppInternal.h; sourceTree = ""; }; - 14FEF3C6698DBDC33B81DE2123CA78B5 /* EXImageLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXImageLoader-prefix.pch"; sourceTree = ""; }; - 150FB51A57D749CC6D1C8520B60A0C77 /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; - 152D99BDB721B1EAE79C96126E72B1BD /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; + 14F9A05013AE6BE94D9456BBB14712E2 /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; + 1511DFEB994E187AFF9521845948D37C /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; + 152883F696C0BA3782146C4A42FF82F9 /* Yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-prefix.pch"; sourceTree = ""; }; 15762D6096B65B02F92828DF3C3101E4 /* fixed-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fixed-dtoa.h"; path = "double-conversion/fixed-dtoa.h"; sourceTree = ""; }; 15912309AA610251329D74FA111DE5CA /* libRNLocalize.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNLocalize.a; path = libRNLocalize.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 15B1124A17166C051BC2D02B9932A8DF /* RNNotificationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationsStore.m; path = RNNotifications/RNNotificationsStore.m; sourceTree = ""; }; - 15B2FB55546B58F6FC0E141AAB476DEA /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = ""; }; + 159D3A6C5F3D43C874A28A3600AC9AE6 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 15B1B18F7BCA23D317AEB00634D5E7E0 /* react-native-keyboard-input.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-keyboard-input.xcconfig"; sourceTree = ""; }; + 15B5BE8D50BAB0134DD382D366567ED6 /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; 15B61266CE79A06337D4E2231EBAF1DE /* lossless.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless.c; path = src/dsp/lossless.c; sourceTree = ""; }; - 1603306E49903190875AC507DE2217E9 /* 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; }; + 15CFC51C2159AED55EF822EE01AA5DFD /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = ""; }; + 15EC4CE1E11E17AC364ECBAC3B513646 /* RNFirebaseLinks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseLinks.h; sourceTree = ""; }; 160856CCFCFA358DCF2AAC3EFA195712 /* cost.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost.c; path = src/dsp/cost.c; sourceTree = ""; }; - 1687966F55C3D0BA586F39150074CAB0 /* BSG_KSSysCtl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSysCtl.h; sourceTree = ""; }; - 16BF078F3273F79017A1B52F7C67CDFF /* RNFirebaseDatabaseReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabaseReference.m; sourceTree = ""; }; + 16146E7458BB27ED2AAAAFE6755DE00B /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; + 16924B7391DBFE4D0AD6337368F0C5D2 /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; + 16D47CF049BA220DD66912A75430CD4A /* BugsnagReactNative.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = BugsnagReactNative.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 16DC5622C62C49184B49E9D362BB3A3E /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; + 16F343A73D8A9CB64F3C45BCDBA495FC /* REAConcatNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAConcatNode.m; sourceTree = ""; }; 16FB6D1CB6C00FD26DF39F79C94A3B7C /* GULHeartbeatDateStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULHeartbeatDateStorage.h; path = GoogleUtilities/Environment/Public/GULHeartbeatDateStorage.h; sourceTree = ""; }; + 1706E659D23E02AB43A00E255ED2B3D0 /* BugsnagKSCrashSysInfoParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagKSCrashSysInfoParser.m; sourceTree = ""; }; 1731BEB8C2C3368DB5FDF5403C2F7DF3 /* FBLPromise+Async.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Async.h"; path = "Sources/FBLPromises/include/FBLPromise+Async.h"; sourceTree = ""; }; - 1734A0AE6F9DF0BF468BAFEB7D430A3A /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; - 174297031D5D97064D38A19C7DC9241E /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; 176DC1CC909FEC82CDF5716487143CF4 /* Crashlytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Crashlytics.framework; path = iOS/Crashlytics.framework; sourceTree = ""; }; - 17901D0F238BCABF5F4FF54F39027B17 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 17AB5796AE998CF0E3852DAD5AE4AD04 /* BugsnagKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKeys.h; sourceTree = ""; }; - 17AEC5962AB5EECFDE2DE32EE6922DEA /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Solid.ttf; path = Fonts/FontAwesome5_Solid.ttf; sourceTree = ""; }; - 17B79ED9D31C625708EBCDCECF41D213 /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; - 180207D5E7C1DB8FC8ABD08CD4D5FAA3 /* UMAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppRecordInterface.h; sourceTree = ""; }; - 181A77A89D32902A302952F3FCF15AC5 /* QBImagePickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBImagePickerController.m; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.m; sourceTree = ""; }; + 17D5A84F8747106DDCA033C31C5D274F /* RNRootView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRootView.xcconfig; sourceTree = ""; }; + 182ED7904C3796A73CE77AB1D6112A6C /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; 183A3C0267913A961293F8FCB8FCF81D /* SDWebImageCacheKeyFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheKeyFilter.m; path = SDWebImage/Core/SDWebImageCacheKeyFilter.m; sourceTree = ""; }; - 1849DA14CADFB7DF37364ACEFA91166A /* EXWebBrowser.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.xcconfig; sourceTree = ""; }; - 1864EEF5B581B6C598B5FBC690058D86 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 1873AC74B9B05005FD4C78FB799A0829 /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = NativeToJsBridge.cpp; sourceTree = ""; }; 1876F2F1E1CB7222FA2BE64E89BC0A68 /* GULNetworkURLSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkURLSession.m; path = GoogleUtilities/Network/GULNetworkURLSession.m; sourceTree = ""; }; + 1879999503453BFC58A6601D7FAA72B5 /* RNFetchBlobRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobRequest.h; path = ios/RNFetchBlobRequest.h; sourceTree = ""; }; + 188C9AE6484B0E6EF5C45A6E65126E23 /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; 188DE396BFE9BACC9E475E966B3ECB4C /* SDmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDmetamacros.h; path = SDWebImage/Private/SDmetamacros.h; sourceTree = ""; }; - 1896FB286AEDFDC36F923C5189F92ED2 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Regular.ttf; path = Fonts/FontAwesome5_Regular.ttf; sourceTree = ""; }; - 18C92882E94F93D5A0FAA6D08847E13B /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; - 18FCBF0B93070E0145B5194E6B7B9866 /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = ""; }; - 1906556C45AB84FAE5BA371126C72B3B /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAsyncLocalStorage.h; sourceTree = ""; }; + 189247C2BB52027FFA0C7C6710FE6764 /* React-CoreModules.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.xcconfig"; sourceTree = ""; }; + 18A5FB31561943E51775DF6C2A709D19 /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBundleType.cpp; sourceTree = ""; }; + 18B6C522760E81DDDAD1505DBD7AFF87 /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = ""; }; 192CCAEA3A7BD283727CC8F0076D4F1F /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/Demangle.cpp; sourceTree = ""; }; - 192F177DEC925CC3D5188479BC0B162A /* BSG_KSCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry.h; sourceTree = ""; }; - 1930EF38F81766151936FC224DA4DE79 /* react-native-appearance-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-appearance-dummy.m"; sourceTree = ""; }; 195034DDBA6E2F083A2BB6F020769C4F /* UIApplication+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIApplication+RSKImageCropper.h"; path = "RSKImageCropper/UIApplication+RSKImageCropper.h"; sourceTree = ""; }; 1959F3ECFABC8A4D200C1715ED0696A0 /* FBLPromise+Validate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Validate.m"; path = "Sources/FBLPromises/FBLPromise+Validate.m"; sourceTree = ""; }; - 1978F5D444E91A684F848FA06E0FED6F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 1999800C3B5B4E5C0A32818F3D47D45A /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = FirebaseCore/Sources/Private/FIRLogger.h; sourceTree = ""; }; - 19A32B2E862E46CD42B47424F0A856D6 /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = ""; }; + 19A6DAA1635F9B631B3EAA16F81907F9 /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; 19B4CD2BCA1F7FD16045A42310FCE9F0 /* UIImage+Metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Metadata.h"; path = "SDWebImage/Core/UIImage+Metadata.h"; sourceTree = ""; }; - 19BC37419BDC3327F6A7C33802840939 /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; + 19B7DC0C36E8788004AC04F6BE858392 /* RNPinchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPinchHandler.m; sourceTree = ""; }; 19C61133E42FEBE0031138AEB2C96709 /* diy-fp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "diy-fp.h"; path = "double-conversion/diy-fp.h"; sourceTree = ""; }; - 19D524162E9BCD6EFFAF8E0F4EC7355C /* REABlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABlockNode.h; sourceTree = ""; }; - 19EAD0A7D0A89E6E974F94A58960B4A0 /* BugsnagReactNative.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = BugsnagReactNative.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 19F051C398E0E0CF5604A783AA3D061F /* REATransformNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransformNode.m; sourceTree = ""; }; 19F7DAA1BD0C331F0062BBC640DBC35E /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = FirebaseCore/Sources/Private/FIRDependency.h; sourceTree = ""; }; - 1A46A1EA62BE263FB54EF47F2F178E26 /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; + 19FB76F75E765847C76B32E82B7FD006 /* BSG_KSMach.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach.c; sourceTree = ""; }; 1A5B8DD3BD08B970140758525F472335 /* GDTCORClock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORClock.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORClock.h; sourceTree = ""; }; - 1A5CE5EDFD4CC2026BCE5EFAD0A77B9F /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; - 1A795E8D890C786E5FE7EF3B02A93904 /* BugsnagConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagConfiguration.h; sourceTree = ""; }; - 1A9591959FA5B1AFCBDC72A739EF39A9 /* KeyboardTrackingViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeyboardTrackingViewManager.h; path = lib/KeyboardTrackingViewManager.h; sourceTree = ""; }; - 1AA5457362BB3AAFC394334AB1FE2BA7 /* 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; }; - 1AC9EBEA2723A60E109E0AB57C958FDE /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; - 1ACF8AC78298B41C94A8D5D65AAFE144 /* RCTTiming.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTiming.m; sourceTree = ""; }; - 1ADB7061909E39405AD4BD7B8428BCA7 /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = ""; }; - 1AF548113B59CC6C3DF98313EE8EEEC6 /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = ""; }; - 1AFE95B12ED7C3B2AACA5787F66BFFBF /* RNCommandsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCommandsHandler.m; path = RNNotifications/RNCommandsHandler.m; sourceTree = ""; }; + 1A6893A7A9B3D5FFC6BCCD9C7FA26417 /* RNFirebaseRemoteConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseRemoteConfig.m; sourceTree = ""; }; + 1A7BDFA4779468035CA517CC2B92B606 /* react-native-orientation-locker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.xcconfig"; sourceTree = ""; }; + 1A9CFC66C39806B6AED10B7D782682F5 /* BSG_KSJSONCodec.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSJSONCodec.c; sourceTree = ""; }; + 1AADD43B283931056291E3578A535816 /* EXAVPlayerData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAVPlayerData.m; path = EXAV/EXAVPlayerData.m; sourceTree = ""; }; 1B0188F1CFA087DDC5889F8B0B0301C3 /* neon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = neon.h; path = src/dsp/neon.h; sourceTree = ""; }; + 1B286F654B59426930A49C1708B01F8A /* LICENCE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENCE; sourceTree = ""; }; 1B408AE390C2CD577F7EF23E9F2D97CA /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = "double-conversion/strtod.h"; sourceTree = ""; }; - 1B762AC40BC975F6953559AAEA9DA262 /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingView.h; sourceTree = ""; }; - 1BA9DA3049A7B31EA6AEEE1FF96B91F3 /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 1BC427201794367BD329171E92CA414C /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; - 1BD3FCBF820DB8AF7BF20EAD86AB6F26 /* react-native-video-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-video-dummy.m"; sourceTree = ""; }; - 1BE77D3218DD612963BA380A7A6E2414 /* React-RCTNetwork.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.xcconfig"; sourceTree = ""; }; - 1C10B5A48784E792CA65B3D54A32EE31 /* EXAVPlayerData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVPlayerData.h; path = EXAV/EXAVPlayerData.h; sourceTree = ""; }; - 1C19A9D6A260ADCDABA23FB407EF7B70 /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; + 1BCE5F1C5D4DF02A3D6824D9A0B4347E /* BugsnagCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashReport.h; sourceTree = ""; }; + 1BDD5D8C1862DCB74794EE23E2C9D4D0 /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = ""; }; + 1BE510633AEDC567A5FC1865B344C48C /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; + 1C055DB23C96B16780E4FB84A89F34E2 /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; + 1C1DB3872977A9B38AA80081DB9F0D90 /* REABezierNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABezierNode.m; sourceTree = ""; }; 1C2373D7CD550A7BB6746818ACCFF4A9 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = FirebaseCore/Sources/Private/FIRLibrary.h; sourceTree = ""; }; - 1C3340033258D820E2EB245BAFEB053D /* JSDeltaBundleClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSDeltaBundleClient.cpp; sourceTree = ""; }; - 1C37418C0B0B572D6758F5424E172D58 /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; - 1C45DAB98AE19CF1600DF224DA3FAD26 /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; + 1C258ACC2E0DC8D657144811C2C0F840 /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; 1C4857A0842D2EBB815D30CCE3A20B92 /* huffman_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = huffman_utils.h; path = src/utils/huffman_utils.h; sourceTree = ""; }; - 1C4CF928A9E88CA633B6F95DA4751A46 /* FBLazyVector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.xcconfig; sourceTree = ""; }; - 1C90C59259D92D210C0F029BED26A1B7 /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; - 1C96B000DAA4B0A4667838AF4A0DDAE4 /* ARTGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTGroup.m; path = ios/ARTGroup.m; sourceTree = ""; }; + 1C4FFE3B1606113541FAAA752591E5E7 /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; + 1C9D9B0AD38BEEFDC45CED6AF59EA439 /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = ""; }; 1CA3042722DE6BE862DDD182F6A65072 /* SDInternalMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDInternalMacros.h; path = SDWebImage/Private/SDInternalMacros.h; sourceTree = ""; }; - 1CD089F13B48D7E942A6D84764685919 /* EXAV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAV-prefix.pch"; sourceTree = ""; }; - 1D07B75AE3686300BD233A5F693F02A6 /* RNCWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebView.h; path = ios/RNCWebView.h; sourceTree = ""; }; - 1D2308A6F26544E607E45B047E910138 /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; + 1CCDD0A69E45548748B1FAAF293AADFB /* ObservingInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ObservingInputAccessoryView.m; path = lib/ObservingInputAccessoryView.m; sourceTree = ""; }; + 1CDD73571B970B45A486A3B0498F927E /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; + 1CEAC4E463CAC8251214B1C9557FCEAF /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; + 1D0AB78E30104F0A136DF6B23174E0D0 /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; + 1D131917DF3473FDB6FA934D9DEFEA9F /* BSG_KSCrash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrash.h; sourceTree = ""; }; 1D31DB622D9EBAA4FBD560D40618BCBA /* FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRApp.h; path = FirebaseCore/Sources/Public/FIRApp.h; sourceTree = ""; }; - 1D3C3EEE5A6CB5B2FABE8AFB9B20BD3E /* BSG_KSString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSString.h; sourceTree = ""; }; - 1D42BAE0F9442B6D18FBAEE5DBFA1044 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 1D432FED92D53468BB148EBC674FF927 /* GDTCORTransport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransport.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransport.m; sourceTree = ""; }; 1D6EDA25FA893D1DF91AAEA53BA75B9D /* GDTCORStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorage.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORStorage.h; sourceTree = ""; }; - 1DB3A55DA2EE23AA22896E1AAC35CE39 /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; - 1DB7F9426084901C06D6B3D810431E36 /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobCollector.mm; sourceTree = ""; }; + 1DAE96F078224826317C344961328901 /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; 1DCB7B74B4C2EC6C5BAFC108D409C754 /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.h; sourceTree = ""; }; + 1DD923C6F64649147DDB235950480E46 /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModuleManager.mm; sourceTree = ""; }; 1DF066F20D14665E0A04D678CAD81F85 /* FIRInstanceIDCheckinService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCheckinService.m; path = Firebase/InstanceID/FIRInstanceIDCheckinService.m; sourceTree = ""; }; - 1DF544D039334F425AEA394890EE3BA1 /* react-native-document-picker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.xcconfig"; sourceTree = ""; }; - 1E4801D6C28D8BC6F2C85BA7A6CB2434 /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = ""; }; - 1E58F8187571FB8BE19BAB41634D821E /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; + 1DF145921DE85DB434850DC4736F5445 /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; + 1E1021A0C3C509D48D905BADBFF434A1 /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = ""; }; + 1E5C2F8D2DDCE00D1854B6E7130E97D6 /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; 1E5CFD24886A762C411A37478D6B0296 /* UIImage+MemoryCacheCost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MemoryCacheCost.m"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.m"; sourceTree = ""; }; - 1F086F98B3F77E66182412592E10B532 /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; - 1F325A2E92471F8C9A2034C213E23677 /* RCTDevLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingView.m; sourceTree = ""; }; - 1F450F79CBFC71A87ABA69D18AF64C1F /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = ""; }; - 1F6E38E23C024D7729BA0F5A71B4CC5D /* RNReanimated-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNReanimated-dummy.m"; sourceTree = ""; }; - 1FA9A20AB47A7A1EAAA6D8FE40813C35 /* RCTDataRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDataRequestHandler.m; sourceTree = ""; }; - 1FAD805A430894F1296F6BEC00C7A1C6 /* BSG_KSCrashType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashType.h; sourceTree = ""; }; - 1FBA9DE1DC9152192C227A42F1589E54 /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; + 1E67697363D6ACE2401338E16B3C4BD3 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 1F0555768DB0E5A54A2ADB6CC879ED19 /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; + 1F2DA6A44AB5BE316DEEBF16FF0B5E96 /* BSGConnectivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGConnectivity.m; sourceTree = ""; }; + 1F94016E68EEB217508CD4C5B2289C21 /* RCTFileReaderModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFileReaderModule.m; sourceTree = ""; }; + 1F9BF9B60B65C4862F9EAB875CF41129 /* RCTVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideo.m; path = ios/Video/RCTVideo.m; sourceTree = ""; }; + 1FA178F75745CEEA3494C31D038EC7FE /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; + 1FB321404EF961390E06B73C021A358C /* BSGSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGSerialization.m; sourceTree = ""; }; 1FC1353AA6CA2364871614AD5734013C /* GDTCORConsoleLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORConsoleLogger.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORConsoleLogger.m; sourceTree = ""; }; + 1FC6230FB6919867F9E4FFE36EE66EDB /* RCTConvert+REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+REATransition.h"; sourceTree = ""; }; + 1FE28A98EA9AA962C02DDA276010F12A /* RNBootSplash.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNBootSplash.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 1FF50E5ECFD2E8272C61A10AF4ED50A1 /* SDImageCachesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManager.h; path = SDWebImage/Core/SDImageCachesManager.h; sourceTree = ""; }; + 1FF59804677A068BCFC8092661D8A2E5 /* BugsnagFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagFileStore.h; sourceTree = ""; }; + 1FFF4386C7B0F3D13728EEF0B16D8810 /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; 202722AA0D229A11350F6DC0F267A0BA /* libRNBootSplash.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNBootSplash.a; path = libRNBootSplash.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 20395FB1CD366D878DCC8C5C4C999A82 /* UIView+FindUIViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+FindUIViewController.m"; path = "ios/Video/UIView+FindUIViewController.m"; sourceTree = ""; }; - 205726300BC482B3679A13F3CF37823B /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = ""; }; - 2087216659EAF014239AA1836737C53A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 20D96057E8D38A7B6DA9AB4D27A89576 /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; - 20DD39159ED27E33EFB83B90B96BDE1A /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; - 20DEB1A605A22DFC0E9B4E2F71B24EC7 /* React-jsinspector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.xcconfig"; sourceTree = ""; }; + 205E767FB5F6715EED16BB215A7201AC /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; + 20C369594F3002EE0F7D495BDFC51219 /* RCTVibration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVibration.m; sourceTree = ""; }; 20EB67591180BD14936DAED287A3BFF0 /* Pods-ShareRocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ShareRocketChatRN-dummy.m"; sourceTree = ""; }; + 20F168BF5FD0754BFE7FF0FDA8265702 /* EXVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoView.h; sourceTree = ""; }; 210731369AB3AD93BEB294C250CD20AA /* JitsiMeet.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JitsiMeet.framework; path = Frameworks/JitsiMeet.framework; sourceTree = ""; }; - 211F772B93EC2A85C2C1F1AD2357F7B8 /* RNGestureHandler.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.xcconfig; sourceTree = ""; }; - 214CA21F2AC56EEC639D761AD723F840 /* RNDeviceInfo.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.xcconfig; sourceTree = ""; }; - 21639BD503537EED7E1034A66B874387 /* RNCCameraRollManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCCameraRollManager.m; path = ios/RNCCameraRollManager.m; sourceTree = ""; }; - 216C4A3EEEEA592CE9AD2CD1077DD9A5 /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; - 217E1597E9C685C57A7E9ED756BD6EF2 /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; + 215284327ECF7BC0EC9C01C23DA52960 /* RNLongPressHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNLongPressHandler.h; sourceTree = ""; }; + 21798EFB64E95ED60C19806C91FC71F0 /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; 21A7E3A6A97682E28E064E912B3B4371 /* GULSceneDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSceneDelegateSwizzler.m; path = GoogleUtilities/SceneDelegateSwizzler/GULSceneDelegateSwizzler.m; sourceTree = ""; }; + 21AC208C4538DED1D54AB4C102653BF0 /* React-RCTSettings.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.xcconfig"; sourceTree = ""; }; 21BBC4149E367B15994D55B0BE6395A3 /* lossless_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless_common.h; path = src/dsp/lossless_common.h; sourceTree = ""; }; 21BCCE9D22EB85259CE081E0A923EDB6 /* thread_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = thread_utils.c; path = src/utils/thread_utils.c; sourceTree = ""; }; - 21D0078BE561313FE04B5DE40C8AD3B4 /* RNVectorIconsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNVectorIconsManager.h; path = RNVectorIconsManager/RNVectorIconsManager.h; sourceTree = ""; }; - 21DF6D72948E115B6A80FA386B080004 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTClipboard.h; sourceTree = ""; }; - 21FD64ECA5043E71869A816326A90245 /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAccessibilityManager.h; sourceTree = ""; }; + 21DE35A2679D9ED09F78CC7F60A228D8 /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; 220361FF3B2778F8F38C2C4DCC5B49FD /* libEXConstants.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXConstants.a; path = libEXConstants.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 2230B03BE8991D2B9453D1367C83808B /* RNScreens.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.xcconfig; sourceTree = ""; }; + 226179432C6080ECA229D01D76926AFC /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; 226470D5AC918D710F1EE1BDBAADC256 /* FIRInstallationsStatus.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStatus.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsStatus.h; sourceTree = ""; }; - 2273064ED902295D49232D5DFA4A84BF /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = ""; }; 2281519202E71413AA842990FD9E7D77 /* SpookyHashV2.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SpookyHashV2.cpp; path = folly/hash/SpookyHashV2.cpp; sourceTree = ""; }; - 2293149BED2F89D52C9CA71F462B9D70 /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; - 22B34F12C3336D3E628AAEBD664D5DC4 /* RCTAlertManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAlertManager.m; sourceTree = ""; }; 22DA47BB069C91769B82987265E8AA4F /* SDAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageView.m; path = SDWebImage/Core/SDAnimatedImageView.m; sourceTree = ""; }; - 231C432A3961BDFBCC43561A5EA4F36B /* ARTNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTNode.m; path = ios/ARTNode.m; sourceTree = ""; }; - 23219ACA713D7CAFB30DC0419DE1E805 /* react-native-video.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-video.xcconfig"; sourceTree = ""; }; - 233DAAE18AA7F64BDDA3527E2437B832 /* QBVideoIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIndicatorView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.h; sourceTree = ""; }; - 237A1CC6D459F6C0934647A1B05F8B77 /* RNCSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSlider.m; path = ios/RNCSlider.m; sourceTree = ""; }; + 22E29CEFCAF60427BF23BB8173FF0290 /* BSG_KSCrashC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashC.h; sourceTree = ""; }; + 2323F367B32053EA27F9D766634A5DDB /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; + 2326D21F65C132C6B573D2F986450639 /* RNCSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSliderManager.h; path = ios/RNCSliderManager.h; sourceTree = ""; }; + 233FECEF1AAAE50F2AE5315510F92514 /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; 238912792225FCFD2816B4E4CF1D3D79 /* GULSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSwizzler.m; path = GoogleUtilities/MethodSwizzler/GULSwizzler.m; sourceTree = ""; }; - 23AB78D14C1EC7321119A8EF4E9C9C57 /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = ""; }; - 23AD90F6598D2FFC0B3AE21D97591D1C /* EXRemoteNotificationPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXRemoteNotificationPermissionRequester.h; sourceTree = ""; }; 23AF27BB8FC1D90102AF761B02C48033 /* SDAssociatedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAssociatedObject.h; path = SDWebImage/Private/SDAssociatedObject.h; sourceTree = ""; }; - 23B6D424AE8030B661B6ACEC3201FD55 /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDeviceInfo.h; sourceTree = ""; }; - 23C63C444BAA8C62044C36DC7EAE5B4F /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = ""; }; 23D5AA523F9126F7D30ECF8AA9BBE433 /* GDTCCTUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTUploader.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTUploader.m; sourceTree = ""; }; - 23D99027B066B537F89C3C0841D9782B /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; + 2417D733FCFBBA6DE5A653206FC6DBC2 /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; 242758B9EDFF146ABE411909CAC8F130 /* libreact-native-appearance.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-appearance.a"; path = "libreact-native-appearance.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 246F9D8018A006460594F30A65BFF960 /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; + 247EB6446686C8DE976B71F8E7151AB5 /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; + 249EA4001666958E10159EC31E37103B /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; + 24A687B750C85CF34EF2CD2D32ED597E /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 24B86369C499373261B640769283284B /* Firebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Firebase.h; path = CoreOnly/Sources/Firebase.h; sourceTree = ""; }; - 24C7B04FC9CA895172C6D273309C5B5A /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = ""; }; - 24D442B49D8704EC885290B27F4261E6 /* BSG_KSJSONCodecObjC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSJSONCodecObjC.m; sourceTree = ""; }; - 24D838D0CDBA90432CA9CB4B6F72CEE9 /* BugsnagHandledState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagHandledState.h; sourceTree = ""; }; - 251517E5F1BD8410E8CD3FD93A7D9435 /* 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; }; - 251B86E92411878C6682553867AC98E8 /* Yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Yoga-dummy.m"; sourceTree = ""; }; + 24ED047780F990FDE45C495CB8C81BE3 /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; + 2506D056FF1B5F554E6B1F7F8CA98110 /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; 2536DE7D124E9784E2285002DB68F17A /* demux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = demux.h; path = src/webp/demux.h; sourceTree = ""; }; - 2572341F607B3FA647DECA06B7E4D625 /* EXConstants.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.xcconfig; sourceTree = ""; }; + 2545EB3FFD648DE0B0840C756FDED923 /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = ""; }; + 25657EDE3FE1FA2CCBB881EC2F327BAA /* ReactNativeART-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeART-prefix.pch"; sourceTree = ""; }; + 2569FFED30094AFFDBA2FF03A9982DC1 /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsinspector.a"; path = "libReact-jsinspector.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 258C24D3057222DDA044B5BA0B208E1C /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; - 25A399223CCC410E790D3A79E70F29FF /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; - 25AF19ED10701324D121CDC03B977D52 /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; - 25CE33BA1C7530FA89B2ACD4901E2FC9 /* RNLongPressHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNLongPressHandler.h; sourceTree = ""; }; - 25F73B3BFFF7C0486C9D4B4E4DA9572C /* JSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSCallInvoker.h; path = jscallinvoker/ReactCommon/JSCallInvoker.h; sourceTree = ""; }; - 2627A03E2AAC96EF0E84BD19FC590BF9 /* BSG_KSCrashReportVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportVersion.h; sourceTree = ""; }; - 262B0316A2D988E70A636C50AF446192 /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; - 263333326C416B9B57FC47BEC689ABA4 /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; + 25A03F3B74F4B37CA6245315F4B8E7EF /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = ""; }; + 25B095623B50426CB11A2B72D32E2E19 /* ARTRadialGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRadialGradient.h; sourceTree = ""; }; + 25B52FD2856570BDBFEA5B0A8B5F19E3 /* RNReanimated-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNReanimated-dummy.m"; sourceTree = ""; }; + 2606CCA8EA3FA4E2E33F4F7F9C664DB0 /* ARTPattern.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTPattern.h; sourceTree = ""; }; + 2615D87890C398C541274B84091F4118 /* react-native-slider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-slider.xcconfig"; sourceTree = ""; }; 264FC1F2B694A07F9E99ECECA1434258 /* SDImageHEICCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoderInternal.h; path = SDWebImage/Private/SDImageHEICCoderInternal.h; sourceTree = ""; }; + 26680BCBEBAA3226DB090A99D25A5A7D /* RNUserDefaults-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNUserDefaults-prefix.pch"; sourceTree = ""; }; 2691CB449C5A42D1964D19F13F61C0B7 /* picture_tools_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_tools_enc.c; path = src/enc/picture_tools_enc.c; sourceTree = ""; }; 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTSettings.a"; path = "libReact-RCTSettings.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 26C5912343F09FDEC67C47A7DD500AAF /* FIRHeartbeatInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRHeartbeatInfo.h; path = FirebaseCore/Sources/Private/FIRHeartbeatInfo.h; sourceTree = ""; }; - 2724494D81419E2A52EAEDBFE0CA779B /* UMImageLoaderInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.xcconfig; sourceTree = ""; }; + 26D64362C346777E7673F5F179426F93 /* 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; }; + 26E43B346470D073A3946E6E3CE86745 /* RCTTypeSafety-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTTypeSafety-dummy.m"; sourceTree = ""; }; + 26F384A95B89DD4DEE81C0AF3AEA0503 /* react-native-background-timer.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.xcconfig"; sourceTree = ""; }; 2728A14783AB5E811E5251887AADACAF /* GULAppDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULAppDelegateSwizzler_Private.h; sourceTree = ""; }; - 2730787EC1F60F38BD758D8BE06D123E /* UMErrorCodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMErrorCodes.m; path = UMCore/UMErrorCodes.m; sourceTree = ""; }; - 2734767EE27BAED3E2B3A20BE7D51332 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 278B8218B421064466EA36AD04D44D68 /* ARTSurfaceViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSurfaceViewManager.h; sourceTree = ""; }; + 274083A057DB57EAE21BA7522994583D /* react-native-keyboard-tracking-view-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-keyboard-tracking-view-prefix.pch"; sourceTree = ""; }; + 27456DCA1E6F6425090860FC8F695FC0 /* RNNotificationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationsStore.m; path = RNNotifications/RNNotificationsStore.m; sourceTree = ""; }; + 274F543867C64B9A619D27C4513014D2 /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; + 27641C724056FF0B81D6FAE31F26009B /* RCTVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoPlayerViewControllerDelegate.h; path = ios/Video/RCTVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; + 2765B792B467115750BCB85AC04C7374 /* RNFirebaseCrashlytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseCrashlytics.m; sourceTree = ""; }; 279390C893577F74DD2049383E1EDD1A /* libKeyCommands.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libKeyCommands.a; path = libKeyCommands.a; sourceTree = BUILT_PRODUCTS_DIR; }; 27AACFC75C230014487A026D8216B40F /* mux.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux.h; path = src/webp/mux.h; sourceTree = ""; }; - 27C8EB49CC4CD3F84FECC6E661B1CA25 /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; 27DCBA8B031ECFD777996CDBB53368B9 /* lossless_enc_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse41.c; path = src/dsp/lossless_enc_sse41.c; sourceTree = ""; }; - 280654FCBE0913DC54C6CDA78B5693CA /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; + 280D196B50B06623BAC88F7C17580D75 /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = ""; }; + 28200B7B2826E413420961FA86E7E2E9 /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; 28360F116ACE0C01D969AB83563A87B3 /* picture_rescale_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_rescale_enc.c; path = src/enc/picture_rescale_enc.c; sourceTree = ""; }; - 28542E33845F2AF8A588E35090C66E0A /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; + 2842B5FFC5432783179FF44CD633B830 /* BSG_KSJSONCodecObjC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSJSONCodecObjC.m; sourceTree = ""; }; 285481B86C63C48528603907702089DB /* muxread.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxread.c; path = src/mux/muxread.c; sourceTree = ""; }; - 285A9798A2D86767D7A292FE1D9CE722 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 285A9AAD35E70F3027ED026EAA8B7417 /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 28863C2658C7EC16923E80F29BC3058D /* subscription.md */ = {isa = PBXFileReference; includeInIndex = 1; name = subscription.md; path = docs/subscription.md; sourceTree = ""; }; + 286E26A6C91BBC63A1A66EDCFE83188E /* 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; }; + 2877A38389E7D2FC96844CBB9A9706EE /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; 288BE286F03060115DD9AF8F02177A9A /* upsampling_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse2.c; path = src/dsp/upsampling_sse2.c; sourceTree = ""; }; 289A7FAC33616CEAE154163C9869020A /* FIRInstallationsIDController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsIDController.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.h; sourceTree = ""; }; - 28A3A0F3FBDD846FCD47AC077B8777B3 /* REAJSCallNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAJSCallNode.m; sourceTree = ""; }; + 289C498A8DF4EC279311FDCAD80D1986 /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = ""; }; 28AD1F843F1DFF344E92B8B18AB1A0FB /* SDImageCoderHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoderHelper.m; path = SDWebImage/Core/SDImageCoderHelper.m; sourceTree = ""; }; - 28DAE90048BA78A30F300F63FB365F48 /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = ""; }; - 28EA5D81C0557F3EC54098EF5A43E525 /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; + 28D8934171C9DF01D91B4902E9616958 /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 28E31A5195F966E49BB86E25398B2B4E /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = ""; }; 28FAFC7FE3AEBCDC53B7E984681EB602 /* FIRInstanceID_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceID_Private.h; path = Firebase/InstanceID/Private/FIRInstanceID_Private.h; sourceTree = ""; }; - 2938D2A489876F5A5BFD04A997E25489 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; - 295D8D2CB6F24253C98550442634BE6F /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; - 295F044614A219B8CCD891FE7650B3B5 /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; + 290DB13BE039EA3C352747F78BAADE99 /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; + 290E8035DD3CE29392F2FF8F1F3E0AA9 /* RCTConvert+UIBackgroundFetchResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+UIBackgroundFetchResult.h"; sourceTree = ""; }; + 2910D26607637BF64B2E89CA8B50BC0B /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; + 291516A2A64F6B8BB33660C84E91573C /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; + 2930A500E273DC05E1A45287FE4CA79F /* RCTImageEditingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageEditingManager.m; sourceTree = ""; }; + 294B7B117A54E956E4C3C0D7547DCC63 /* BSG_KSCrashReportWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportWriter.h; sourceTree = ""; }; + 29670EA7212693B9A77B25BCB1B2DE89 /* BSG_KSMach_Arm.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm.c; sourceTree = ""; }; + 296ED7582318BBF5FB39B24E3E2A0470 /* UMPermissionsInterface-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMPermissionsInterface-dummy.m"; sourceTree = ""; }; + 2978BA2DEBC49B6BF77A935822359DBF /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = ""; }; 297C759A2A6FB64610A331F75C41FC8D /* FIRInstanceIDAuthService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDAuthService.h; path = Firebase/InstanceID/FIRInstanceIDAuthService.h; sourceTree = ""; }; - 297CEC882720276F40987482F9ECE587 /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = ""; }; 2987EA104168329CA646DE0B0609C594 /* FIRSecureStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRSecureStorage.m; path = FirebaseInstallations/Source/Library/SecureStorage/FIRSecureStorage.m; sourceTree = ""; }; 29BA4E5D5665A96984B0753F69FC38F7 /* Answers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Answers.h; path = iOS/Crashlytics.framework/Headers/Answers.h; sourceTree = ""; }; 29E2C22FF879C56A44707455873A657F /* firebasecore.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = firebasecore.nanopb.c; path = Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.c; sourceTree = ""; }; - 2A12EFF825E1C0081EE3DF98F8A217E9 /* NativeExpressComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = NativeExpressComponent.m; sourceTree = ""; }; 2A2F1FA0788DFD486412DD726FC1C595 /* alpha_processing_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse2.c; path = src/dsp/alpha_processing_sse2.c; sourceTree = ""; }; - 2A4B9563B1F54378C50CF08B27CC588C /* BSG_KSCrashSentry_User.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_User.c; sourceTree = ""; }; - 2A5FA4F553903242373D9D4AA2A1E8ED /* AudioRecorderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AudioRecorderManager.m; path = ios/AudioRecorderManager.m; sourceTree = ""; }; - 2A875199F18994CD8E1A92BBF9964643 /* BSG_KSDynamicLinker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSDynamicLinker.h; sourceTree = ""; }; - 2A87E4D5E2E4700D4A86435710A176C0 /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; + 2A3048046DC7897AAB75AF6BF02C67B3 /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = ""; }; + 2A41668B7A227780F09DE51D11387E2B /* UMPermissionsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.xcconfig; sourceTree = ""; }; + 2A59767FF3F8EBC30C89F5828D15A70F /* RNNativeViewHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNNativeViewHandler.h; sourceTree = ""; }; + 2A871FA84A52BD22BB179B42C1F44F20 /* RCTSettingsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSettingsManager.m; sourceTree = ""; }; + 2A90292EAD4E4B3D95515EA21628B634 /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = ios/QBImagePicker/QBImagePicker/de.lproj; sourceTree = ""; }; 2AA5FDE5D455838C40D597792B73FDCC /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = SDWebImage/Core/SDImageCache.h; sourceTree = ""; }; - 2AB0418E50954F2E1D6D7095C7BDA27E /* RCTImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageView.m; sourceTree = ""; }; - 2ABC4B4056075957F83785B658032BEF /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; - 2AE2B723F436453C6040D6D557661B98 /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; + 2AB47831C397F347C7653E5A48316330 /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTiming.h; sourceTree = ""; }; + 2AC9B5128EFD1963AE00DB8143F10906 /* EXLocalAuthentication.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXLocalAuthentication.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 2AF2154BB868D31113AA5DBFC0490F1B /* RCTTypeSafety-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-prefix.pch"; sourceTree = ""; }; + 2B0F6F88BD766B40D9610A5374CC36B9 /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.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; }; - 2B226E0039F6FC461896FA197B68FF24 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = ios/QBImagePicker/QBImagePicker/en.lproj; sourceTree = ""; }; - 2B3A82089B5A614E7E34AF6F3B858EA0 /* REASetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASetNode.m; sourceTree = ""; }; - 2B5CA053F72DF799277DEF4F9F9FBA0B /* RCTConvert+ART.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+ART.m"; path = "ios/RCTConvert+ART.m"; sourceTree = ""; }; 2B5CA70816F8CA51268D097D84CE8B5B /* muxi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = muxi.h; path = src/mux/muxi.h; sourceTree = ""; }; 2B60F0B412AB14099AD2E2BCB853B9F5 /* cached-powers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cached-powers.h"; path = "double-conversion/cached-powers.h"; sourceTree = ""; }; - 2B68F2825A5F62FCD233C7EEDF9B82D2 /* RNFirebaseFirestoreDocumentReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreDocumentReference.m; sourceTree = ""; }; - 2B926F3CE50538B2642D217F1B08F0FF /* RCTAsyncLocalStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAsyncLocalStorage.m; sourceTree = ""; }; - 2BA2F409468E004767A27422AEB33494 /* RNFirebase.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFirebase.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 2B8E9C9831ED2F1A5721DC2FE887D0BE /* 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; }; 2BA675DA25C52E2FD5633ACE43240432 /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "SDWebImage/Core/UIImage+GIF.m"; sourceTree = ""; }; 2BB0CFABA51216D7A7818D5F5D3015E7 /* cost_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_sse2.c; path = src/dsp/cost_sse2.c; sourceTree = ""; }; - 2BB9233F6835B791FD570E679411CD36 /* REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransition.m; sourceTree = ""; }; 2BD8EAE53B4A1B7062C4C439BA87951A /* Folly-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Folly-prefix.pch"; sourceTree = ""; }; 2BDC9CA7E51DCBAD996FE36076C1898E /* quant_levels_dec_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_dec_utils.c; path = src/utils/quant_levels_dec_utils.c; sourceTree = ""; }; + 2BEA966F870B42067C20AF302F59BCAD /* React-RCTAnimation.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.xcconfig"; sourceTree = ""; }; 2C015C102D6AB79D534F16ADF531CE8A /* FBLPromise+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Testing.h"; path = "Sources/FBLPromises/include/FBLPromise+Testing.h"; sourceTree = ""; }; - 2C0A5A89902E2AEDF60F5DE388F6D344 /* FBLazyVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyVector.h; path = FBLazyVector/FBLazyVector.h; sourceTree = ""; }; - 2C49B46020A92385B1A4D715A276E946 /* ARTGroupManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTGroupManager.h; sourceTree = ""; }; - 2C538518209552D98575CD695F5E613F /* REASetNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REASetNode.h; sourceTree = ""; }; - 2C543E656C8CC21720696842FCFEC35D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 2C69B50911948AFF3F4A5C5FBD32B2C6 /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; - 2C865AE8C6D07D3F5C9D9F79772C2663 /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; - 2CA3DDA588BBA33D185387C5D75150E9 /* react-native-jitsi-meet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-jitsi-meet.xcconfig"; sourceTree = ""; }; + 2C33912CA546600E42493C322862CA45 /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = ""; }; + 2C4321BC4A132B3112F042E5A4BEB420 /* BSG_KSCrashSentry_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Private.h; sourceTree = ""; }; + 2C907D36037903303ECD9829DB8495BC /* 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; }; + 2C969BCCC29425F18EE53652B5D8706F /* RNFetchBlobProgress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobProgress.h; path = ios/RNFetchBlobProgress.h; sourceTree = ""; }; + 2CAD3E89099CF2EC94DA2040159C4FB1 /* BugsnagSessionTrackingApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingApiClient.h; sourceTree = ""; }; + 2CB56EB5913B806DD6E096F58F4D9FF3 /* EXAV.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.xcconfig; sourceTree = ""; }; 2D2804B1DCF18B3386453877783E3BBC /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = src/glog/raw_logging.h; sourceTree = ""; }; - 2D316515E3C4D276B23638661A6A9C23 /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; - 2D3735CCB8DA31F96E2BA25454CF400A /* QBAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetCell.h; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.h; sourceTree = ""; }; - 2D3998332EF394DA5DF192449A0CFF01 /* React-RCTLinking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.xcconfig"; sourceTree = ""; }; + 2D2B51DD4DF417B10B71E8B822A93A9B /* BugsnagReactNative.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BugsnagReactNative.m; path = cocoa/BugsnagReactNative.m; sourceTree = ""; }; + 2D34EDB4F334F9A61289CC7A8CE81336 /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; + 2D3B5DFF6CDCE9E34DCD31DCD94AFC08 /* BugsnagApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagApiClient.h; sourceTree = ""; }; 2D591C821A51F0825209BC1C05DFFB03 /* ssim.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ssim.c; path = src/dsp/ssim.c; sourceTree = ""; }; + 2D6463879DFA88F1524A53FDFB525074 /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 2D6E08DDF45483F5A4732B16AF971B03 /* GDTFLLUploader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTFLLUploader.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTFLLUploader.m; sourceTree = ""; }; - 2D7000D26ADA09093218DE8116F46D82 /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; - 2D70BAEE4F12958BC061A7CFE3DEF4B7 /* React-RCTSettings.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.xcconfig"; sourceTree = ""; }; 2D86D213801ABEF7CD86291D4F3FDD34 /* libUMAppLoader.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMAppLoader.a; path = libUMAppLoader.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 2D92E5E61F73843DFCCD1398180E0905 /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; 2DA0D814DFCB860D31D7BCD63D795858 /* libFirebaseInstanceID.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseInstanceID.a; path = libFirebaseInstanceID.a; sourceTree = BUILT_PRODUCTS_DIR; }; 2DAA01CE0749CD75B5D864D9C3DB8B11 /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = SDWebImage/Core/SDWebImageDownloaderOperation.h; sourceTree = ""; }; - 2DACC85D8938DA90A1AF8939908B569A /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; - 2DD5497AFE7E6A2CE3FA206676A3E4B8 /* RNBootSplash.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNBootSplash.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 2DF5B5A8F386B04CF4A0E30232BAC970 /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.h; sourceTree = ""; }; - 2E1B3EDEDD84F4299867D29A64BE66EC /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; - 2E2B626E47713C2DEB8148BA80D9F138 /* BugsnagReactNative-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BugsnagReactNative-dummy.m"; sourceTree = ""; }; - 2E3477F05E5AC74A130FA66DEB8A9335 /* ReactNativeShareExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeShareExtension.h; path = ios/ReactNativeShareExtension.h; sourceTree = ""; }; - 2E74CC6C78C61B321EC7A75976A2BA08 /* REAValueNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAValueNode.h; sourceTree = ""; }; - 2E7A2E2AC47B7F0AEE9D9E54095643D5 /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; - 2E7B1288BE3BAEE06C25A2F4CBA03615 /* BSG_KSCrashCallCompletion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashCallCompletion.m; sourceTree = ""; }; - 2E9EE5BA8DB4608918A7792F0BC4BDA8 /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; + 2DB4C4BAA0A3E960224AD870D1692FE5 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; + 2DF80B83CB74EB8528D11F700867D9EC /* Yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.xcconfig; sourceTree = ""; }; + 2E0781D6B8B1537F22692ACCB7E783DB /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = ""; }; + 2E20522CFC3FF714F71215AB5DDB9A15 /* Feather.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Feather.ttf; path = Fonts/Feather.ttf; sourceTree = ""; }; + 2E900620FE75CBB1CB75DF8274671C9B /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; 2EA1D92B58046A683FB99792F54C738E /* GoogleDataTransport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransport-dummy.m"; sourceTree = ""; }; - 2EB64474F78A6BB6F97CC4740B32C7E6 /* react-native-jitsi-meet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-jitsi-meet-dummy.m"; sourceTree = ""; }; + 2EC3AF692C410BF61B4507625A2481B4 /* RCTImageURLLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoader.h; path = Libraries/Image/RCTImageURLLoader.h; sourceTree = ""; }; 2EE8ED7B82F5E3A7EF109FDD2E17A97F /* NSButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSButton+WebCache.h"; path = "SDWebImage/Core/NSButton+WebCache.h"; sourceTree = ""; }; 2EE96081B960EB5843F26F6558A40730 /* UIView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCache.m"; path = "SDWebImage/Core/UIView+WebCache.m"; sourceTree = ""; }; - 2EE9CF790A9ADBFF0498C17858DEEDDA /* FBReactNativeSpec.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBReactNativeSpec.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 2F107D99DE30C03FC83538F1745C81DE /* SDAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageView.h; path = SDWebImage/Core/SDAnimatedImageView.h; sourceTree = ""; }; 2F373F964FD76A572A5BB6D473B3233B /* types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = types.h; path = src/webp/types.h; sourceTree = ""; }; - 2F3A0569C30CDC36BA969C3E222C2C32 /* RNFirebaseLinks.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseLinks.m; sourceTree = ""; }; - 2F5E45CAFDD0B5413DE5BF9DF491186F /* Fontisto.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Fontisto.ttf; path = Fonts/Fontisto.ttf; sourceTree = ""; }; + 2F56A0807073424049DE488D5F256EDD /* RNFirebaseFirestoreDocumentReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreDocumentReference.m; sourceTree = ""; }; 2F7C021AFD37BBD8879F4CED45D3CBB6 /* nanopb-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-prefix.pch"; sourceTree = ""; }; + 2F878A57E2BD422441DA596CE98AC330 /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; 2F9FF75DBA3C633DA045206F6C039C91 /* FirebaseInstanceID.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstanceID.xcconfig; sourceTree = ""; }; 2FA8915E0D8D275C898AC3CC45B0C183 /* Folly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Folly-dummy.m"; sourceTree = ""; }; + 2FBD67DD275E4D2357C19CDB02960A2E /* ARTRenderableManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRenderableManager.m; sourceTree = ""; }; 2FC5C1273D1024C325327DCD080C4650 /* dec_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse41.c; path = src/dsp/dec_sse41.c; sourceTree = ""; }; - 2FE1D8F88AA14DB45E011BA7F577D0DB /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = ""; }; - 30041F3D20F1C7B733ACFE6E47146E4B /* QBAssetsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.m; sourceTree = ""; }; - 300582BDD4E0D559A2CE123B7583EB2F /* RNGestureHandlerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerEvents.h; path = ios/RNGestureHandlerEvents.h; sourceTree = ""; }; - 300C6A4D1BBCB38BF5D8267485A49497 /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; - 300E13D8CD9ABBBE84F65966C2E2D89F /* READebugNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = READebugNode.h; sourceTree = ""; }; - 303DE418C5DFB23A4BD54D9484505CE8 /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAppState.h; sourceTree = ""; }; - 305EF1AA6F32D05EBF526DDE7C61764E /* RNBootSplash-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNBootSplash-dummy.m"; sourceTree = ""; }; + 2FFCB9D89EDE35F822F28CD3B3532E08 /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = ""; }; + 30327B3BBCCCAE76BB48273350864929 /* TurboModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModule.cpp; path = turbomodule/core/TurboModule.cpp; sourceTree = ""; }; + 3098F19ED0FF9A0D33958CE009076ED2 /* EXVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; + 30B150C99EB1AAE67D345BC94069538D /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; sourceTree = ""; }; 30B2778F70E9E7B0D2AE6C69B7F5FA18 /* UIImage+WebP.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+WebP.h"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.h"; sourceTree = ""; }; 30B6C6D8A65E6CF1025DC7B7A6DEE0CD /* FIRInstallationsAuthTokenResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResult.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallationsAuthTokenResult.h; sourceTree = ""; }; - 30C14607A6AEC19A6D6247FA32385616 /* BSG_KSMach_Arm.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm.c; sourceTree = ""; }; - 30C31DA992CC2BBA6BBFB25792C01FB2 /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; - 3149F11E1549C357BC99FB243454991D /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; - 314AF268C02A61E0C1A90E62F45FAEC6 /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; - 31645AE84C7DA065EB63BA5D17B21D67 /* QBVideoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.m; sourceTree = ""; }; + 30C43C73342C9D6D4D64749F10018473 /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; + 30E4DFFD382FF53419B8D93D49256970 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 30E517EE6A81BC1E2A5ABBEB29553B67 /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; + 3100F37554E286058370BD062FAC1D47 /* RCTDevMenu.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevMenu.m; sourceTree = ""; }; + 31184F2A33D855B394E7FA887BE6E1C8 /* RNEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNEventEmitter.m; path = RNNotifications/RNEventEmitter.m; sourceTree = ""; }; + 31238A8B7C9D38F8ABB58C56ED0A8793 /* ARTLinearGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTLinearGradient.h; sourceTree = ""; }; + 312EAC12211C21781B4792A8CEB9CF55 /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; + 315204E8FD52FE3A3515BE4EE234DEA1 /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-windows.cpp"; sourceTree = ""; }; + 316CE9524A5CBC00F625F390AF349412 /* React-jsinspector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.xcconfig"; sourceTree = ""; }; 3185ACD9193E4C2844B2A264ECC81F13 /* Fabric.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Fabric.xcconfig; sourceTree = ""; }; 31AFD104F69CCD2F1C24B01B859DDA5A /* FIRIMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRIMessageCode.h; path = Firebase/InstanceID/FIRIMessageCode.h; sourceTree = ""; }; - 31B6D24AA10E41A54BB260C04EB641B0 /* Bugsnag.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Bugsnag.m; sourceTree = ""; }; - 31B96A5F8F286666D7FBC7677AB25372 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; + 31C12D553C2C6EBEDD958013FD380CD3 /* LNInterpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolation.h; sourceTree = ""; }; 31CCEDC883A767472D9DE6E98B55225A /* FIRConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfiguration.h; path = FirebaseCore/Sources/Public/FIRConfiguration.h; sourceTree = ""; }; 31D19F7F78897D1BC258DE9692B90D33 /* SDAnimatedImageRep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageRep.h; path = SDWebImage/Core/SDAnimatedImageRep.h; sourceTree = ""; }; - 31EF0BEB53628F3F62B196C7F169532C /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobManager.mm; sourceTree = ""; }; - 32359779BFF3D480C74A6490AAE408E4 /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; + 31D476183BD0305AB8612F3A73A5FABF /* RCTConvertHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvertHelpers.h; sourceTree = ""; }; + 31EE95149D57FDB9540F3A45E93F2594 /* UMModuleRegistryHolderReactModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryHolderReactModule.m; sourceTree = ""; }; + 32220994394A40DE7B9D36CAE714B59A /* BSG_KSObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjC.h; sourceTree = ""; }; + 32535E19DA9B81F52BD854BC718FE596 /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; 325556A95664EB529C31870C6A52D5D8 /* FirebaseCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCore.h; path = FirebaseCore/Sources/Public/FirebaseCore.h; sourceTree = ""; }; 325C4D831CC5588DA91A39FF53FA5BB0 /* NSError+FIRInstanceID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSError+FIRInstanceID.h"; path = "Firebase/InstanceID/NSError+FIRInstanceID.h"; sourceTree = ""; }; + 325E1317AEFB463846E7C2AE2C8706D0 /* QBVideoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.m; sourceTree = ""; }; + 325E42DDCF9C6C3954ED8A465D38C362 /* BugsnagReactNative.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.xcconfig; sourceTree = ""; }; 327D614BA3B1F0B08F1632FD256AEA36 /* enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc.c; path = src/dsp/enc.c; sourceTree = ""; }; 32964D290663FAA0AEFD17DAEBD90947 /* lossless_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_msa.c; path = src/dsp/lossless_msa.c; sourceTree = ""; }; - 329FF8AD3B6D382A19D0707235664543 /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; - 32BFE4D89F4AE73699767169772A6AE6 /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; - 32D1E4560424ED1477C0C2DFEBD939FC /* BugsnagLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagLogger.h; sourceTree = ""; }; - 32E84E502E0A5332EBF385855C620157 /* NativeExpressComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeExpressComponent.h; sourceTree = ""; }; + 32AAFADD3DD8438F7CBA97F98D670481 /* react-native-document-picker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.xcconfig"; sourceTree = ""; }; + 32E8670CCB6423A4F5E3C093AF04252B /* NSError+BSG_SimpleConstructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSError+BSG_SimpleConstructor.h"; sourceTree = ""; }; 32E8D2B7930D83212864A4ACCE2292BC /* lossless_enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_neon.c; path = src/dsp/lossless_enc_neon.c; sourceTree = ""; }; - 3308A989CAB251872CD91C4A505B2DEC /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; - 3309D211A0B19A7D9B1BFACA6D5C0528 /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; + 3300AF5C29476CE937A000A54DC91A65 /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; + 331AF84BCC2BA7E0A3BE1703F9444B22 /* REAClockNodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAClockNodes.h; sourceTree = ""; }; + 332A3997F34D8535DA1FD468B7773195 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 33446CC862D2173DA53D5E95665C24A8 /* GDTFLLPrioritizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTFLLPrioritizer.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTFLLPrioritizer.h; sourceTree = ""; }; 3347A1AB6546F0A3977529B8F199DC41 /* libPromisesObjC.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libPromisesObjC.a; path = libPromisesObjC.a; sourceTree = BUILT_PRODUCTS_DIR; }; 336D56D9272DA9C7A6F5356D0DB9B248 /* NSData+ImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+ImageContentType.h"; path = "SDWebImage/Core/NSData+ImageContentType.h"; sourceTree = ""; }; - 33730729FF01A3597D03942C649B47AF /* RCTRedBox.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBox.m; sourceTree = ""; }; - 337FC4191A6870FFEA90EF31F9905044 /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = ""; }; - 3396D88E1D3A8D3766175396AF1C7CCA /* REATransitionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionManager.m; sourceTree = ""; }; - 34051B0AED319EEDA4682DBE6B0DACF9 /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = ""; }; + 337AE88C9B8A03E812F00B5F40AA869E /* RCTAccessibilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAccessibilityManager.m; sourceTree = ""; }; + 339D47919E93B2CAED01DCEFD6253C17 /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = ""; }; + 33AFE038D4008021778FB31EC6A6EFA1 /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; + 33C061B1392DFF91EE6CBE0A4CC35993 /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; + 33DE8D9A5ACCF2548B1090773EC7AC38 /* EXAV-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAV-prefix.pch"; sourceTree = ""; }; + 33E42C181DD42D9C5AB95F31B1DF9AC0 /* RCTKeyboardObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyboardObserver.m; sourceTree = ""; }; + 33FF8C6ED70EDD30BE81B4D019D5D7C2 /* 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; }; + 3405BF8C28915A35FDCF0DC28DD6C452 /* FFFastImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageViewManager.h; path = ios/FastImage/FFFastImageViewManager.h; sourceTree = ""; }; 340F8DC0B45AE963FE9FEB6290B2F0BA /* FIRInstanceIDCheckinPreferences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinPreferences.h; path = Firebase/InstanceID/Private/FIRInstanceIDCheckinPreferences.h; sourceTree = ""; }; + 34390AC1C4436AA28EA4274C83B23674 /* React-RCTBlob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.xcconfig"; sourceTree = ""; }; 343CB5CAE5DB1DC31FE3E8AA6F13485D /* Pods-RocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-RocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; 34576144E62481590800B259D7FB76E9 /* SDWebImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-prefix.pch"; sourceTree = ""; }; - 346FBBEDAD78CD39B96FC164376DAFBB /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSExecutor.cpp; sourceTree = ""; }; + 3461E0B242016ACE7B2764548891EC32 /* BugsnagReactNative-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagReactNative-prefix.pch"; sourceTree = ""; }; 3479DAFDB6E7103FA78860240F0C3A7C /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = SDWebImage/Core/SDWebImageCompat.h; sourceTree = ""; }; - 3496CD4A788972B860A4EFD810330F4B /* RNNotificationParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationParser.m; path = RNNotifications/RNNotificationParser.m; sourceTree = ""; }; 34ACC90522BF9626ADB3630C6DD72733 /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.m"; sourceTree = ""; }; - 34B0035A78BDF37E294278080430ECD8 /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = ""; }; - 351D66D4F8597363DC1C83566AC8460D /* BSG_KSCrashReportWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportWriter.h; sourceTree = ""; }; + 34CC6521D5F9809960F39C9D570662BF /* RNNotificationParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationParser.h; path = RNNotifications/RNNotificationParser.h; sourceTree = ""; }; + 34D25768B4EDCBE8AD32CF4F46796704 /* react-native-notifications.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.xcconfig"; sourceTree = ""; }; 352467F523D37BA242FF792076C4BBA2 /* cpu.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cpu.c; path = src/dsp/cpu.c; sourceTree = ""; }; - 3564FC971AD6DF377158066316CA3DCC /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; - 358706A5FEDC4F5AFFEBDB072E89457D /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; - 35A9DF7A800D0D82E8400F538C8B28EA /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; + 356A307C6ABF12EF11CA33E44EACF4E6 /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = ""; }; + 357FF7EA38456A76C452E63689055EDB /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; 35C331504D9FED2A78645DE10B40A14F /* fast-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fast-dtoa.h"; path = "double-conversion/fast-dtoa.h"; sourceTree = ""; }; - 35D6078ABC0F8ACC83F36B6668517CDA /* BSG_KSCrashSentry_Signal.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_Signal.c; sourceTree = ""; }; - 35D78EEAD48E1A7E264E5562768CAF17 /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; + 35F0BA05BEECBF2107FEA371E9D74683 /* RootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RootView.h; path = ios/RootView.h; sourceTree = ""; }; 360D859E4F26E0D45AC34F09DA57FE65 /* GULSceneDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler.h; path = GoogleUtilities/SceneDelegateSwizzler/Private/GULSceneDelegateSwizzler.h; sourceTree = ""; }; - 36344A43FF1BCC39C2B7467B3E7EF95F /* BugsnagSessionFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionFileStore.h; sourceTree = ""; }; + 363F1EF00EC3F453493AAD41BD955E61 /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = ""; }; 36437C1B03AC2005FE5AE9B6ABB4A399 /* quant_levels_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_levels_utils.c; path = src/utils/quant_levels_utils.c; sourceTree = ""; }; 36585169EB94500CF044692BF107C3A0 /* FIRInstanceID+Private.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstanceID+Private.m"; path = "Firebase/InstanceID/FIRInstanceID+Private.m"; sourceTree = ""; }; + 36756CBFBFF0B3B954AD1B7158A3E6D4 /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; 369513EEA056867CD6A5F02835B302FE /* webp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_enc.c; path = src/enc/webp_enc.c; sourceTree = ""; }; - 36AD9D0FA195AE1A6D496664B6D5DCB4 /* RNDateTimePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePickerManager.h; path = ios/RNDateTimePickerManager.h; sourceTree = ""; }; + 36A03901B4DC6ECFD9F75A20F0D222A6 /* BSG_RFC3339DateTool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_RFC3339DateTool.h; sourceTree = ""; }; + 36D4A571E35EBFD16999ABF5BBDF5F4A /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 36F488E2824DFEFCE2DA5121F3EFF1AF /* thread_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = thread_utils.h; path = src/utils/thread_utils.h; sourceTree = ""; }; 3705D82A3DC4CA7F5EDBE3BE24EB6EE3 /* GoogleAppMeasurement.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.xcconfig; sourceTree = ""; }; 371C3A9071849B2A8C9AA73083078BAB /* filters_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_msa.c; path = src/dsp/filters_msa.c; sourceTree = ""; }; - 3726F45252F0D910533091E2097D3F87 /* localNotifications.md */ = {isa = PBXFileReference; includeInIndex = 1; name = localNotifications.md; path = docs/localNotifications.md; sourceTree = ""; }; - 3755593CDB9E2AD6966475C8A7F9414F /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-cxxreact.a"; path = "libReact-cxxreact.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 37621F2F3B0BD572AD1150B50770284B /* BugsnagSessionTrackingPayload.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingPayload.m; sourceTree = ""; }; + 375E3F922217B20721576A0AC235351F /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; + 3761AEACE1DA39F1AD4786BB1D0061FF /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; 3762F4EB37B62BDA42A52139A2CE184A /* NSBezierPath+RoundedCorners.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBezierPath+RoundedCorners.m"; path = "SDWebImage/Private/NSBezierPath+RoundedCorners.m"; sourceTree = ""; }; - 376E2492A6E30A8650B86803CFA6BC3B /* Entypo.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Entypo.ttf; path = Fonts/Entypo.ttf; sourceTree = ""; }; 378C25F0844A70F6AF0AD604D5B04960 /* SDAnimatedImagePlayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImagePlayer.m; path = SDWebImage/Core/SDAnimatedImagePlayer.m; sourceTree = ""; }; - 3797855F893F6A103D159850627A8C6F /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; + 379936F1F3A202E81F05EB564A22F2FB /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; 37AECEE6AC0671E260C2B1BE9B3738AD /* vp8i_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_dec.h; path = src/dec/vp8i_dec.h; sourceTree = ""; }; - 37D411FC895F637092612CAA667C9BA8 /* RCTClipboard.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTClipboard.m; sourceTree = ""; }; - 37FAD1532FB0289245A4838BA68B4A79 /* REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransition.h; sourceTree = ""; }; + 37B7696826AB43902263D71479D95B63 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; + 37DADD1FD92C1F8887236BEF67D91AAD /* Color+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Color+Interpolation.h"; sourceTree = ""; }; + 3820F806CA630ADD7988BD05E3E98001 /* 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; }; 3831B2A00965967014DC2303A0B27F59 /* FIRSecureStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRSecureStorage.h; path = FirebaseInstallations/Source/Library/SecureStorage/FIRSecureStorage.h; sourceTree = ""; }; 383A35C11C4C2DD2BADC793667564783 /* pb_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_encode.h; sourceTree = ""; }; + 3868C09A16BB72A9B708B4819E23937A /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBox.h; sourceTree = ""; }; 387FDB6229B2B5EDABF7EAFC7EB23979 /* filters_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_sse2.c; path = src/dsp/filters_sse2.c; sourceTree = ""; }; - 38841A260D87D469AFF933377CD8A7BC /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; - 38A49AE2DBA5F87E93363A96C360CB02 /* BugsnagUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagUser.h; sourceTree = ""; }; - 38AF223B6C2A7948451309ED536B110C /* Bugsnag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Bugsnag.h; sourceTree = ""; }; + 388E38F332625087DCF2599BD7A2301D /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; 38CB235F9B094ECF8F8B1B1C082AB298 /* GDTCORUploadCoordinator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadCoordinator.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadCoordinator.m; sourceTree = ""; }; - 38EAD67CF2A3E1955A132851281FF6EE /* EXVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewController.h; sourceTree = ""; }; + 390A59F129F705D241B9686AA66E2D7A /* FBLazyVector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.xcconfig; sourceTree = ""; }; 3912963231AA3AA7436B53843E64EE76 /* SDWebImageDownloaderRequestModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderRequestModifier.m; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.m; sourceTree = ""; }; + 392498665B438714F134FCBC21214666 /* RNFirebaseAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAuth.h; sourceTree = ""; }; 392B3106DCD1282949C544B07B1586E4 /* tree_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_enc.c; path = src/enc/tree_enc.c; sourceTree = ""; }; - 393D17394AF2E168A92010C0455E96F7 /* BSG_KSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSLogger.m; sourceTree = ""; }; - 3945C05140E58BB4FD12653CEF4D50D5 /* React-RCTActionSheet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTActionSheet-prefix.pch"; sourceTree = ""; }; + 39440C29EF6281814EEBA71F12BF027E /* RNVectorIconsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNVectorIconsManager.h; path = RNVectorIconsManager/RNVectorIconsManager.h; sourceTree = ""; }; 395775162350335AB985C2E53A0F2AFA /* UIImage+ExtendedCacheData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ExtendedCacheData.m"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.m"; sourceTree = ""; }; 3967559F2F789C16C8ECC9F64D330D0F /* yuv_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse2.c; path = src/dsp/yuv_sse2.c; sourceTree = ""; }; - 3980D6B93CD85765ECEA7CB4F162B932 /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = ios/QBImagePicker/QBImagePicker/de.lproj; sourceTree = ""; }; 3995372A68A43A67B051244F80037938 /* FIRInstanceIDVersionUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDVersionUtilities.h; path = Firebase/InstanceID/FIRInstanceIDVersionUtilities.h; sourceTree = ""; }; - 3998B4CB5D7BE16B616E7C240476509E /* BSG_KSCrashReport.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashReport.c; sourceTree = ""; }; - 399FB2A30095FB474545D0C004D85B60 /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; + 39AF1DB378623B241A1961DA51117BFE /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAsyncLocalStorage.h; sourceTree = ""; }; + 39C1FDADC71496F9DD3313658F36CD5F /* RNFirebaseStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseStorage.m; sourceTree = ""; }; 39D1DB7D0AB5BA90F8138F64EBA4323B /* FIRInstanceIDConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDConstants.m; path = Firebase/InstanceID/FIRInstanceIDConstants.m; sourceTree = ""; }; - 3A00452FD6F9F80CC6BFD7541B8E9480 /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; - 3A2FEFC65024873FA80E3F728D63377D /* RNFirebaseAdMobInterstitial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobInterstitial.h; sourceTree = ""; }; - 3A31D7F54597E076BF9613538EAF5E3C /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; - 3A66EDBB330981F3DA95B2EDA14F11CA /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; - 3AC2F63B68ACB4AD0177605BA17A8696 /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 39E2BF8E4BE4C32B9113556EDECA42ED /* ARTSolidColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSolidColor.h; sourceTree = ""; }; + 3A26988C43DEAD2433F7FDAF9DAE8BF2 /* ARTShapeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTShapeManager.m; sourceTree = ""; }; + 3A5C5801730B079C30BC743C5E2977DD /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = ""; }; + 3A9A28B444753B9F9526CD5412636FE0 /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; + 3A9B6A3890CAB5814678E26BA5596F52 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 3AAF20889079680A79DCBEB09D19E881 /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; + 3ABA252CBB6E3B2F8D94515CDAFF5ED8 /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; + 3ABB39A02D387C3BEF3101867418B280 /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; 3AEA4A114C08533A2C0F8E039A4C5EB9 /* libRNImageCropPicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNImageCropPicker.a; path = libRNImageCropPicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3AF4D0EB3C90215151BCD97FF5309E55 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 3B03D8EA1C5F8BD52B4994EE0D4A0F02 /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; - 3B1BF033A6168167BD3A578A80C37D50 /* EXAV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAV.h; path = EXAV/EXAV.h; sourceTree = ""; }; - 3B2099D4C757AAB0D9F2E350C5EB6328 /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; - 3B421201BC61B8A0A51E7C35E7439D26 /* RNFirebasePerformance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebasePerformance.h; sourceTree = ""; }; + 3AF7A5FFD96AE3C7E2610CCA4A7EAB54 /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; + 3B598E756408A131151E0D606053991B /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; + 3B5C9F26FED4E0761F637BAC9D86AD38 /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; 3B640835BAA914DD267B5E780D8CFEC7 /* libUMReactNativeAdapter.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMReactNativeAdapter.a; path = libUMReactNativeAdapter.a; sourceTree = BUILT_PRODUCTS_DIR; }; 3B65CB9B6DCD893501BDCF1DE7BA926C /* libRNAudio.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNAudio.a; path = libRNAudio.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3BC7539FB80F8BCBDEEB4E166A15036C /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; - 3BCA0395DBAC79F4F0ABBAE0184AED51 /* Yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.xcconfig; sourceTree = ""; }; - 3BD6BAC4386150AC14FC03B0107457F4 /* ARTGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTGroup.h; path = ios/ARTGroup.h; sourceTree = ""; }; + 3BA923BAE3DF1C7582F9AEDBA2BD7679 /* FontAwesome.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome.ttf; path = Fonts/FontAwesome.ttf; sourceTree = ""; }; + 3BB8D1658E6620DC5BD8F056364B9CAD /* RNFetchBlobConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobConst.h; path = ios/RNFetchBlobConst.h; sourceTree = ""; }; + 3C0358FA438F9178127E0C2BCE503104 /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; + 3C0D335F37A02AAF91899A2D661D3AFA /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; + 3C0F9B2DA9AFD56D2F2E9B9C75991BF6 /* RNPanHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPanHandler.m; sourceTree = ""; }; 3C3849B9FE871B8A9BFFEA94781CC286 /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = SDWebImage/Core/SDWebImageDownloader.h; sourceTree = ""; }; 3C4BE532E284D6FC858B445EBCE54BE5 /* cost_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips32.c; path = src/dsp/cost_mips32.c; sourceTree = ""; }; 3C4C051A4E9CF5D93B0327AFF8F51044 /* bit_reader_inl_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bit_reader_inl_utils.h; path = src/utils/bit_reader_inl_utils.h; sourceTree = ""; }; 3C5D630EAB7ED6E3B3B8A2DA57CE8B0C /* alpha_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_enc.c; path = src/enc/alpha_enc.c; sourceTree = ""; }; - 3C7816C48F52BFEBC58707E468ECDB58 /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = ""; }; + 3C7A25419288AB12A311C9B8590BA7ED /* BSG_KSCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReport.h; sourceTree = ""; }; 3CA2FA4336B15BA4DCCD78A997AEC892 /* FIRInstanceIDTokenStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenStore.m; path = Firebase/InstanceID/FIRInstanceIDTokenStore.m; sourceTree = ""; }; 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libglog.a; path = libglog.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3CB51127FF6C0976D95599F103AD29CA /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; - 3CC8A5E1F7160E71E4A976FD82B0814B /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; - 3CD5C994FB3DA894D19C17ABD9E48DA8 /* 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; }; + 3CACEDF0FB91B2EE5BC301A94357EC00 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialCommunityIcons.ttf; path = Fonts/MaterialCommunityIcons.ttf; sourceTree = ""; }; + 3CBDD5CDE2AA4C6B4D0C14D5948DCDCB /* react-native-jitsi-meet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-jitsi-meet-prefix.pch"; sourceTree = ""; }; + 3CDB31921DA1C96EA73DF664B097FDE4 /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 3CF969E9497D5EEA00712AC408040AF6 /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = ""; }; + 3D20059EEE08E4D54BE32164C0A68AE0 /* RCTTypeSafety.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTTypeSafety.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 3D213A29F586151F62E7D1190EC36483 /* GDTCORUploadPackage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORUploadPackage.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORUploadPackage.m; sourceTree = ""; }; - 3D2BDE2A8E9321E6BBFBD4DD0F868D7D /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = ""; }; - 3D36CA742E8FB53ACC7C054CA44A455B /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = ""; }; - 3D448E23AE03762C59E62FEE30B234CF /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; - 3D44ADEA66B7D9218BADCBC933C7A6B3 /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; + 3D3EB0C538A74A00277C1B7D5275BA45 /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = ""; }; + 3D40CFA13FF0F7838C12F25132E746C8 /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = React/CoreModules/RCTImageEditingManager.h; sourceTree = ""; }; 3D469EED379CDAF76B456D41CE1D789E /* pb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb.h; sourceTree = ""; }; - 3D55E29C92A3F4B1A45380158662A057 /* RCTVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideo.m; path = ios/Video/RCTVideo.m; sourceTree = ""; }; - 3D5FB42ADEAA4E9B94CDE9C1D07EEB21 /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; - 3D94F8669BF7E0B52C69D8ECEC6FB1D4 /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; - 3D951480F892BE81EC44F26A081C5205 /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = ""; }; + 3D52B9F53E90E46BB7BC2868DCD0ED49 /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; + 3D67570D241C8BD96DF9CB19D2E70141 /* RCTConvert+ART.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+ART.m"; path = "ios/RCTConvert+ART.m"; sourceTree = ""; }; + 3D71A2300D1F1BA16C41BEDF99A0397F /* QBSlomoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBSlomoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.h; sourceTree = ""; }; + 3DB5C006FFFD6248BB1DE2BD1FDAA845 /* RNGestureHandlerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerEvents.h; path = ios/RNGestureHandlerEvents.h; sourceTree = ""; }; 3DCCC9C42EB3E07CFD81800EC8A2515D /* QBImagePicker.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = QBImagePicker.bundle; path = "RNImageCropPicker-QBImagePicker.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; + 3DDD0DEB64B160EAE167CD2F2BCCDAFF /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = ""; }; + 3DE1E6EB37A7568CECB81081794A3F18 /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModule.mm; sourceTree = ""; }; + 3DF5B2C7483E20A7A39072BA3B0AF5A0 /* ARTTextManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTTextManager.m; sourceTree = ""; }; 3DF98BC6C3F20CCC5179F53F73FF41B6 /* GDTCORTransport_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransport_Private.h; sourceTree = ""; }; - 3DFBCBC2AB042618C7603F21EE7D8E7D /* RNFirebaseNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseNotifications.h; sourceTree = ""; }; + 3DF9ED76541390C66E04D31C29138C06 /* EXDownloadDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXDownloadDelegate.m; path = EXFileSystem/EXDownloadDelegate.m; sourceTree = ""; }; + 3E0BF76806F01A4737F7E7FF400AFF7A /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = ""; }; 3E30B8CCF8842538B301F60452DFD5E4 /* alpha_processing_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_mips_dsp_r2.c; path = src/dsp/alpha_processing_mips_dsp_r2.c; sourceTree = ""; }; 3E41B296571AC95DE177C8BDD92082EE /* JitsiMeetSDK.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JitsiMeetSDK.xcconfig; sourceTree = ""; }; - 3E5E117548E693E5E485250BC8BB48D8 /* RCTCustomInputController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomInputController.h; sourceTree = ""; }; - 3EA67F22BED9DF0E10C8FD51DFA3C479 /* QBSlomoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBSlomoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.h; sourceTree = ""; }; - 3EB8F3B4B796FECAFE72B6212207E684 /* ReactNativeART.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeART.xcconfig; sourceTree = ""; }; - 3EBF48C9031FDA0CBFCC41EB218C1371 /* RNFirebaseCrashlytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseCrashlytics.m; sourceTree = ""; }; - 3ECC4817DED5EF3C8305E0B1E51CAB24 /* EXAVObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVObject.h; path = EXAV/EXAVObject.h; sourceTree = ""; }; + 3E95DBCAC6C998F70DC53712A6BECC62 /* BugsnagSessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTracker.h; sourceTree = ""; }; 3EE448D03DC1030CB1623347E60A913A /* cct.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cct.nanopb.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.h; sourceTree = ""; }; 3EEAA606F6866DA20E6601B9655B1027 /* libBugsnagReactNative.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libBugsnagReactNative.a; path = libBugsnagReactNative.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 3EF16EEFB7DEE0F7CD09E9E57683CAEB /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; + 3F0E13FC825A0389AFB6D7962502FE1D /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; 3F19DADEA197E3EB0A522E8E1D520775 /* SDDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDisplayLink.m; path = SDWebImage/Private/SDDisplayLink.m; sourceTree = ""; }; - 3F375F20E60CF86FBB63E7C28CBE4208 /* React-jsiexecutor.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.xcconfig"; sourceTree = ""; }; 3F3CB5FABF8ADED7650DF34AE8C9567D /* FirebaseInstallations.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstallations.xcconfig; sourceTree = ""; }; - 3F6B55E3590A31D0796E2F6D82597EEC /* TurboModuleBinding.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleBinding.cpp; path = turbomodule/core/TurboModuleBinding.cpp; sourceTree = ""; }; + 3F7EFB01B72D715F81A11B15CC580F24 /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 3F91D027E837C20A326639C1BDCE6567 /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LongLivedObject.h; path = turbomodule/core/LongLivedObject.h; sourceTree = ""; }; + 3FD7FB0A67FFB3A6571000B0F9EF4FC2 /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = ""; }; + 3FD87BD5009369711A2F79C3FE3DAFC6 /* ReactNativeShareExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeShareExtension.h; path = ios/ReactNativeShareExtension.h; sourceTree = ""; }; 3FECE8B750D858CB3C6E9F3EC41E9A9F /* FBLPromise+Wrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Wrap.h"; path = "Sources/FBLPromises/include/FBLPromise+Wrap.h"; sourceTree = ""; }; - 400401CC486501232BA2666E9882D402 /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = ""; }; - 4028A6CBC22733D1D11FC1C32AE533D4 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 402CDA986750EA3112B840B1830D05D8 /* 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; }; - 40553C8A6721563B46E7C276F586493F /* QBAlbumsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.h; sourceTree = ""; }; + 3FF032A05D37EC27E5991CF4F8AB0560 /* EXVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoManager.h; sourceTree = ""; }; + 400A33EAC15BABDBC9CFAAD979540190 /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = ""; }; + 4024F08ED7141F641C6D0F5B1CC7C75D /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 4042FFD2C9AADFCAF567C3972EF9939A /* LICENSE.txt */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.txt; sourceTree = ""; }; + 4057007FFCC1F9167336EA33D4D3F28E /* UMFaceDetectorInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.xcconfig; sourceTree = ""; }; + 407195066338AC41FC1C9733A789B974 /* BSG_KSString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSString.h; sourceTree = ""; }; + 4083DC5D6BEC378CED9B623819ED172A /* RNFetchBlobFS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobFS.m; path = ios/RNFetchBlobFS.m; sourceTree = ""; }; 40C0ACE417B604A869EFEBF0F8727F90 /* GDTCORLifecycle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORLifecycle.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORLifecycle.m; sourceTree = ""; }; - 40C3D9CD1DE46BB7625268A30775B549 /* react-native-cameraroll-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-cameraroll-dummy.m"; sourceTree = ""; }; - 40FC5E306ABABA27B01035E205968CA8 /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; - 410D6867C29D9F4F2585F6E3E6E4DB52 /* BugsnagHandledState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagHandledState.m; sourceTree = ""; }; - 417E8BFE0291B4472FA838818899FEA9 /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; - 41DC7C4805BBBD20FFF14A0764206278 /* REATransformNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransformNode.h; sourceTree = ""; }; + 40C8CDF7DDF4D4317E4FB9A090B13B2A /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; + 40DD1EB0A38626D7672CEF0EEFF5C426 /* RCTAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimatedImage.h; path = Libraries/Image/RCTAnimatedImage.h; sourceTree = ""; }; + 40E6B5A6BDDAA03117709635756F3EF8 /* RCTActionSheetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActionSheetManager.m; sourceTree = ""; }; + 4125B11710991F319C4DB376FBE1CA9F /* RNSScreenStack.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStack.m; path = ios/RNSScreenStack.m; sourceTree = ""; }; + 4142246BA1B8EF4A323159B74E1878C0 /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; + 415459B9DCB71DFC1B666BBDBF009DC0 /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; + 41C564A2EAAA42E538E570410F078D09 /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; 41F62D04DF20EF8EB64F38D9EEEE02A9 /* FIRVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVersion.h; path = FirebaseCore/Sources/FIRVersion.h; sourceTree = ""; }; - 41FC7635615084D37747948828C3D7A9 /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; - 423068FE4F3C20C5F41CFAD48E84FAB3 /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = ""; }; - 42365822458AAD28BC429F6D3DB3E7F9 /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = ""; }; - 425B70D8541A29E62855E3B6164CD604 /* FBLazyIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyIterator.h; path = FBLazyVector/FBLazyIterator.h; sourceTree = ""; }; - 426717A30224C3E0314EC82D0C8ABDA4 /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; - 42B001A0487F7CBEC445D4245BD51B07 /* BSG_KSCrash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrash.h; sourceTree = ""; }; - 42BFE991830D7F84E916413983023C1D /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; - 42FC65C380FA892135A8809B9B3C7B35 /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 420B51DB8652B52DD1B92079DF6EFBB8 /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; + 4255DDF37217B80A6FC1AA87E7D961BB /* BSG_KSCrashC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashC.c; sourceTree = ""; }; + 425FCABB9C9CE8B1487E385F1EBD1E2B /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; + 4265EE4EF3E088E3BB46CCEEF6C01DD7 /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; + 42DA57592399439652D812EB26D67263 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 42E0AF342E91FEF4D7EA5F7325F5828F /* RCTWebSocketExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketExecutor.m; path = Libraries/WebSocket/RCTWebSocketExecutor.m; sourceTree = ""; }; + 42E629407F5F9986664769B85BDE758C /* RNFastImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.xcconfig; sourceTree = ""; }; + 430AB1CF43FF88FADBEFA7054F43AD7C /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = ""; }; 4341798946137AA9F80EA098E35B9931 /* FIRInstallationsKeychainUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsKeychainUtils.m; path = FirebaseInstallations/Source/Library/SecureStorage/FIRInstallationsKeychainUtils.m; sourceTree = ""; }; + 43471D841BB5055A3A2C97042BD45621 /* BSG_KSSystemInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSSystemInfo.m; sourceTree = ""; }; 435C84BA7D4AB3EB7649F9B26277DA8E /* SDWebImageDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDefine.h; path = SDWebImage/Core/SDWebImageDefine.h; sourceTree = ""; }; 43670C6003CB892BF4EEBCCCCF5B1628 /* GDTCORTargets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTargets.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORTargets.h; sourceTree = ""; }; 436BEED2A30591A8D4E5DB90E45FC2FA /* SDWebImageIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageIndicator.h; path = SDWebImage/Core/SDWebImageIndicator.h; sourceTree = ""; }; + 43757FFCC4023081D0E0FA820FE32047 /* BSG_KSCrashReportFilterCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilterCompletion.h; sourceTree = ""; }; + 43815A8525F773276C57D3783821EC68 /* RNFirebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFirebase.xcconfig; sourceTree = ""; }; 438B0AFC915C650C7DD6BBD7E1482856 /* SDWebImageTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageTransition.m; path = SDWebImage/Core/SDWebImageTransition.m; sourceTree = ""; }; 43AAE931318CFC65211035F2E169B081 /* GDTCORRegistrar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORRegistrar.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORRegistrar.m; sourceTree = ""; }; + 43CF00C5BF0D4947F59761AEBD7F68AB /* BugsnagFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagFileStore.m; sourceTree = ""; }; + 43D89E7B92F1FB75487CC4507EFEDE97 /* BSG_KSCrashReportFields.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFields.h; sourceTree = ""; }; + 43DAA5C77986E68FEF3383BADC08E3AE /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 43E5FD1C5B9357E739C64C0EAC4F8290 /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; 43E958E567C22BA0032023C305BEC2AD /* FIRInstallationsItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsItem.m; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.m; sourceTree = ""; }; - 43F71913AE130ACD0E258AA4A470CC39 /* BSG_KSCrashReportStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashReportStore.m; sourceTree = ""; }; + 440B6391AA28FA24977CB94B3896EDD0 /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; + 443E3FEB5021F5AE568876B2ECE7DAEE /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworking.mm; sourceTree = ""; }; 445FADAAD22E2C0B298304BB38E55693 /* SDImageFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFrame.h; path = SDWebImage/Core/SDImageFrame.h; sourceTree = ""; }; - 448B59004E76F8C9F4D3CAFC63076229 /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; - 44AB8DA6CCB21594C36E5E9A8DF33C43 /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; - 44BE015BEB9560624AB2F0EDA99AED32 /* RCTCustomKeyboardViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomKeyboardViewController.m; sourceTree = ""; }; - 44E7913A32231BD98F0E83771A5E6C3D /* RNFirebaseDatabase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabase.m; sourceTree = ""; }; - 44EE8E6F45961F400E818F1780116AB7 /* RNGestureHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandler.m; path = ios/RNGestureHandler.m; sourceTree = ""; }; - 450C7FC1ED58D6B2D79C7830A752045A /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; - 45320D3EB3AD5EC8828DC640A339A32E /* 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; }; - 4537D660F139B7A00246C28ED343398A /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; + 447FFC16368F27E9F314B1280981547C /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; + 44EABB9CB5B9D0D74454496877665506 /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; + 450A06AFE47875867D6D007603239D97 /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; + 45224B74709B8DD765226CAF36340E9E /* ARTRenderableManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRenderableManager.h; sourceTree = ""; }; + 4526C8074EFC911D4391FC14652BABCD /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 4539E3108AC9825410E6FE95CBEB6EA7 /* SDImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageWebPCoder.h; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.h; sourceTree = ""; }; - 453F56DEA38AA67D6B9BD7BF720E29BB /* react-native-slider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-slider-prefix.pch"; sourceTree = ""; }; - 4587B150FD3526CFF08F6177E7B34E5E /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = ""; }; + 4546767F3188A259899C9560A580DFDE /* UMReactNativeAdapter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.xcconfig; sourceTree = ""; }; + 4565A49262584DD8D25283A67864D489 /* rn-fetch-blob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-fetch-blob-prefix.pch"; sourceTree = ""; }; + 4575FF1293FEB3125B895E2A0DA0FD7B /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; 458BC6D0F0ABCC8D2958F42C9A3F3820 /* SDImageLoadersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoadersManager.h; path = SDWebImage/Core/SDImageLoadersManager.h; sourceTree = ""; }; - 45957DF0B7AF8A4C8A0A7621DEDD1EF9 /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; 459EF69C87F0423DE3DAFA049CEC05EC /* FBLPromise+Await.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Await.m"; path = "Sources/FBLPromises/FBLPromise+Await.m"; sourceTree = ""; }; + 45A7EA6D4B7C0B57FE1F1B0AE74005CE /* installation.md */ = {isa = PBXFileReference; includeInIndex = 1; name = installation.md; path = docs/installation.md; sourceTree = ""; }; 45C98A4D849F92BF74F62E180ABEA4E5 /* cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_enc.c; path = src/enc/cost_enc.c; sourceTree = ""; }; - 45CE8B37F73C35AD44948FA7205C0F4A /* RNVectorIconsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNVectorIconsManager.m; path = RNVectorIconsManager/RNVectorIconsManager.m; sourceTree = ""; }; - 461C33C67D13793FF59480A4A91A14CD /* UIResponder+FirstResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIResponder+FirstResponder.h"; path = "lib/UIResponder+FirstResponder.h"; sourceTree = ""; }; - 46207D01EBBD77F44870058DD2D9337B /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; - 4631337CD80EF607C5F83FA3455A02A9 /* ARTRenderableManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRenderableManager.m; sourceTree = ""; }; + 45DCCF91BE6331A403D82963970FFDFE /* REAOperatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAOperatorNode.h; sourceTree = ""; }; + 45EA2FFCA9384FA8754DA17B8016F72B /* RNFirebaseAdMobNativeExpressManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobNativeExpressManager.m; sourceTree = ""; }; + 4604EB84EA7D173EFB6BF96910AEE699 /* RNCommandsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCommandsHandler.h; path = RNNotifications/RNCommandsHandler.h; sourceTree = ""; }; + 461DED48BAECA2364F51E16C2192B419 /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; 464C3A02594F9D69187EC87E695B4726 /* GULReachabilityMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityMessageCode.h; path = GoogleUtilities/Reachability/Private/GULReachabilityMessageCode.h; sourceTree = ""; }; - 46966B32B9B5CCB0A50F9C507E414FEE /* LNAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNAnimator.h; sourceTree = ""; }; - 46B968E1FEFB521DD402C79813D222DA /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; - 46CA0C2F0C64FDE17DA59C7E8EBA9F7C /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; - 46F605AE3C042BD03662DA9E8CAEBCF6 /* notificationsEvents.md */ = {isa = PBXFileReference; includeInIndex = 1; name = notificationsEvents.md; path = docs/notificationsEvents.md; sourceTree = ""; }; - 46FDA105CF97FF6CDA83F151FAE0A177 /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; - 470EDB43F450ABDC1A6355125B14ECE1 /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; - 470F371E639027FF1C469A71B508C9C9 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 471AD333F94D649505072A135F27151A /* FFFastImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageViewManager.h; path = ios/FastImage/FFFastImageViewManager.h; sourceTree = ""; }; - 47300C2767D9505399E305410CC4C7D0 /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; - 47509D15028B1CA058D32CA13B8666FB /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; + 4650D690BA6630C497BA5400ED547938 /* RCTNativeAnimatedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedModule.m; sourceTree = ""; }; + 466503B6AAEA47B56A7ECA1834A44B75 /* BSG_KSObjCApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjCApple.h; sourceTree = ""; }; + 46B486541A6AA377CDD781BA73395D1C /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; + 4708508DB230A1AFFC0276E5EB866F98 /* RCTClipboard.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTClipboard.m; sourceTree = ""; }; + 4755639FE46A04DEDDB05CF7A694FE83 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 476178CDB7F6A524306920EEDD3D60DC /* rescaler_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_msa.c; path = src/dsp/rescaler_msa.c; sourceTree = ""; }; 47667B177B8F7040093014A945593A04 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/detail/Demangle.cpp; sourceTree = ""; }; - 4772BB24FF087ABB268F34C6001F5DAE /* RNCAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearance.h; path = ios/Appearance/RNCAppearance.h; sourceTree = ""; }; + 4772B7623E21753987A7130E8621862E /* LNInterpolable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolable.h; sourceTree = ""; }; 47848D888973B34379A73A1129C8E494 /* backward_references_cost_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_cost_enc.c; path = src/enc/backward_references_cost_enc.c; sourceTree = ""; }; 478F25920DDB277A1F4403B7268C02D9 /* backward_references_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = backward_references_enc.h; path = src/enc/backward_references_enc.h; sourceTree = ""; }; - 47AB5F1B3F88C7C9CEA2079AE84B6160 /* UMPermissionsMethodsDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMPermissionsMethodsDelegate.m; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.m; sourceTree = ""; }; - 47AD2C702B462A8FA9E8BCD3AFC16FDB /* BSG_KSObjCApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjCApple.h; sourceTree = ""; }; 47B052E1FD1233F07E279610681D4C0B /* FBLPromise+Always.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Always.h"; path = "Sources/FBLPromises/include/FBLPromise+Always.h"; sourceTree = ""; }; 47BAFD858ABCC55478AF6AB0854547DF /* FBLPromise+Catch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Catch.h"; path = "Sources/FBLPromises/include/FBLPromise+Catch.h"; sourceTree = ""; }; - 47C9A56AE8F147AA3E3F43ED4FD5F8EC /* RNReanimated.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNReanimated.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 47EEF3AE669D34F0C6B77A1B1C77409D /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; + 47F3DD333F04504A9B36039EB3EBC91E /* RNFetchBlobFS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobFS.h; path = ios/RNFetchBlobFS.h; sourceTree = ""; }; 481BAF2737C4B9EED2882A2C4CB20C17 /* RSKImageCropViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKImageCropViewController.m; path = RSKImageCropper/RSKImageCropViewController.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; }; - 484B1A9BB8E3EDB0B68036F60782DB89 /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; - 48517FA6EAE6675023544BDCE0566F22 /* UIView+FindUIViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+FindUIViewController.h"; path = "ios/Video/UIView+FindUIViewController.h"; sourceTree = ""; }; - 487E750A8155B4038C4510D12BC7FA1A /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; - 4899C6E11AA0D7302D047F15DDFC9A60 /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; - 49142CC56D89B173475626AA1B90D832 /* 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; }; - 493B0A519C945C32863CCC3752FB6F29 /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAlertManager.h; sourceTree = ""; }; + 4873C107DBE9F26AECC09318A8B12A9A /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = ""; }; + 488480EAD543AFDD806FE0620D2A8B9A /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; + 48AAA8346CB5AF2DFBF2FAE3648FBE8B /* RNGestureHandler.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNGestureHandler.xcconfig; sourceTree = ""; }; + 48FB58C1E8633B6CA3292D48F848E3F3 /* RNRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNRotationHandler.m; sourceTree = ""; }; + 48FD13DB39CB84687FE2099B379E9042 /* RNCWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebView.m; path = ios/RNCWebView.m; sourceTree = ""; }; + 49081BDA96EB16FA72B9EF7FA37F10AF /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobCollector.mm; sourceTree = ""; }; + 490B8C7C98FC25E75F19D4B8B135D6F5 /* RCTGIFImageDecoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTGIFImageDecoder.m; sourceTree = ""; }; + 492AF4B3182C3F6AB2718B67D8E997FB /* RNRootView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNRootView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 493FAAFD3937E8A839C0988482F7CEB9 /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; + 4945B18C03894AB79864057EDD45BE41 /* android_date.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = android_date.png; path = docs/images/android_date.png; sourceTree = ""; }; 494E934B4070A029E1A8D42C9BDF4646 /* libEXImageLoader.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXImageLoader.a; path = libEXImageLoader.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 4996AD4BD0A44C3FF79F68CA398753DB /* android_date.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = android_date.png; path = docs/images/android_date.png; sourceTree = ""; }; + 496CF1E9975B06BA3A0EA5BE8C6FA985 /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFPSGraph.h; sourceTree = ""; }; + 49777C8BDCF41658EF1462402BDAA962 /* RCTUIImageViewAnimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTUIImageViewAnimated.h; path = Libraries/Image/RCTUIImageViewAnimated.h; sourceTree = ""; }; 49A51F5FBBCFD3F02638D5838DF22338 /* Pods-ShareRocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.debug.xcconfig"; sourceTree = ""; }; - 49C5DB264A324E20ADB75ECB2ABF90AD /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; - 4A6E490E7D23FE4702816503C7B1A0B9 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 49EE0D4AA6ECCB30D86E884EBB2E7FEA /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; + 4A3108E867C080F1BF3DD43EBB8CC6D7 /* RNPushKitEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventHandler.m; path = RNNotifications/RNPushKitEventHandler.m; sourceTree = ""; }; + 4A3A2F39E1458E815C1C6DDF6D8AC153 /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; + 4A71F41A03D4C4E9AEB5A2AF289501D8 /* ARTCGFloatArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTCGFloatArray.h; path = ios/ARTCGFloatArray.h; sourceTree = ""; }; 4A7647A1716C841E08616F47541DCD7B /* FIRInstallationsStoredItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredItem.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.h; sourceTree = ""; }; - 4A8E5C1877B75EB931C2F3894E85CF96 /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = ios/RNCWKProcessPoolManager.m; sourceTree = ""; }; + 4AB3E49F970E4FD72D9971F0C86245C4 /* RCTWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWeakProxy.m; sourceTree = ""; }; + 4AC0C7574DAE4ECE43B4A13EF75AECA8 /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = CxxNativeModule.cpp; sourceTree = ""; }; + 4AE4B069B3436F7C889EFE20F0684128 /* UMPermissionsInterface-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMPermissionsInterface-prefix.pch"; sourceTree = ""; }; + 4AFDF3F710E8303C27FA938F68F10F93 /* 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; }; 4B019F88D183D8F0E9D8BF083F3699B1 /* FIRInstallationsAPIService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAPIService.m; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.m; sourceTree = ""; }; - 4B0B208F7890597F3918DE32BCD8538F /* BSG_KSMachApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachApple.h; sourceTree = ""; }; - 4B32D349C5AA80B4FB37C642080D45EC /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ReactMarker.cpp; sourceTree = ""; }; - 4B3686332A431ADEBE518021AC34BDF6 /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; - 4B6DB6D0D19BC30059D5D4512C8DAFF9 /* BSG_KSSystemInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSSystemInfo.m; sourceTree = ""; }; - 4B71D632E9BFB739138DDB7552F5C4ED /* RCTKeyCommandConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandConstants.m; path = ios/KeyCommands/RCTKeyCommandConstants.m; sourceTree = ""; }; + 4B3C709C93E8DB059EB220F922F47E3F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 4B4F0F981C6AD43F5E733E48EBBEC200 /* BSG_KSSysCtl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSysCtl.h; sourceTree = ""; }; 4B78E7E3DBE12168C17E886E24FB2F51 /* FIRInstanceIDTokenFetchOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenFetchOperation.m; path = Firebase/InstanceID/FIRInstanceIDTokenFetchOperation.m; sourceTree = ""; }; - 4B81D570093AB1CAEBE5C3DF7023DF5B /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; 4B9414D353B3774B94F6BC07EDA11C7C /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.h"; sourceTree = ""; }; + 4B9CA38E879CD20E77C3E4C4B0DE0CB9 /* RNDateTimePicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDateTimePicker-dummy.m"; sourceTree = ""; }; + 4BA98710C34DBCE9064FE58C234DF6F4 /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; 4BB3E1A796EA4028EC6374B3EACD53CE /* FIRConfigurationInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfigurationInternal.h; path = FirebaseCore/Sources/Private/FIRConfigurationInternal.h; sourceTree = ""; }; - 4BB4B698D12F67FB4917C3F562A99FC5 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 4BD1FADBF32F99E0345A1A2D2169CAA8 /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; 4BE1EB0C0D097F1CEF044EABD60FA2B0 /* GULUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULUserDefaults.h; path = GoogleUtilities/UserDefaults/Private/GULUserDefaults.h; sourceTree = ""; }; - 4C12D2F649FCE22A455888A1E969C491 /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = ""; }; - 4C3527A0392AEA73E382892C501CD079 /* RNPanHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPanHandler.m; sourceTree = ""; }; - 4C6CB1CCC878B2530E22CC7F10018B8C /* RCTTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModule.h; sourceTree = ""; }; + 4BE8E6275C59B97B8ABD3F43F99AF6C8 /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; + 4BF3A95DB37F815FF43D7EF1E503E1E5 /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; + 4C12EFD3064A699FE323604CCC14F491 /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; + 4C7C0723CA0A08AEB0B8C8161A0459C3 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 4C90CBA13EADC2DE8CBA3C3E38DBAD8D /* GDTCCTPrioritizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTPrioritizer.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTPrioritizer.m; sourceTree = ""; }; 4C94E6DDA61D0E2F0939457B8941960B /* PromisesObjC.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromisesObjC.xcconfig; sourceTree = ""; }; 4CC3251FDA9E9F879B68C261CF445809 /* FIRInstanceIDCheckinPreferences+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstanceIDCheckinPreferences+Internal.m"; path = "Firebase/InstanceID/FIRInstanceIDCheckinPreferences+Internal.m"; sourceTree = ""; }; - 4CF05A2DB5F2DEC85B564E1FEB48A628 /* ARTText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTText.h; path = ios/ARTText.h; sourceTree = ""; }; - 4D33174AC8E0E43A147F33CBBD961C8F /* ARTSurfaceViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSurfaceViewManager.m; sourceTree = ""; }; + 4CCD21308C37AE02C506AEEA3FDC135A /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 4CEDF8BB61428E7B1CA483A5342D87C7 /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; 4D352643E8BC0C05FAD0BB5404F73E27 /* GULReachabilityChecker+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULReachabilityChecker+Internal.h"; path = "GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h"; sourceTree = ""; }; - 4D3E918D7884C7CFB182073D63C6B574 /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; - 4D3F207EF3F8FA675C7BF65FC1C38065 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 4D505E718CCB16E5F1E3896B054005DD /* RNJitsiMeetViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetViewManager.h; path = ios/RNJitsiMeetViewManager.h; sourceTree = ""; }; 4D68CBDDD5A7D610F9E436686A07B74A /* FIRInstanceIDKeychain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDKeychain.h; path = Firebase/InstanceID/FIRInstanceIDKeychain.h; sourceTree = ""; }; 4D7305392656B07787D0BAA87B5735C4 /* strtod.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strtod.cc; path = "double-conversion/strtod.cc"; sourceTree = ""; }; 4D7A4F8652C719FD780B45A40A0104C1 /* ANSCompatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ANSCompatibility.h; path = iOS/Crashlytics.framework/Headers/ANSCompatibility.h; sourceTree = ""; }; 4D7BE8D11D0BE425A162D262300BF5D5 /* FBLPromise+Async.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Async.m"; path = "Sources/FBLPromises/FBLPromise+Async.m"; sourceTree = ""; }; 4D7F7DEEE1B431B212DE4B6E85BFD120 /* SDImageTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageTransformer.m; path = SDWebImage/Core/SDImageTransformer.m; sourceTree = ""; }; - 4D944F127F84969A76D4F95459215595 /* QBVideoIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIndicatorView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.m; sourceTree = ""; }; - 4DB898BA3530108074EAAD5490EFD23F /* RNCSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSliderManager.h; path = ios/RNCSliderManager.h; sourceTree = ""; }; - 4DCC9BD55EA7962FA78BF642B58866F6 /* TurboModuleBinding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleBinding.h; path = turbomodule/core/TurboModuleBinding.h; sourceTree = ""; }; - 4DD8D3AF0A74340CC3014948BF74BBCE /* QBAlbumsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.m; sourceTree = ""; }; + 4D871EA5370D99BCBA2545E46BA94F97 /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = ""; }; + 4D8915AB6846EAFEF97610B429FEE5D2 /* QBAlbumCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumCell.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.h; sourceTree = ""; }; + 4DAAD67DF7974AF97D3B405CB6A2F359 /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; + 4DBF282DA8760EFB4100EDA72085C8D0 /* RCTAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedImage.m; sourceTree = ""; }; 4DF0BD63D7D4CFDCC663E62D0F856294 /* dec_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_sse2.c; path = src/dsp/dec_sse2.c; sourceTree = ""; }; - 4E11454A993825D86B3E0E01F922AE39 /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; - 4E11CC26571EB421A596832D803E4ADB /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = ""; }; + 4E2743AAAF9A4FC35706F52E73C11C62 /* QBAlbumsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.m; sourceTree = ""; }; + 4E3D4FBAD25B67DE005C06028EFEED9D /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = log.cpp; path = yoga/log.cpp; sourceTree = ""; }; + 4E5A3FB0E0F5259719BE815748EA69DC /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; 4E5A82E2D83D68A798CF22B1F77829FC /* GoogleDataTransportCCTSupport-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleDataTransportCCTSupport-dummy.m"; sourceTree = ""; }; - 4E5BC129DB64EED086B819DEB5381E20 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 4E91991D40236A446717C05DB53A8FDB /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; + 4E637E78DD99F45D9C9882E5AB714206 /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDataBigString.mm; sourceTree = ""; }; + 4E74D502DF45C3DB6C2002E30237D083 /* BugsnagCrashSentry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashSentry.m; sourceTree = ""; }; + 4E755321532787F7DB40AC844B2A0AE0 /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; 4E9D30B663A082E804F4CAA873DD3822 /* pb_decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_decode.h; sourceTree = ""; }; + 4EA63B128144C476191A9774005959AD /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; 4EAF7225D8D498E7D232AE1520E6CBD3 /* libRNFirebase.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFirebase.a; path = libRNFirebase.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 4EBC3FB8171DB46911F391B0CCC569FC /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = ""; }; - 4EEBCC60D88F119311E2306993289D72 /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; - 4EF2041609FEE8332151E60184ABDACE /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; - 4F3DF8CC066372315A0987F5ADAB7C79 /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageLoader.mm; sourceTree = ""; }; - 4F3FBF733480DB3D4AD1299D8879BEA9 /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; - 4F6D899B01559CE22200709ABCCA5208 /* BSG_KSCrashSentry_NSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_NSException.h; sourceTree = ""; }; - 4F79D12827D685E7336B5329A37851D0 /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; - 4F8B76502130DCE8FFBDE5B203C05202 /* RNTapHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNTapHandler.h; sourceTree = ""; }; - 4F93794CA851794BFAF1414185CB493E /* ARTRenderableManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRenderableManager.h; sourceTree = ""; }; - 4FBB4FA5C063EB2DD23A9658D871F196 /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; + 4ECC8DCC2ABEC6C02D9002EA8DB15B51 /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = ""; }; + 4F145E3A0B46968D0904ADDC55641E70 /* FBReactNativeSpec-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBReactNativeSpec-dummy.m"; sourceTree = ""; }; + 4F1B903AFBB12AAE3480AA42378C8726 /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; + 4F385180DE11379132F14DAA02D3F24F /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; + 4F3FEA4D6EDA37ABD94BCC29214D0E99 /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pl.lproj; path = ios/QBImagePicker/QBImagePicker/pl.lproj; sourceTree = ""; }; + 4F4538B9A5DD66CFB3917610C824941C /* BSG_KSCrashReportStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportStore.h; sourceTree = ""; }; + 4F4E632D2E19B3B79DF2C310705D42BA /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; + 4F9AD33270B26611BCAC001F0B32C8C0 /* UMModuleRegistryHolderReactModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryHolderReactModule.h; sourceTree = ""; }; 4FDA96879D96070EB1983E98E655CBDC /* librn-fetch-blob.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "librn-fetch-blob.a"; path = "librn-fetch-blob.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 4FFF00649E4CAF904EB1C591DFA85238 /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; + 4FFECA28172BDE39608A5EF2B76D15B1 /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; + 50016C1070EA933A214FF69663C622FE /* BugsnagConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagConfiguration.h; sourceTree = ""; }; 500E76CDFB8113AFD9AC1DB0CB454843 /* GDTFLLPrioritizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTFLLPrioritizer.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTFLLPrioritizer.m; sourceTree = ""; }; - 50381F0689C5591A2CFA421478473E73 /* EXAV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAV.m; path = EXAV/EXAV.m; sourceTree = ""; }; - 5043F25CA2387BAADA8248011A6F6F29 /* RNForceTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNForceTouchHandler.m; sourceTree = ""; }; - 5052E068A4355F42522D18101FD6C7DE /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; + 50134151E35E1B96FD28AC7ED0800892 /* READebugNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = READebugNode.h; sourceTree = ""; }; + 50237226CD6FFA21014E95BA780DACE0 /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = ""; }; + 502610B461EA2D1A026F2B01243AC74D /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAlertManager.h; sourceTree = ""; }; + 502EC837155ED714DF23FB05FBC35B3B /* RNJitsiMeetViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetViewManager.m; path = ios/RNJitsiMeetViewManager.m; sourceTree = ""; }; 505638042E3CDED31ED33340DD6E648E /* FIRInstallationsHTTPError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsHTTPError.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.m; sourceTree = ""; }; + 505D956DD6CAAC97A19BD66A10131789 /* UMPermissionsMethodsDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsMethodsDelegate.h; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.h; sourceTree = ""; }; 507484DC13FF28BFA253C3259BC915AF /* config_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = config_enc.c; path = src/enc/config_enc.c; sourceTree = ""; }; 50B1336BF0B799990F11A2C6C846FEC9 /* FIRInstanceIDTokenOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenOperation.m; path = Firebase/InstanceID/FIRInstanceIDTokenOperation.m; sourceTree = ""; }; 50B5347C9A6E93B7D4CFC3673BA6FB7E /* libRNScreens.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNScreens.a; path = libRNScreens.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 50C282BD01406EB53341BA80730F136A /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDataBigString.mm; sourceTree = ""; }; + 50D140D10C5D3ADF647AD0DAE5449594 /* ARTShapeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTShapeManager.h; sourceTree = ""; }; 50D7273241DE97D0F9D835E4AFD14299 /* FirebaseInstanceID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstanceID.h; path = Firebase/InstanceID/Public/FirebaseInstanceID.h; sourceTree = ""; }; - 50E26AF35C3302A079327C853D581E09 /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; - 50E3E3361D76E10FF66B5EDF3675DEAC /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; 50E82E5A5409C6B9B611DFB5A5C88A38 /* RSKImageCropperStrings.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = RSKImageCropperStrings.bundle; path = RSKImageCropper/RSKImageCropperStrings.bundle; sourceTree = ""; }; 51087434509AC9D80EDBA3801FBA46D9 /* FIRInstanceIDUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDUtilities.m; path = Firebase/InstanceID/FIRInstanceIDUtilities.m; sourceTree = ""; }; - 5112ECAF952BAC08C07A7E6342C9D4C9 /* react-native-keyboard-tracking-view.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-keyboard-tracking-view.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 513BFD61BAE0700B6C2B906CA432038B /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = ""; }; + 5128E229E8F893C5DA5F50997F12F2E0 /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = ""; }; + 513C3F34D99097335FA72E9F425B9845 /* REAStyleNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAStyleNode.m; sourceTree = ""; }; + 514A7FC352EF592241BFCAFC228C1B14 /* 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; }; 514AE00CD420A8229A4F661330A06B47 /* FIRErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrors.h; path = FirebaseCore/Sources/Private/FIRErrors.h; sourceTree = ""; }; - 515773303247D3067EB6FBB51226837D /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; - 51A510BB7901A687F6D704C090BF5DBB /* RNFirebaseUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebaseUtil.m; path = RNFirebase/RNFirebaseUtil.m; sourceTree = ""; }; + 515A22978278B8552B18FDDF1FBA5AF8 /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; + 5160329ADA5B68E17C053672412941D6 /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; + 516328D76CF735CAAC99DF79EEE52C05 /* RNFirebaseFirestoreCollectionReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreCollectionReference.m; sourceTree = ""; }; 51B50F20C76CF72E2BEF8D4764235306 /* libReactNativeART.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactNativeART.a; path = libReactNativeART.a; sourceTree = BUILT_PRODUCTS_DIR; }; 51D0EC206B3FF3FD54D207F3F5C70719 /* FIRComponentContainerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainerInternal.h; path = FirebaseCore/Sources/Private/FIRComponentContainerInternal.h; sourceTree = ""; }; - 51DF25480D7018A24CFA0835502A684C /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = ""; }; + 51E045377B57602000DED486F9BA7183 /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; 51EE49DA7F1EB208F9461CB6483D55F0 /* picture_csp_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_csp_enc.c; path = src/enc/picture_csp_enc.c; sourceTree = ""; }; - 51FE99C186FAFDE2DE32D2A15112FE62 /* REAConcatNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAConcatNode.m; sourceTree = ""; }; - 521BB2D5E0F2863E5E6C5398FA87E31E /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = ""; }; - 521D7D15BA51A665AED00F7B8325CF7E /* RNFastImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFastImage.xcconfig; sourceTree = ""; }; - 52428A2381B640479AAAD45EC7423584 /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; - 5258A7FE033C54F3D4FA34988E357BEC /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = ""; }; - 5267A85FA53B412AEBF635F7D0DD9BBD /* RNCWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebViewManager.m; path = ios/RNCWebViewManager.m; sourceTree = ""; }; + 525EB8BBFE9CDE17D718698C8776AD64 /* RCTImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageViewManager.m; sourceTree = ""; }; + 5277215B950EB8FB831F92FD56554BE3 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; 527CD81DF520880893DE8021CD41E619 /* Pods-ShareRocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.release.xcconfig"; sourceTree = ""; }; - 528C5C76C04A1A6D987B79D7E7FD1668 /* RNFirebaseAdMobNativeExpressManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobNativeExpressManager.h; sourceTree = ""; }; + 528A2DCAEECDC9D47C40F034BBBEB915 /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; + 528CEBD803180BFA178C982103478889 /* RNFirebaseAnalytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAnalytics.m; sourceTree = ""; }; 52C28AD783EE3A1E4AB2B1A936CBEC0A /* FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROptions.m; path = FirebaseCore/Sources/FIROptions.m; sourceTree = ""; }; - 52C6898186BEA2843E1035FAEB3A1194 /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = ""; }; - 52C9EAE00168800C327A273E11C042D3 /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = ""; }; + 52CA71561A2446043A4E25FC55B9D7F4 /* RNFirebaseStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseStorage.h; sourceTree = ""; }; 52CDBAFD1C6554282FCD586FFBA8FFFD /* FIRCoreDiagnosticsConnector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsConnector.h; path = FirebaseCore/Sources/Private/FIRCoreDiagnosticsConnector.h; sourceTree = ""; }; + 52D6A118E3DC3F00CB5F5FC58C208510 /* api.md */ = {isa = PBXFileReference; includeInIndex = 1; name = api.md; path = docs/api.md; sourceTree = ""; }; + 52D8B368C340C9FE894310C8E9484B1A /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; 52EB1989DFD74CEB5377A42F0481FCAC /* RSKImageCropper-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RSKImageCropper-dummy.m"; sourceTree = ""; }; - 52ED7149F0530BAF25F6FC7EDC45E587 /* RNFirebaseAdMobRewardedVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobRewardedVideo.m; sourceTree = ""; }; - 530D57AB3979EFD0DAC18E8B0387EB2D /* RCTWebSocketExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketExecutor.m; path = Libraries/WebSocket/RCTWebSocketExecutor.m; sourceTree = ""; }; - 5314314BDD42B0A1926D5A66C9B59D99 /* BugsnagSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSession.m; sourceTree = ""; }; + 52F26A7E8EED47F49C39F9121B4D43F8 /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; + 52F5092222245D907FA715A5E5B4B37D /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = ""; }; + 534768FC35D1ACE995311324A92A4BF0 /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; 535AA0B78CF70BA9675FAEC421BED1E6 /* frame_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = frame_enc.c; path = src/enc/frame_enc.c; sourceTree = ""; }; 5372D71E7AAFE0D044943DB958C2F428 /* FIRInstanceIDTokenInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenInfo.m; path = Firebase/InstanceID/FIRInstanceIDTokenInfo.m; sourceTree = ""; }; - 5396DDCF0BBA58C5B926F5A36A397334 /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = ""; }; - 540B7ED49A5F3F474F0EBACB3DB2446F /* BSGSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGSerialization.h; sourceTree = ""; }; - 542B8057499DAA46276417BD7A79E572 /* RNFetchBlobProgress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobProgress.h; path = ios/RNFetchBlobProgress.h; sourceTree = ""; }; - 542E2DB12C2236A6721B9893F8699B41 /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; + 538BC0B0037435C15B566E75E8D2C7FC /* BugsnagNotifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagNotifier.h; sourceTree = ""; }; + 53C280A64E948F7D1D9A89778F9B910D /* RNDateTimePicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDateTimePicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 54002BF23C709D0073AEFC546E5E45E9 /* RNForceTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNForceTouchHandler.h; sourceTree = ""; }; + 54008DE5511230DD7D05049D49C3B1B3 /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = ""; }; + 54352B464F96C6F36A4E3BF21A0AAF4C /* React-RCTImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.xcconfig"; sourceTree = ""; }; 545D3B715E5AF6AFEC5AE16325F9E898 /* GULMutableDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULMutableDictionary.m; path = GoogleUtilities/Network/GULMutableDictionary.m; sourceTree = ""; }; 5469BFF90FA3FA7460B0D79CE5197D1D /* UIImage+MemoryCacheCost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MemoryCacheCost.h"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.h"; sourceTree = ""; }; + 547D8A09A994D72FE717196BE4DB1272 /* ARTSurfaceViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSurfaceViewManager.h; sourceTree = ""; }; + 549DD35AF50F448D6C868B08063F11D4 /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; + 54AC49AAA4AFD11414A9FAAF69ED9769 /* REAParamNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAParamNode.m; sourceTree = ""; }; 54AE600BDD27B1D9D24B98E5EA73E2BB /* enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips32.c; path = src/dsp/enc_mips32.c; sourceTree = ""; }; 54C80AE83CCD41943A1509A4518CEF1A /* mux_types.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mux_types.h; path = src/webp/mux_types.h; sourceTree = ""; }; 54D0A0D72E5409D9555B3AB6C444425A /* picture_psnr_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_psnr_enc.c; path = src/enc/picture_psnr_enc.c; sourceTree = ""; }; - 54D14A6AF913F814BE23D71D63984D29 /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.h; sourceTree = ""; }; - 54E20EE1DCF407DC3DDABFF462686954 /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = jsi.cpp; sourceTree = ""; }; + 54DAD86D8E7F2D57156D4FEA78F677AE /* ARTSurfaceView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTSurfaceView.m; path = ios/ARTSurfaceView.m; sourceTree = ""; }; + 54DCCA8CF849B2B71253E54894E70343 /* react-native-jitsi-meet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-jitsi-meet-dummy.m"; sourceTree = ""; }; + 54E3C1C3BCCE56C706BFA114BE0B4287 /* RNFirebaseMessaging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseMessaging.m; sourceTree = ""; }; + 54E5BFB8C428641CEB02F8AEB19B9EFF /* RNDeviceInfo.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.xcconfig; sourceTree = ""; }; 54EB650E96F37C37F0F35851F8C12BA6 /* Conv.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Conv.cpp; path = folly/Conv.cpp; sourceTree = ""; }; + 54FA29A58A8091571DFBDADD8EF21000 /* RNJitsiMeetView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetView.m; path = ios/RNJitsiMeetView.m; sourceTree = ""; }; 54FDDD0372DB70DE5506C1BE95A23BE4 /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "SDWebImage/Core/UIImage+GIF.h"; sourceTree = ""; }; 55172F9BCA61ED8903813A0BE84F0A81 /* SDAnimatedImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SDAnimatedImageView+WebCache.h"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.h"; sourceTree = ""; }; - 552764B9A0BD91BCD64E04C969EDD959 /* RNEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNEventEmitter.m; path = RNNotifications/RNEventEmitter.m; sourceTree = ""; }; - 552C78C6484E5AAA46853C4A11A084C9 /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; + 553244C5D8BAF7E5DE26EC41D16D370E /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; 55331CDCA3E4E9F322A2CA7CE5915A6A /* SDWebImageDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDefine.m; path = SDWebImage/Core/SDWebImageDefine.m; sourceTree = ""; }; - 55497B8716FC1CA5C77BF7D5671EC736 /* RNVectorIcons-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNVectorIcons-prefix.pch"; sourceTree = ""; }; - 5550131458830597A2D600CED021A4CA /* BugsnagConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagConfiguration.m; sourceTree = ""; }; - 5556350F9460002DC1E3E77702D479EE /* RNBootSplash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBootSplash.h; path = ios/RNBootSplash.h; sourceTree = ""; }; - 5562CE4C83195E3FCB9425A9BCBA9F4B /* REAAlwaysNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAlwaysNode.h; sourceTree = ""; }; + 5551575C22DFECDAF2FC590238BBB242 /* BSG_KSMachApple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMachApple.h; sourceTree = ""; }; + 5567F41097BA02556E86FC147A5DA435 /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; + 559BE7FB81AFF08D3690E3B14F07E8B0 /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = ""; }; 55ABCD868D69EBB8B226D955E9B65C94 /* GDTCORTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORTransport.h; sourceTree = ""; }; - 55B22EB897B152DDBA298C12D3ECE6EC /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = ""; }; + 55D3CD657EE4B6F69D3372EF182FD636 /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeModule.mm; sourceTree = ""; }; 55DEC1E6B4290093E9B0766AC1D19DFF /* SDDiskCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDiskCache.h; path = SDWebImage/Core/SDDiskCache.h; sourceTree = ""; }; - 55F1CA98B31C6CECD26788DBB866F396 /* RNFirebaseFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestore.h; sourceTree = ""; }; - 5611AA51C8CFA27C4D5DDB621C88F655 /* RCTWebSocketModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketModule.m; path = Libraries/WebSocket/RCTWebSocketModule.m; sourceTree = ""; }; - 563B523AF5F9F59912F84B869AA67C55 /* RNFirebase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebase.m; path = RNFirebase/RNFirebase.m; sourceTree = ""; }; - 5643253F7ED7DBBE32B50F6720A83922 /* FBLazyVector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBLazyVector.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 567CDF6AF52742501433BA4D852AF0C7 /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; - 569918EEF674C6E18C53AEBAB6E270EC /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; - 56AFFBA8F4384DFAB0FA919B7EAC03AD /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; - 56D107B000A8B0D9871E0D276C2B74AC /* EXVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoView.h; sourceTree = ""; }; + 55ED733271DE2C63203BF1F6FCEF76F7 /* 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; }; + 55F88757732E7FE74C9DB1339A410111 /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; + 5614982E5BAB6B26628667BE302DB37F /* BSG_KSCrashSentry_User.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_User.c; sourceTree = ""; }; + 5617399E43084D1599B422553239EF32 /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; + 564AC08059D7AA58D39DD0DF9EAAB6A9 /* UMAppLoader.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMAppLoader.xcconfig; sourceTree = ""; }; + 5668891029B9B7D87A4885AE25E331EB /* AudioRecorderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AudioRecorderManager.h; path = ios/AudioRecorderManager.h; sourceTree = ""; }; + 56768CE84A6E4F7706E8349354FD227B /* RNFirebaseDatabaseReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabaseReference.h; sourceTree = ""; }; + 569B6F1D87183821E96F79C08CFAA86F /* RNAudio.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNAudio.xcconfig; sourceTree = ""; }; + 569BB4CE80475699AABC611932B19F3B /* BSG_KSCrashAdvanced.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashAdvanced.h; sourceTree = ""; }; + 569DB05BB4E8ADB94613FA5A0E2A3D39 /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; + 56C4203FB922C2EAEC70E9EF0E3F2ACA /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; 56E78EE0CF3ED46276B3F9962DBC7817 /* libwebp.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = libwebp.xcconfig; sourceTree = ""; }; + 56FD6071C9093AABD262B1CDC9FBF442 /* RNGestureHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandler.m; path = ios/RNGestureHandler.m; sourceTree = ""; }; + 5739CF4CDC78B4383E371AB297932F20 /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = ""; }; 574C5FDCBE394444827C0B4B3C7DE9A5 /* yuv_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips_dsp_r2.c; path = src/dsp/yuv_mips_dsp_r2.c; sourceTree = ""; }; 574E8A849B86DCF8EE5726418D974721 /* libEXWebBrowser.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXWebBrowser.a; path = libEXWebBrowser.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 575E6B48EA8E2CA349D94E369059D1BD /* RNDocumentPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDocumentPicker.m; path = ios/RNDocumentPicker/RNDocumentPicker.m; sourceTree = ""; }; - 5762FABED35FFA2D439A71F1275661A0 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; - 57857EA05E98C1B928FC3C5A62CA0C85 /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; - 57858FA00E9FCE5B0D6A2DFA7C2688BD /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; - 579D581C9B4770A71C03452C80A3F9C7 /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; - 57CEEFF52ED51FCCADD3C8279135E603 /* BugsnagSessionTrackingApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingApiClient.m; sourceTree = ""; }; - 57DF598250C2ABB82FB71706AB22D7FE /* RNFetchBlob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFetchBlob.m; sourceTree = ""; }; - 57DFB6CDC6D345A86EF6EEF8F5DEBC0C /* RNFirebaseDatabase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabase.h; sourceTree = ""; }; - 57EF022C73BD0F88A58907CD6F984194 /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; + 577553B429DDED8615E5E164CB183A63 /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = ""; }; + 5780B4F8BC5641AAB90E5090C945C115 /* BugsnagErrorReportApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagErrorReportApiClient.m; sourceTree = ""; }; + 57857F67A76F4D48311B6EA82F721D4B /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; + 57959E3B04D0C0BDA52EA22A356E8DC2 /* FBLazyVector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBLazyVector.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 5795E5FB84901A09682C23201BD21518 /* REANode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANode.m; sourceTree = ""; }; + 579DCA16DBC6E517F256C8FCF62D5C1A /* KeyCommands-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeyCommands-prefix.pch"; sourceTree = ""; }; 57F3CF73401C2A7D1861DD573FA5AAAB /* FIRInstanceIDLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDLogger.m; path = Firebase/InstanceID/FIRInstanceIDLogger.m; sourceTree = ""; }; - 57FF5C5617AFBBBF704DAFD06A05E61B /* BSG_KSCrashState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashState.m; sourceTree = ""; }; 580123A082788AF220ECF528D65896DE /* FIRInstanceIDStringEncoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDStringEncoding.m; path = Firebase/InstanceID/FIRInstanceIDStringEncoding.m; sourceTree = ""; }; - 58016F2081EF1C207B2899B6AED25B75 /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSourceCode.h; sourceTree = ""; }; 580712ADE0DDE9601ED35B000EC802D6 /* libRSKImageCropper.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRSKImageCropper.a; path = libRSKImageCropper.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 5810B799297AAF7BE8E41C230D48EDE1 /* 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; }; + 58334587D7722A791F7FA79F25270C03 /* React-RCTActionSheet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTActionSheet-prefix.pch"; sourceTree = ""; }; 583F2384046EE63CCD0360AE527E4565 /* GDTCCTNanopbHelpers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTNanopbHelpers.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTNanopbHelpers.m; sourceTree = ""; }; 5844E9E8BBD906339EA96EF1BD79326F /* FIRLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoggerLevel.h; path = FirebaseCore/Sources/Public/FIRLoggerLevel.h; sourceTree = ""; }; 5847FD2633BC9047F028FE38A7084AD7 /* GDTCCTCompressionHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTCompressionHelper.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTCompressionHelper.h; sourceTree = ""; }; - 585FF7AA3BD932ED49167696613A7A58 /* ARTSolidColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTSolidColor.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; }; 587AD88BD32631BB096534980CA556E2 /* SDDiskCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDiskCache.m; path = SDWebImage/Core/SDDiskCache.m; sourceTree = ""; }; 5890F013C17AD08F673E9838E1CBC85D /* bit_writer_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_writer_utils.c; path = src/utils/bit_writer_utils.c; sourceTree = ""; }; - 58B882052DCBD50DA678B25F6F262911 /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; - 58E333E7BC1658F3FCDB19F8D52409AD /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; - 58E58CB3CE5773B6B498DDE3F5159735 /* BSG_KSCrashDoctor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashDoctor.h; sourceTree = ""; }; - 5903C106B05EB960481FD19A77CE7452 /* 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; }; - 595749AF0F0544A02F47ECF6633DA760 /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; - 59947BF24339E1CBDD34504FA9DD939A /* RNDateTimePicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDateTimePicker-dummy.m"; sourceTree = ""; }; + 58C75434D5A226A79016D53B6234AA57 /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; + 58DC1810B6C7CB4BD28689381462F2AE /* MaterialIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialIcons.ttf; path = Fonts/MaterialIcons.ttf; sourceTree = ""; }; + 595753034D06481EB8E563E3BE145B52 /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; + 596088C6B3860AEE5A266E2190E854F0 /* react-native-document-picker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-document-picker-prefix.pch"; sourceTree = ""; }; + 597D35020229D35A237C0209B93C47B7 /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; + 59A2B19434A72F254FE6595D38FB8712 /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; + 59B44F2096A5FF0B60BDF62BAD0EB766 /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; 59B76FA92742AFE4EC1B07FB04CDCEFE /* FIRInstanceIDAPNSInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDAPNSInfo.m; path = Firebase/InstanceID/FIRInstanceIDAPNSInfo.m; sourceTree = ""; }; - 59C082FCEABEBA37724CCF76C16DECE1 /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; - 59D99653C038F838A82E5EFF0C321F93 /* RCTImageURLLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoader.h; path = Libraries/Image/RCTImageURLLoader.h; sourceTree = ""; }; - 59EDFA1DDF3AB506E9CA0987364C519E /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = ""; }; + 59BCEC3BB130D851C55FEEC9372580DA /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; 59EDFE4884DAF3E61B6C33A8BE503617 /* FIRAppAssociationRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppAssociationRegistration.h; path = FirebaseCore/Sources/Private/FIRAppAssociationRegistration.h; sourceTree = ""; }; - 59FDCB7424AA5FAA3D4FB6C98D2EE3C2 /* RNFirebaseCrashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseCrashlytics.h; sourceTree = ""; }; - 5A07FFDF4D4BA10363CB9C0F65B38D36 /* RNFirebaseAdMob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMob.h; sourceTree = ""; }; + 59F015CD4C3AD382FF8AB6E95C5C94F7 /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; + 5A09A3FC6667C5F9782E43A35E3C5BE8 /* RCTConvert+FFFastImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FFFastImage.h"; path = "ios/FastImage/RCTConvert+FFFastImage.h"; sourceTree = ""; }; 5A09F908C75D99E518BBF382A235C2DB /* FIRInstallationsHTTPError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsHTTPError.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsHTTPError.h; sourceTree = ""; }; 5A16CE135CC71ACDAB57AB9C085A4213 /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = FirebaseCore/Sources/Private/FIROptionsInternal.h; sourceTree = ""; }; - 5A2F7C5A9ADE12C4E3B2379C05BAEF3D /* RCTVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideoManager.m; path = ios/Video/RCTVideoManager.m; sourceTree = ""; }; - 5A7C248BADF3865A6618EF2C69F7E05D /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = ""; }; - 5A8405BB1A2C13FEAF98B164F6E4FFDB /* react-native-video-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-video-prefix.pch"; sourceTree = ""; }; - 5A9AB10A51330DF7904DC4C0C9AE6EBD /* REAParamNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAParamNode.m; sourceTree = ""; }; + 5A67CFD126B01032A4BB740C95C4F1A0 /* RNCWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebView.h; path = ios/RNCWebView.h; sourceTree = ""; }; + 5A6A4F24729B892F09EEE969DB9C3100 /* RNFirebaseDatabase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabase.h; sourceTree = ""; }; + 5AA3E3F6E87FB7BCB39803BEBA093109 /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = ""; }; 5AD246BB1DA917A3E16D3F36B4867501 /* FBLPromise+Reduce.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Reduce.m"; path = "Sources/FBLPromises/FBLPromise+Reduce.m"; sourceTree = ""; }; - 5B1B81E22DF015F475881295299C2BF2 /* RNPushKitEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventHandler.m; path = RNNotifications/RNPushKitEventHandler.m; sourceTree = ""; }; + 5AE52EB85E8977A12AE544F6B71A771E /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; 5B3A6A7C3F776BAF61AC51C5A02FBFA0 /* FBLPromise+Timeout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Timeout.m"; path = "Sources/FBLPromises/FBLPromise+Timeout.m"; sourceTree = ""; }; 5B528863F8D26E47DBD2FAA61C3FC4FA /* bit_writer_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bit_writer_utils.h; path = src/utils/bit_writer_utils.h; sourceTree = ""; }; - 5B648BD77C67F6984E6471526556DA44 /* RNFirebaseAdMobRewardedVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobRewardedVideo.h; sourceTree = ""; }; - 5BAD23D7E9A015D36D9070DC74C9C9EB /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; - 5BCB755568AE6FC6B7B38E00572F45CA /* REAModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAModule.h; path = ios/REAModule.h; sourceTree = ""; }; - 5BCCCD4DF9A60DEAD70F2EA0016C5BC5 /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; - 5BE307A8282194964DBE9E8481B9E1B0 /* RCTFileRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFileRequestHandler.m; sourceTree = ""; }; - 5C1D1BE7C9966B221DE569ECEB4D3CF2 /* RCTVibration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVibration.m; sourceTree = ""; }; + 5C0237864402485714C0421AC8F8AADA /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; + 5C236F69F20B76124FCDF88A46243966 /* BSG_KSMach_x86_32.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_32.c; sourceTree = ""; }; 5C3170CE50BA839FD7FFABDF189D8F38 /* quant_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = quant_enc.c; path = src/enc/quant_enc.c; sourceTree = ""; }; 5C366C49F593DF61C1B36CA3537E513C /* SDWebImageCacheKeyFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheKeyFilter.h; path = SDWebImage/Core/SDWebImageCacheKeyFilter.h; sourceTree = ""; }; - 5C6058ACA1A680E9176A03B2EB312883 /* KeyCommands-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "KeyCommands-prefix.pch"; sourceTree = ""; }; + 5C423F0F22D9E644B5F9E5ECA56CBB8D /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; + 5C5220ADF71397D5B95AA595F8813FE3 /* REABlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABlockNode.m; sourceTree = ""; }; + 5C89D7ED4E2CCB53B6DA2BB7D65A67DD /* react-native-keyboard-input-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-keyboard-input-dummy.m"; sourceTree = ""; }; + 5C9ED86974837919A203C890E1B9D52A /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; 5CA8F1A20B87DBB263F925DD7FE29947 /* libreact-native-keyboard-input.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-keyboard-input.a"; path = "libreact-native-keyboard-input.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 5CCC9736F50544996E747EC71861E462 /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; + 5CC1C8636F6E342DC363373509099EC9 /* REAStyleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAStyleNode.h; sourceTree = ""; }; + 5CE7F2C3E9991FC3578F7E67BE5C9393 /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; 5CFEB116ECB9A495D54B314D795B805B /* stl_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_logging.h; path = src/glog/stl_logging.h; sourceTree = ""; }; - 5D57B59194C2DF888C374F2572B6C4D7 /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = RAMBundleRegistry.cpp; sourceTree = ""; }; + 5D06D7D56F20F828FAB576DD995736F4 /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; + 5D2769D9DB4B1CBD4E7DB9C6999667E1 /* REANodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REANodesManager.m; path = ios/REANodesManager.m; sourceTree = ""; }; + 5D3CEA80B14F24C4D770A2E19D7204DB /* rn-extensions-share.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.xcconfig"; sourceTree = ""; }; + 5D4F3FD31ED29FABC56321FF1335434E /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; 5D7200E0CD187410B1D095CC51FF6E72 /* FIRInstanceIDCheckinStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinStore.h; path = Firebase/InstanceID/FIRInstanceIDCheckinStore.h; sourceTree = ""; }; - 5DB4CDEC49B15490713325890AB61240 /* 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; }; + 5D72A991A8C2F34EA384AC14E7066DB1 /* Yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 5D86346C2AE41566D1B246082A4B399A /* BSG_KSCrashSentry_User.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_User.h; sourceTree = ""; }; 5DB602E4418A6458062E66FDBE8939FB /* FIRCoreDiagnosticsConnector.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnosticsConnector.m; path = FirebaseCore/Sources/FIRCoreDiagnosticsConnector.m; sourceTree = ""; }; - 5DB94419CD67EC0E57F01CDB71BBEDFF /* RNFetchBlobRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobRequest.h; path = ios/RNFetchBlobRequest.h; sourceTree = ""; }; - 5DD64FEEBB59F5AF33D29963E4109B1A /* 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; }; - 5E14416BDCED8734451ED493A72627EA /* QBAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetCell.m; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.m; sourceTree = ""; }; - 5E26F9DB6B30AE836D67F78AF01ED7FD /* BSG_KSMach_x86_32.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_32.c; sourceTree = ""; }; + 5DD3CB396B1E0BC01001BDFCBB89C6BD /* RNTapHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNTapHandler.h; sourceTree = ""; }; + 5DE3D54D2AA53A71F3B57D92ACDD7671 /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; 5E395510D11DCC7395A036D8E1F57BA3 /* SDWebImageCacheSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheSerializer.h; path = SDWebImage/Core/SDWebImageCacheSerializer.h; sourceTree = ""; }; + 5E3E534D5295A28045589D6BEA240E6B /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = ""; }; 5E4674603A5D5B9215FFA0F8E69F8B71 /* liblibwebp.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = liblibwebp.a; path = liblibwebp.a; sourceTree = BUILT_PRODUCTS_DIR; }; 5E5CC8F6A5743198CEE068F4A629834B /* FIRComponentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentType.m; path = FirebaseCore/Sources/FIRComponentType.m; sourceTree = ""; }; + 5E6658E4489794B6871AB115234109D0 /* react-native-keyboard-tracking-view.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-keyboard-tracking-view.xcconfig"; sourceTree = ""; }; 5E6CBF3BA9FA871AD606BAA54F66FC97 /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseAnalytics.framework; path = Frameworks/FirebaseAnalytics.framework; sourceTree = ""; }; - 5EAF08B8553B90B6830AAEA9BF90A019 /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; - 5EB3787330DDB5AF32D6D8DC6DBFE9B0 /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = ""; }; - 5EC16A3302BEFE7D1A384A0E2B860F87 /* RNBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBridgeModule.h; path = RNNotifications/RNBridgeModule.h; sourceTree = ""; }; + 5E9B9CADDD9A79257A18CB6FF68785E0 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; + 5ECEE9B7AB6E325C452EC27C706345B5 /* RNBootSplash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBootSplash.h; path = ios/RNBootSplash.h; sourceTree = ""; }; + 5EDBA507EA30949A1594DB294BB7731A /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; 5EE39A7B4283BEFE43E66F46862951DC /* SDImageAPNGCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAPNGCoder.h; path = SDWebImage/Core/SDImageAPNGCoder.h; sourceTree = ""; }; 5EE46B386E95AC9FBBEE856CF2383198 /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = ""; }; - 5F089F3A124DB6CECEAC5C113F2A71FE /* RNFirebaseRemoteConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseRemoteConfig.m; sourceTree = ""; }; + 5EEFF7043838ECFBC2155B5C5B83F7CD /* RNImageCropPicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.xcconfig; sourceTree = ""; }; + 5EF03D4A1089DE603CBFFF9D9D52203D /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; + 5F0337242837C1D7E4670132D6F493B4 /* REAOperatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAOperatorNode.m; sourceTree = ""; }; 5F1C5F873FB22C5A73E967F1C3900F05 /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = String.cpp; path = folly/String.cpp; sourceTree = ""; }; - 5F6AB8F360C549914ACACC1BCCDC126A /* EXFileSystem.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.xcconfig; sourceTree = ""; }; - 5F9A138C6ED0C4CDA42E8148027A6006 /* react-native-jitsi-meet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-jitsi-meet-prefix.pch"; sourceTree = ""; }; 5FA7BEFCEE456CEE557E176D2373B2AE /* UIView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCache.h"; path = "SDWebImage/Core/UIView+WebCache.h"; sourceTree = ""; }; - 5FAE6AF1B4DBEF13380F372C55C2AEA3 /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; - 5FDDFFC2AFB9F3B52B3AAD537CB209A7 /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = ""; }; - 6010993E0A783FD97974261D42AA7374 /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; - 603E4CF0D2EF1B7DE6BDB26D017CD438 /* RCTRequired.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.xcconfig; sourceTree = ""; }; - 607DE7229D13A934D9D396A2062FF049 /* 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; }; + 5FBB2E0D6185552EE63D91A0B3B7AD1F /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; + 5FF6EEDD41B74C067D234D6C305BFF65 /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; + 5FF709631B88B27D8DC8102633CDC321 /* EXLocalAuthentication.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXLocalAuthentication.xcconfig; sourceTree = ""; }; + 600667F42973CEECCEE935951B13F5DD /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; + 600BF46675EC37CC1E4EB9CAEEF7BCDA /* 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; }; + 60163513AA98DAFFBB8096351DCE81C1 /* RNFirebaseFirestore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestore.h; sourceTree = ""; }; + 602A3122C7F22DFAAB9B83821759D99D /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; + 604580A241970FCE2252B38D3AD2EB26 /* RNUserDefaults-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNUserDefaults-dummy.m"; sourceTree = ""; }; + 606CCE606376DD7990442AF23CEE5A3F /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; 608E4B0589801079221FEB94B6D394AC /* FIRInstanceIDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDStore.h; path = Firebase/InstanceID/FIRInstanceIDStore.h; sourceTree = ""; }; + 60962EF7F5AA7A9D95F94DCEE66EA7F5 /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; + 60978B2DFAAE74E084D487E2882749B4 /* RNFirebaseAdMob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMob.m; sourceTree = ""; }; 60BC27AD9ED5029E588DEDFB282BC600 /* FIRInstanceIDBackupExcludedPlist.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDBackupExcludedPlist.m; path = Firebase/InstanceID/FIRInstanceIDBackupExcludedPlist.m; sourceTree = ""; }; - 6100746B256DDD1521CB49EBC2877F8A /* EXUserNotificationPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXUserNotificationPermissionRequester.m; sourceTree = ""; }; + 60EBB00780FF2A181C094F49615EB38C /* EXFileSystem.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.xcconfig; sourceTree = ""; }; + 6123B2A15408A70B76B79C57A175C786 /* RNCAssetsLibraryRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAssetsLibraryRequestHandler.h; path = ios/RNCAssetsLibraryRequestHandler.h; sourceTree = ""; }; 6129D17144193C727D68FFB158130674 /* FIRInstallationsSingleOperationPromiseCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsSingleOperationPromiseCache.h; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.h; sourceTree = ""; }; - 6140E340775F0F13F7E2A6E9282B98D8 /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; 616B59B78E41E0F8743C2A2FDFBA466B /* FBLPromise+Reduce.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Reduce.h"; path = "Sources/FBLPromises/include/FBLPromise+Reduce.h"; sourceTree = ""; }; - 617FBCF995CE49D04C8237AFF1BF4720 /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; + 6178BBA9B9B9A78E0C232275C315D603 /* rn-fetch-blob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-fetch-blob.xcconfig"; sourceTree = ""; }; + 6178ED33DD306879DAFA289C279D1721 /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; + 61935962D316655D08F4C0C658529A2B /* BSGOutOfMemoryWatchdog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGOutOfMemoryWatchdog.h; sourceTree = ""; }; + 61ACE6EF73A38A8530394E258344A58E /* EXLocalAuthentication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocalAuthentication.h; path = EXLocalAuthentication/EXLocalAuthentication.h; sourceTree = ""; }; 61AF1837C4C82F78744ED30517A5031F /* analysis_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = analysis_enc.c; path = src/enc/analysis_enc.c; sourceTree = ""; }; - 61B19A58B1992BF0BC549A46F9ABC77E /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = ""; }; - 61C9B216C92568737B785186186A9B84 /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; - 61EB1258716B8DFD1A247EF4CE6BEB72 /* RNGestureHandlerDirection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerDirection.h; path = ios/RNGestureHandlerDirection.h; sourceTree = ""; }; - 6235F0F9E3A876D361CF60105A7254E9 /* CoreModulesPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreModulesPlugins.h; path = React/CoreModules/CoreModulesPlugins.h; sourceTree = ""; }; + 61D39CC515F185885887678EAC477089 /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; + 61FBC6C6160BB2253D991ED26479A5FB /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; + 62046A26178649AC5D619E9ED83B8CED /* REACallFuncNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACallFuncNode.m; sourceTree = ""; }; + 6229001BE76DEB8679ABD3715883D420 /* BSG_KSMach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMach.h; sourceTree = ""; }; + 62479198ABD12ABC2AB2CBB922468BF2 /* BSG_KSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSLogger.h; sourceTree = ""; }; + 6248DF6E2A2A11CDEAEB601763176F59 /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = ""; }; + 624FC0F34AA0E8556C317C42E134D426 /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; + 627B45BC8931FFF3C3C6BE50940ACACE /* 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; }; + 627C072D1242A8741EB84490641B4EEE /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; + 62D1CDB94E5DC720C62258096FB8F188 /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = ""; }; 62DCD8FC43D8554520EF5C154FB8D476 /* SDWebImageDownloaderRequestModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderRequestModifier.h; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.h; sourceTree = ""; }; 62E764263319E7C9A53A9AF39D7723E5 /* FIRInstanceID+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstanceID+Private.h"; path = "Firebase/InstanceID/Private/FIRInstanceID+Private.h"; sourceTree = ""; }; - 62EFAE213B7B1E2D9B0E4CD14C348334 /* MaterialIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = MaterialIcons.ttf; path = Fonts/MaterialIcons.ttf; sourceTree = ""; }; - 62F3F46BC10E918E6774D29E2338B7CA /* REAPropsNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAPropsNode.m; sourceTree = ""; }; - 630A182E2B144F70AD92BEAB51A562BD /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; + 630934A42CE715B3E03D88D2901ACCFB /* BSG_KSCrashSentry_CPPException.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_CPPException.mm; sourceTree = ""; }; 631C18F49615412D4C905B1C37D9ADA9 /* UIImage+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+RSKImageCropper.h"; path = "RSKImageCropper/UIImage+RSKImageCropper.h"; sourceTree = ""; }; - 634532311DB6CBCEABDB8837E125E209 /* RNAudio.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNAudio.xcconfig; sourceTree = ""; }; - 6354554715F7F64320598ED85AAC283D /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = ""; }; - 6363E470823122AA16E3405C3E6F776E /* BannerComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BannerComponent.m; sourceTree = ""; }; 636D6783185DE1F442D58AEE9C52B4B1 /* GDTCCTCompressionHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCCTCompressionHelper.m; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/GDTCCTCompressionHelper.m; sourceTree = ""; }; + 636F31DA774BEA7BE943A8E6CCC0CFF0 /* RCTKeyCommandsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandsManager.h; path = ios/KeyCommands/RCTKeyCommandsManager.h; sourceTree = ""; }; 63743B445C8FAC8021EC41CC4362CF9F /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = src/glog/log_severity.h; sourceTree = ""; }; - 637A12296AAF3AF85429FA156B9063A6 /* BSG_KSCrashSentry_MachException.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_MachException.c; sourceTree = ""; }; - 6399F0FA86B6121DF1FA4A650E02B814 /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 63A1FF8E19476B645DA57F275B450566 /* RNNotificationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationUtils.h; path = RNNotifications/RNNotificationUtils.h; sourceTree = ""; }; - 63A696EC218DD1DAE902663F3B92C49C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 639DAC10EE5EA1A619AB562FD75ED18C /* KeyboardTrackingViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KeyboardTrackingViewManager.m; path = lib/KeyboardTrackingViewManager.m; sourceTree = ""; }; 63B31FE76518F6AD1B9C7FC4FC3BE0FD /* SDWebImageIndicator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageIndicator.m; path = SDWebImage/Core/SDWebImageIndicator.m; sourceTree = ""; }; - 63C04C9B808242A07812EE94BE482F00 /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; - 63CF31F397DF0BDE9FB607FC2E3007A9 /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; + 63DDE0DC4AACDEEC86EF46E256EFBCE1 /* BSG_KSBacktrace_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace_Private.h; sourceTree = ""; }; 63F237C28969479FD39F0D8EB9063B79 /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "SDWebImage/Core/UIImage+MultiFormat.m"; sourceTree = ""; }; + 63F98D42B9567C6BAFED9D04BBDAD278 /* REAFunctionNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAFunctionNode.m; sourceTree = ""; }; 63FC874B85C176CC532B90BB75E6546F /* GULLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerLevel.h; path = GoogleUtilities/Logger/Public/GULLoggerLevel.h; sourceTree = ""; }; + 6400266D477D2FA1A5BD7E46E08C1FC8 /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; + 644EF624B21614E883715488CDB1713E /* REATransitionAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionAnimation.m; sourceTree = ""; }; 645432A1DF9B3036F4D66BBB89CBAA89 /* backward_references_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = backward_references_enc.c; path = src/enc/backward_references_enc.c; sourceTree = ""; }; 6456BEB6732CB1208721A93717E83ACB /* SDAnimatedImagePlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImagePlayer.h; path = SDWebImage/Core/SDAnimatedImagePlayer.h; sourceTree = ""; }; - 646273C14DFF10D35676293DE6BD04CA /* REAOperatorNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAOperatorNode.m; sourceTree = ""; }; - 6480A035FDCAE96B58C48CA7F315D431 /* REANodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REANodesManager.m; path = ios/REANodesManager.m; sourceTree = ""; }; 64858CBC195C53A245090C9C8C11D8DB /* FIRInstanceIDCheckinPreferences+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstanceIDCheckinPreferences+Internal.h"; path = "Firebase/InstanceID/FIRInstanceIDCheckinPreferences+Internal.h"; sourceTree = ""; }; + 648EFD12C8881B842B22AA55F3DC4FE9 /* Bugsnag.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Bugsnag.h; sourceTree = ""; }; 64963B0AD90508C9D1DAD41D65CBBC0C /* random_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = random_utils.c; path = src/utils/random_utils.c; sourceTree = ""; }; - 64C48D8D013E8FE6E0BC2EE32C9C0330 /* RNCSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSliderManager.m; path = ios/RNCSliderManager.m; sourceTree = ""; }; - 651B081AAA996E059BAFD533EF0B1B68 /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; - 6522F588FD87E22B716396B0BB2FCC23 /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; - 6531AD763044370F6EA7D5EC3E63C94A /* UMAppLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMAppLoader-dummy.m"; sourceTree = ""; }; - 6554F5D74748C27365568140A4796FA9 /* fr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fr.lproj; path = ios/QBImagePicker/QBImagePicker/fr.lproj; sourceTree = ""; }; - 657D62725F5144EA733699A8406DD7C7 /* REANodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REANodesManager.h; path = ios/REANodesManager.h; sourceTree = ""; }; + 64B5D7BB5FFA60F01C8E187D6D93E9B1 /* EXImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXImageLoader.h; path = EXImageLoader/EXImageLoader.h; sourceTree = ""; }; + 64C7B6452059258838A037FCED07C385 /* RNGestureHandlerButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButton.h; path = ios/RNGestureHandlerButton.h; sourceTree = ""; }; + 6538AEC00D420A68AEE31EED4F6580C8 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 6548FD636CFDC61BB7F344C247E1C340 /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = ""; }; + 656E117710D129BCC5F46D0693DF9AB1 /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; + 6570BEC05AF52AE575BFE1F10E1D6275 /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = NativeToJsBridge.cpp; sourceTree = ""; }; + 6595FE78E81599C216E59270F714BC82 /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 65985823BA9E59CD5D699B8553FBFC7A /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = SDWebImage/Core/SDWebImageCompat.m; sourceTree = ""; }; - 65A4F2A64799EAED8949F270492D2D0D /* RNNotificationParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationParser.h; path = RNNotifications/RNNotificationParser.h; sourceTree = ""; }; - 65B09B7C2B056521DA317BC0C7FDA36C /* RNFirebaseAuth.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAuth.h; sourceTree = ""; }; - 65BB7F720816F7216E1F891DEC5A5873 /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; - 65BEA74BA7488C6DF4D1DBFB14D902CE /* RNBootSplash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBootSplash.m; path = ios/RNBootSplash.m; sourceTree = ""; }; + 65CB6926EE4164B88B485A0EB2C889B8 /* react-native-webview.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.xcconfig"; sourceTree = ""; }; + 65CE45D203BEB30B53094FFB8F23B2C7 /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libYoga.a; path = libYoga.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 65DF2D38D025F5920C9A118C22152FC2 /* FFFastImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageView.h; path = ios/FastImage/FFFastImageView.h; sourceTree = ""; }; + 65E0D2157B64854FED419EF02DE3FD1B /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevMenu.h; sourceTree = ""; }; 65F4CD4AED2AC4EF14B118A58EDEE355 /* UIImage+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+RSKImageCropper.m"; path = "RSKImageCropper/UIImage+RSKImageCropper.m"; sourceTree = ""; }; + 6600B3ECE4A9A1F4D25396A83C32C3DD /* ARTGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTGroup.h; path = ios/ARTGroup.h; sourceTree = ""; }; + 6621CD50302794812AD1F7FF9D0322B6 /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; 66228ED45E198EDBDEA21A197E306C7E /* SDWebImageDownloaderResponseModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderResponseModifier.m; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.m; sourceTree = ""; }; - 663177FC853546862F39259A139D0EC0 /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; 6638D4A39DF660C0D118FE1FB6420263 /* format_constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = format_constants.h; path = src/webp/format_constants.h; sourceTree = ""; }; - 667950671B73978D2A6FA78DD378E7EF /* RNBridgeModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBridgeModule.m; path = RNNotifications/RNBridgeModule.m; sourceTree = ""; }; 6689EFD327C141249C36F84B370FCC15 /* SDAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImage.m; path = SDWebImage/Core/SDAnimatedImage.m; sourceTree = ""; }; + 668A06AC4FD01113F3AD768199562A4D /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = ""; }; 668DB3196C8AC5E9F322863CBC018C56 /* FIRInstallationsVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsVersion.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallationsVersion.h; sourceTree = ""; }; - 669C987C4F92702E7B0DFEF7CAAAB0F1 /* REAStyleNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAStyleNode.h; sourceTree = ""; }; 669E2D815BA85AA4A6BB99088F534BB0 /* lossless_enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_sse2.c; path = src/dsp/lossless_enc_sse2.c; sourceTree = ""; }; 66BB28169F8562B9DE334B74B5B456EB /* SDImageGraphics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGraphics.h; path = SDWebImage/Core/SDImageGraphics.h; sourceTree = ""; }; 66BE2E56E1110F499C048713FEB1CE2A /* demux.c */ = {isa = PBXFileReference; includeInIndex = 1; name = demux.c; path = src/demux/demux.c; sourceTree = ""; }; 66EF89ABD7B5DBBB462B12529A796D9B /* GoogleDataTransport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GoogleDataTransport.h; path = GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport.h; sourceTree = ""; }; + 66FE792892A7EBA79A71E33AA48E556F /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; 67126F01CF3D1827B3B8FF2A8F677A2F /* double-conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "double-conversion.h"; path = "double-conversion/double-conversion.h"; sourceTree = ""; }; + 672097DF8942995581CE2F38215EB2A5 /* RNGestureHandlerModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerModule.m; path = ios/RNGestureHandlerModule.m; sourceTree = ""; }; + 6720C13989FF0300B3BD20734475DF23 /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = ""; }; + 6721B45513882BF506BDB6A743EF761F /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; + 672A3A7FA491AC6968E21C58EC21FD21 /* react-native-video-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-video-prefix.pch"; sourceTree = ""; }; 67495001F5CD5835C2BB0CC49D35E686 /* GULNetworkConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkConstants.m; path = GoogleUtilities/Network/GULNetworkConstants.m; sourceTree = ""; }; - 67591D72716A6D2B030010BEEFABDD20 /* UMPermissionsMethodsDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsMethodsDelegate.h; path = UMPermissionsInterface/UMPermissionsMethodsDelegate.h; sourceTree = ""; }; + 674FA7B59F6E13FCB007AF7757327943 /* RNCAppearance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearance.m; path = ios/Appearance/RNCAppearance.m; sourceTree = ""; }; 6771D231F4C8C5976470A369C474B32E /* libReact-CoreModules.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-CoreModules.a"; path = "libReact-CoreModules.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 677829C82932437E90068CC931C2D606 /* FIRInstallationsSingleOperationPromiseCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsSingleOperationPromiseCache.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsSingleOperationPromiseCache.m; sourceTree = ""; }; - 6797C894856069CDC3C86C11A7403793 /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; - 67C4AE197F2F4270AD29AE458014D5D3 /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; - 67E4993CF7899F2EA58E49E1EA4F9C7F /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; + 67840563043AA82F17D29A652FA22AB6 /* ARTRenderable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTRenderable.h; path = ios/ARTRenderable.h; sourceTree = ""; }; + 67A1FB9C11FBF93A066ED437E4D975E9 /* BSG_KSCrashType.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashType.c; sourceTree = ""; }; + 67DBF913CE88380D78DC6C7EA7707F76 /* BugsnagBreadcrumb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagBreadcrumb.h; sourceTree = ""; }; 68041748F69925013F2E5E2E941E5D0B /* FBLPromise+Delay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Delay.h"; path = "Sources/FBLPromises/include/FBLPromise+Delay.h"; sourceTree = ""; }; - 6812983EE2AFE8C95A06E38C75B88694 /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; - 681FD24565105508386EF131BF1F8550 /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = ""; }; - 68210CC2ED4C6F498EA4DAAC3D560975 /* UMFaceDetectorInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.xcconfig; sourceTree = ""; }; + 680D7CA3D690389D5E2F3571CA82F65D /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; + 683256651E619B3F182E3AB4CCA4744F /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; + 6838A85B8F9A94BEA6F282886E2B333E /* BannerComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BannerComponent.m; sourceTree = ""; }; 6853D0C0275C488A7AFF75D5BF9ACC72 /* RSKImageCropViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageCropViewController.h; path = RSKImageCropper/RSKImageCropViewController.h; sourceTree = ""; }; - 685CC9ED7AA857F8F83C5CE07C555EE5 /* RCTAccessibilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAccessibilityManager.m; sourceTree = ""; }; - 685FE3980782BE2DDDB50F4D9DEF7AC8 /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; - 686B2034BBE247CCD34FA7167EE6C12A /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; 686FA236B3A0EDC2B7D10C6CB83450C8 /* libreact-native-keyboard-tracking-view.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-keyboard-tracking-view.a"; path = "libreact-native-keyboard-tracking-view.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 687045C978C8C32911E216B305D93291 /* BSG_KSMach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSMach.h; sourceTree = ""; }; - 687B021CBCA2D118D572F00E2FD2B142 /* KeyCommands.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeyCommands.xcconfig; sourceTree = ""; }; - 68A4D0305A3CA5885A1016E9E2C7286E /* react-native-background-timer.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-background-timer.xcconfig"; sourceTree = ""; }; - 68D81A512B718B97E473BF6AB68B9261 /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; - 68EE2D25064CC06DF3BB7FACB714AB67 /* 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; }; - 690B02E454204005B57638DB0F9B8CA4 /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; - 6920C02A5F5956A0390264E640C0B9EF /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; - 69228D228ED58E48577E1E205972A156 /* rn-extensions-share-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-extensions-share-dummy.m"; sourceTree = ""; }; - 6932F20496C83361F27869BCFF8CA021 /* BugsnagSessionFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionFileStore.m; sourceTree = ""; }; + 687D274BCA24C931D4E2AC530A4BB8C9 /* RNDateTimePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePicker.m; path = ios/RNDateTimePicker.m; sourceTree = ""; }; 6942351307BC1F54575D9853307EAE0E /* libGoogleDataTransportCCTSupport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransportCCTSupport.a; path = libGoogleDataTransportCCTSupport.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6987CC8C81C7008AD5DA1E776395751C /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = ""; }; - 69934BE6347DAEBFD2E16F9193359768 /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; - 69AF57D8E15BF741474E5EDAD33E1515 /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; - 69CDFAD076C44A8B83929C1858218924 /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; + 6976F471728D539A443214A0E81DB102 /* RCTAlertManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAlertManager.m; sourceTree = ""; }; + 69852DDB634F936AD67EF4AFEEC06D8D /* advancedIos.md */ = {isa = PBXFileReference; includeInIndex = 1; name = advancedIos.md; path = docs/advancedIos.md; sourceTree = ""; }; + 69E73D0D712ABA9F6DEED0F86AF52EF7 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTClipboard.h; sourceTree = ""; }; 6A21588A6554E872D0F5137FF593521A /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "SDWebImage/Core/UIView+WebCacheOperation.h"; sourceTree = ""; }; + 6A43E7DC5723FD9F6489D01E21E04EE0 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; 6A5DB3B95A61733B29846B836C5FE77A /* upsampling_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_neon.c; path = src/dsp/upsampling_neon.c; sourceTree = ""; }; + 6A9B116DF69ECF6ACD623B9630FD7F1F /* RNFetchBlobProgress.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobProgress.m; path = ios/RNFetchBlobProgress.m; sourceTree = ""; }; 6A9B97E8CE94081CD64AB0B4FC540CC4 /* Pods-RocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RocketChatRN-resources.sh"; sourceTree = ""; }; - 6A9C9B65963A8EB86816AA8302B70D7B /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = ""; }; 6A9DF5E9B3012A39ED9F672E0C8D62E4 /* FABAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FABAttributes.h; path = iOS/Fabric.framework/Headers/FABAttributes.h; sourceTree = ""; }; - 6AA8C8AC1D1EE68AA78B317A9950864E /* REAClockNodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAClockNodes.h; sourceTree = ""; }; - 6B1A001AF3971D6A74C0EB5FDA87A732 /* RNSScreenStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStack.h; path = ios/RNSScreenStack.h; sourceTree = ""; }; + 6AA5EC5DA0AC2A640AD55520734F6D8F /* RNSScreenStackHeaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderConfig.h; path = ios/RNSScreenStackHeaderConfig.h; sourceTree = ""; }; + 6AE78AC48248757E5F4481B82B2EB069 /* fr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fr.lproj; path = ios/QBImagePicker/QBImagePicker/fr.lproj; sourceTree = ""; }; + 6B07E156D4BC56BAF650BF430017ADA8 /* RNScreens.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.xcconfig; sourceTree = ""; }; + 6B0DF453C24E692E4F8226C5A42A08FB /* IOS7Polyfill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOS7Polyfill.h; path = ios/IOS7Polyfill.h; sourceTree = ""; }; 6B3000A1D45E185CABEFD0B060F04FC4 /* GULNSData+zlib.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GULNSData+zlib.m"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.m"; sourceTree = ""; }; + 6B360C00644E9E808A39C5EB37BB1840 /* READebugNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = READebugNode.m; sourceTree = ""; }; 6B3DCE3E62D468D58DE3FECB07CFAB5C /* FBLPromise+Race.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Race.m"; path = "Sources/FBLPromises/FBLPromise+Race.m"; sourceTree = ""; }; - 6B58CF705D6278253C186C6E616EB8BF /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; + 6B6F4AC2C5C639CD50BF159830CC8CFA /* KeyCommands.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = KeyCommands.xcconfig; sourceTree = ""; }; + 6B8F563DDF42E97813ADA94A44D41DAB /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; 6B8FEC8581AD19DDD78ABBB18ECE2F22 /* GDTFLLUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTFLLUploader.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTFLLUploader.h; sourceTree = ""; }; + 6BA51F00ECD12529E58CF5FCF1BDD822 /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; 6BB4E471066205C1B9F8413CE80BAB3E /* random_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = random_utils.h; path = src/utils/random_utils.h; sourceTree = ""; }; - 6BBCE391816522C2DB0D4F64239E685D /* React-CoreModules.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.xcconfig"; sourceTree = ""; }; - 6BC377C2410078E21BC7A222BBC7FA10 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; - 6BD60FBE2B26A28936FC126532D2A021 /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; + 6BFB0D55EFAEBD52BC0FBC03A19D7393 /* TurboModuleBinding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleBinding.h; path = turbomodule/core/TurboModuleBinding.h; sourceTree = ""; }; + 6C42D1AEB2EA0DD81E36AE847D421E47 /* BSG_KSMach_Arm64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm64.c; sourceTree = ""; }; + 6C795AC784E91CE7BFFFC7AA57CC3043 /* QBAlbumsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumsViewController.h; sourceTree = ""; }; 6C8B9AF946127A4CCC12F6DA5E9EFD4E /* FIRAppAssociationRegistration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAppAssociationRegistration.m; path = FirebaseCore/Sources/FIRAppAssociationRegistration.m; sourceTree = ""; }; - 6C8E045F2FD5C7D631C293C0F73C0604 /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; 6C8FC56CD5FE60871A148C7D2580D8D2 /* upsampling_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_sse41.c; path = src/dsp/upsampling_sse41.c; sourceTree = ""; }; - 6C9E54AD8B41D0C5767C7A07792FF8A2 /* RCTAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimatedImage.h; path = Libraries/Image/RCTAnimatedImage.h; sourceTree = ""; }; - 6CC59D62E3FE164D603346C4D814CA99 /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; - 6CF2E9B29664C031D65952681C658B45 /* BSG_KSFileUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSFileUtils.h; sourceTree = ""; }; - 6CFDF7B2EFA01E25A3EF28BDD79B27B9 /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = ""; }; - 6D70EC68436BCAFD870998C26D22668D /* RNGestureHandlerButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerButton.h; path = ios/RNGestureHandlerButton.h; sourceTree = ""; }; + 6C977153EE830FF4DF8C2637EB155FC4 /* BugsnagLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagLogger.h; sourceTree = ""; }; + 6CF3C6C0E55376CABB4BFAC540BCC319 /* REATransitionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionManager.m; sourceTree = ""; }; + 6D1B26716E0444055D19F8BE193F51AD /* RootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RootView.m; path = ios/RootView.m; sourceTree = ""; }; + 6D47D80CBD48D815F683A354FF3FAFF8 /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxMethod.mm; sourceTree = ""; }; + 6D52E6CD1695F8CFA8572D11EB15479C /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; 6D7591D0402DD814820F0F732E55134A /* FBLPromise+All.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+All.m"; path = "Sources/FBLPromises/FBLPromise+All.m"; sourceTree = ""; }; 6D8BCB824FD16FFB5D40146868CEB425 /* endian_inl_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = endian_inl_utils.h; path = src/utils/endian_inl_utils.h; sourceTree = ""; }; 6D9558B896F99A90A93DC099BD7C8D88 /* UIButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "SDWebImage/Core/UIButton+WebCache.m"; sourceTree = ""; }; - 6DA2677C9C7DAA16CFDB808FC14788B5 /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = ""; }; 6DBFEEEE8490B0AEC5A93E092F2857A5 /* GDTCOREventTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCOREventTransformer.h; sourceTree = ""; }; - 6DC190A18B6019596F125BE85CE8CDB8 /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 6DDE23DA939219B390290D7B9FEA0763 /* RNFirebaseAnalytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAnalytics.h; sourceTree = ""; }; - 6E0D2F34C0316DC8303B87204FDC43B2 /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = ""; }; + 6DE8A4F7C409117A3DC6A2E37ED2DF60 /* REAConcatNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAConcatNode.h; sourceTree = ""; }; 6E1351AE14BC4DCE7B93E301AA99026B /* FBLPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromise.h; path = Sources/FBLPromises/include/FBLPromise.h; sourceTree = ""; }; 6E2CDB4C30DCF3C644EBFB1CB6F8B63C /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = src/utils/utils.h; sourceTree = ""; }; - 6E5EB502BBC0B8F55802C31047B4775D /* react-native-keyboard-tracking-view-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-keyboard-tracking-view-dummy.m"; sourceTree = ""; }; - 6E8C0C5F92CD5E2E03FE5D8BD19B7A42 /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; + 6E2D19D654878B82F657E6B3A6BEFFC1 /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; + 6E47D5D95BAEAF224B1C3E50EB8D703B /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = ""; }; + 6E5DD8E9C4EDFA25C3D2507671F7D2AB /* EXUserNotificationPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXUserNotificationPermissionRequester.h; sourceTree = ""; }; + 6E6B3F72D28DBBEB7379B5DBECA7B3B2 /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; + 6EB980952287CDFD8FC85276F1077929 /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; 6ECC10905A36138211973FA8BFF62640 /* UIImage+Metadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Metadata.m"; path = "SDWebImage/Core/UIImage+Metadata.m"; sourceTree = ""; }; - 6EF51AE475B1C94C17C7C9E97C9A28CD /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = ""; }; - 6EF6C0021F4ADAA1E452F1B22B02FB85 /* ReactCommon-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-prefix.pch"; sourceTree = ""; }; - 6F03D14446D09D90638B1413DA22CEF7 /* REATransitionValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionValues.m; sourceTree = ""; }; - 6F0C3E5F49ADE324BFA3AEB74AA646D0 /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = ""; }; - 6F2A067300BE713EFB9E56F58CAE3B7F /* EvilIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = EvilIcons.ttf; path = Fonts/EvilIcons.ttf; sourceTree = ""; }; + 6EDE0A2FEAF794C4A3B1D117283ED8B9 /* react-native-background-timer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-background-timer-prefix.pch"; sourceTree = ""; }; + 6EFA3A284870757064A62A77CA020A25 /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; + 6F063C7CC4BD76F426301C2BBE30E27B /* RNPushKitEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventListener.h; path = RNNotifications/RNPushKitEventListener.h; sourceTree = ""; }; + 6F0C2E0E933DF322244E10D335D3AA3B /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; 6F2B281A5C5A6DA83EEDED90A470812A /* pb_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_encode.c; sourceTree = ""; }; - 6F59D85A8A002DE35AC8727160034612 /* TurboModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModule.cpp; path = turbomodule/core/TurboModule.cpp; sourceTree = ""; }; - 6F63C595C2EA0A71DB2735C63EAFCC1D /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = Libraries/WebSocket/RCTWebSocketExecutor.h; sourceTree = ""; }; 6F8611F8EC76BA0AD83706FBD552AEFF /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = SDWebImage/Core/SDWebImageManager.h; sourceTree = ""; }; + 6F87B8345A7593294B6A9E132EB575AC /* FontAwesome5_Solid.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Solid.ttf; path = Fonts/FontAwesome5_Solid.ttf; sourceTree = ""; }; + 6F9E7EF7E62D98E528212D0D273427AD /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = ""; }; + 6FA43C006EA2B6CF298FE00569849C4E /* RCTAppState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAppState.m; sourceTree = ""; }; 6FAC32E62B1F1A5CF4B7035D16475866 /* FBLPromise+All.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+All.h"; path = "Sources/FBLPromises/include/FBLPromise+All.h"; sourceTree = ""; }; - 6FE326C56F88E3DEB8D0E72F3704F5FC /* RNFetchBlobNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobNetwork.m; path = ios/RNFetchBlobNetwork.m; sourceTree = ""; }; - 6FE59B916214115894E2C40051662512 /* BSG_KSCrashC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashC.c; sourceTree = ""; }; + 6FE00F5B510EE2652825473F9A8E14F2 /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; + 6FE23694EA167907586135DDAE4DE7EC /* React-RCTActionSheet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.xcconfig"; sourceTree = ""; }; 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libDoubleConversion.a; path = libDoubleConversion.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6FFD07CA8CC396C11428C8593FC6E959 /* SDDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDisplayLink.h; path = SDWebImage/Private/SDDisplayLink.h; sourceTree = ""; }; - 703E633D67D09CCA45C691AFEF430AF5 /* RNFirebasePerformance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebasePerformance.m; sourceTree = ""; }; - 704B3006AE3C4DF9E816A98C0AD58C74 /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; - 70527C4CB499808627EBE0CEA40D0252 /* RNFirebaseFirestoreCollectionReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreCollectionReference.h; sourceTree = ""; }; - 70533C394B7A6E044FCBDB9D4D35FCBD /* BugsnagUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagUser.m; sourceTree = ""; }; - 707D0D272153A825CD59045DA35C2C21 /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 70950053816887A6954C4F28F3B68053 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; - 70B8EA6D227EF252F62CF777A6100305 /* RNNotificationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationUtils.m; path = RNNotifications/RNNotificationUtils.m; sourceTree = ""; }; + 70088BB7379E97AB2D9E9FF95F92F140 /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = ""; }; + 7012687F32F355EC8E14C8C53AAD981D /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; + 702CADBFFDC7EF3FBCCA9A11A221319C /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; + 705CCE9E05509627FF89A09250AE4165 /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; + 707A93EC8F27AFC053B4DFE9AD3048C5 /* BSG_KSCrashContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashContext.h; sourceTree = ""; }; 70BF969C7EE75D6BABCC43461AAEF644 /* SDImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoader.h; path = SDWebImage/Core/SDImageLoader.h; sourceTree = ""; }; - 7108B03339E820AA6C483739E8F8F9C3 /* RCTPlatform.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPlatform.mm; sourceTree = ""; }; + 70D235412EFE764BFC9DBBEAD567BB29 /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; 7121DEBABF2BDFF8481B59788B8C759F /* FIRInstanceIDAPNSInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDAPNSInfo.h; path = Firebase/InstanceID/FIRInstanceIDAPNSInfo.h; sourceTree = ""; }; - 712B8F56124AFCCAC1EB277D7DD6C9C8 /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = ""; }; - 7162B9122B699629FFC39E4D5BDADCAC /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = ""; }; - 716A1455A0AB1C6D01F7DD42CCE95CA5 /* RCTVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoPlayerViewController.h; path = ios/Video/RCTVideoPlayerViewController.h; sourceTree = ""; }; - 71C744BC48D090FDA675214EA23FD003 /* RNFlingHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFlingHandler.m; sourceTree = ""; }; - 71E58CFEB0AC5CB428A0D88D7FC89826 /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; - 71E619A867B9B83E3789B54166C285F7 /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; - 71F3CA809072964CCC65C1EF386C65F7 /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; - 71F4B7C09F01C5DE42516579F63E0ABE /* BridgeJSCallInvoker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BridgeJSCallInvoker.cpp; path = jscallinvoker/ReactCommon/BridgeJSCallInvoker.cpp; sourceTree = ""; }; - 723E63AFFF5020146327CCB941345F0D /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = ""; }; - 725F54D63292B18C8769A45EF72588CD /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 714A238B856E4054872E1FD400E56ED0 /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; + 715DE3D61DB2B9F0C8ED94D9195A2359 /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTExceptionsManager.h; path = React/CoreModules/RCTExceptionsManager.h; sourceTree = ""; }; + 717784DDC0972D374703808D43BE935A /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = ""; }; + 717E9E9B93F6F630140F1EA916BF74D5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 71A8D8AD63970F41D631921F678B5C49 /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; + 71BEB9E31A700E806EFB7FEC98C34B4E /* ARTBrush.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTBrush.m; sourceTree = ""; }; + 71D333D6C9815B4D7BDE138207450774 /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; + 72558F571738704549E1838E845D2770 /* libEXLocalAuthentication.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXLocalAuthentication.a; path = libEXLocalAuthentication.a; sourceTree = BUILT_PRODUCTS_DIR; }; 726CEC5D657E14C2D28E2608DB007104 /* SDWebImageError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageError.h; path = SDWebImage/Core/SDWebImageError.h; sourceTree = ""; }; 726D3479A42B94820104FFB82565ADF8 /* color_cache_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = color_cache_utils.h; path = src/utils/color_cache_utils.h; sourceTree = ""; }; - 7272F183AACAC14F1CF2105ECF6297FC /* react-native-keyboard-input.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-keyboard-input.xcconfig"; sourceTree = ""; }; - 7282C62A881942BEDB9DD78FCEFE0BBE /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 7290A8B4E4F31EF8E2A4BB18F88F59D6 /* libwebp-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "libwebp-dummy.m"; sourceTree = ""; }; - 72B29B254D8D74DC776EE9189702D11E /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; - 72C30B866F76C047B4905813640327C6 /* REACallFuncNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACallFuncNode.m; sourceTree = ""; }; + 72B02B27678B51B83704A4BE3DFEF191 /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = CoreModulesPlugins.mm; sourceTree = ""; }; + 72C42A5379F7678BC2480A469AE85D1A /* RNSScreenStackHeaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStackHeaderConfig.m; path = ios/RNSScreenStackHeaderConfig.m; sourceTree = ""; }; + 72C7372FB61DF360A86BD59E40639D4D /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; 72DE4BF3FB9CE0858E90F96FEF8A53AE /* libRNDateTimePicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDateTimePicker.a; path = libRNDateTimePicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; 72E494917AC5EC2582197F07061A28B0 /* libEXPermissions.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXPermissions.a; path = libEXPermissions.a; sourceTree = BUILT_PRODUCTS_DIR; }; 72F2F55C8488AA7450E778BF58AD47EB /* common_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_dec.h; path = src/dec/common_dec.h; sourceTree = ""; }; - 7310E9459A1058540B7F1B3D743A662C /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; - 731F48FF22DC60A71D7B7D2BDD5CC067 /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = ""; }; - 7377EDAD93DD9230D8AE5DCD1AE71EA6 /* RNGestureHandlerRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerRegistry.m; path = ios/RNGestureHandlerRegistry.m; sourceTree = ""; }; - 73D013982DDC79D1EF058C324B1AD36F /* RNDateTimePicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDateTimePicker.xcconfig; sourceTree = ""; }; + 72F3A429601F66AEEBF3B565EEDF1F41 /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; + 73045376DE6AE9AB27D7A891266C41A8 /* RNUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNUserDefaults.m; path = ios/RNUserDefaults.m; sourceTree = ""; }; + 7338C1843FE0B7ED556C5763FD46A84F /* RCTConvert+FFFastImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FFFastImage.m"; path = "ios/FastImage/RCTConvert+FFFastImage.m"; sourceTree = ""; }; + 734CF0DF7D6A8D1307EF38D0E62DFFDC /* Fontisto.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Fontisto.ttf; path = Fonts/Fontisto.ttf; sourceTree = ""; }; + 73A8489BE4513CBADC8D8802AF64A207 /* BSG_KSString.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSString.c; sourceTree = ""; }; 73D1E0BDB42EE2F595BCB0C3E231490F /* upsampling_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_mips_dsp_r2.c; path = src/dsp/upsampling_mips_dsp_r2.c; sourceTree = ""; }; 73DF275591A289869A037B732ACCE445 /* FIRComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponent.m; path = FirebaseCore/Sources/FIRComponent.m; sourceTree = ""; }; - 73EAEFEE2973DE2B608731E9FE3C8A25 /* QBAlbumCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumCell.h; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.h; sourceTree = ""; }; 73F8A95B79671F501F31EA4F1D04AA8B /* libReact-RCTActionSheet.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTActionSheet.a"; path = "libReact-RCTActionSheet.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 74258F81D8E9A10E7FFF59588C4A3450 /* REAPropsNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAPropsNode.h; sourceTree = ""; }; 742DA574AD9989337C7A051B2C2DC52F /* CLSLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSLogging.h; path = iOS/Crashlytics.framework/Headers/CLSLogging.h; sourceTree = ""; }; + 743F5E07CF92C6F606DD48A3BCCA1B27 /* RNFirebaseDatabaseReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabaseReference.m; sourceTree = ""; }; 746D3D964458B43BFFB90666578396AE /* FirebaseCoreDiagnostics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnostics.xcconfig; sourceTree = ""; }; + 747A249486EDA716D7B8D233052E91EE /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = ""; }; + 747C66EBF0E1D41E0EB7F66EA1494C98 /* RNFirebaseDatabase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseDatabase.m; sourceTree = ""; }; 7480B7F4FAB96A496173DE0E7C617B9C /* SDImageCoderHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoderHelper.h; path = SDWebImage/Core/SDImageCoderHelper.h; sourceTree = ""; }; - 74960A6AFF7C5E7BE62D3AD8B288441B /* rn-extensions-share-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-extensions-share-prefix.pch"; sourceTree = ""; }; - 750A887CC9515799F336697AF4FFAEEC /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeModule.mm; sourceTree = ""; }; + 7493D81119BC9FA4036C10337C09BC5A /* REABlockNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABlockNode.h; sourceTree = ""; }; + 74FA0DFB857F49DD1B0057076D9CE528 /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; + 74FD8392A11AE2E8B81DD131A4011952 /* 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; }; 754C1763718FE74C32CF806FF8384D33 /* vp8i_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8i_enc.h; path = src/enc/vp8i_enc.h; sourceTree = ""; }; - 75A730B0265F6D513F27FEB743FAA8A1 /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = ""; }; - 75AD64A166DF3FF036B7EB4B22388CF8 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 75C00F147A90C528C89CF4C55C3B7E47 /* RCTKeyCommandConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTKeyCommandConstants.h; path = ios/KeyCommands/RCTKeyCommandConstants.h; sourceTree = ""; }; - 75C7011613E562C3FA3833702D66B397 /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 7582E14963B13D27AE0CFC384CE026F9 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; + 759973C61B3A8903A686499A76905E4C /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; + 759D90D1019D505AD70BE871F8950D2B /* ReactCommon.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.xcconfig; sourceTree = ""; }; + 75B4456387FD1F49F14C09F38D397A6E /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; + 75DB16D82F7593F2F8F2D87BDDC52B4E /* RNVectorIcons.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNVectorIcons.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 75DB9753B851A6352F359AD77132937B /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 75E365638CA123FC673096D535EC8E84 /* UIResponder+FirstResponder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIResponder+FirstResponder.m"; path = "lib/UIResponder+FirstResponder.m"; sourceTree = ""; }; 75E84073A3FF1C0075C2A143F4BBA591 /* Crashlytics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Crashlytics.xcconfig; sourceTree = ""; }; - 75F81FBE7F9056B29EB03FEAEDB2E39A /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; + 76092B968AAC9C724EC9667F654AC5B4 /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; 760D77A4F668A9C3F29BC76736A73378 /* GULUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULUserDefaults.m; path = GoogleUtilities/UserDefaults/GULUserDefaults.m; sourceTree = ""; }; 7612B1F9763549EA1DC383D43FC8950C /* SDImageAPNGCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAPNGCoder.m; path = SDWebImage/Core/SDImageAPNGCoder.m; sourceTree = ""; }; 76248F9402D4DD786D6A8E7AA04A7A4C /* GULSecureCoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSecureCoding.m; path = GoogleUtilities/Environment/GULSecureCoding.m; sourceTree = ""; }; 762B0734C882B680C9D971AF79E220CA /* huffman_encode_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_encode_utils.c; path = src/utils/huffman_encode_utils.c; sourceTree = ""; }; - 763596D554F9B7C3843E77D1371DBAB0 /* BSG_KSCrashSentry_MachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_MachException.h; sourceTree = ""; }; - 7649CA0397FB5C42BEA02341EA1C199A /* BugsnagNotifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagNotifier.m; sourceTree = ""; }; - 765838AF981D83C8AD2FD83BB0F79731 /* RNFirebaseNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseNotifications.m; sourceTree = ""; }; + 763B918D7D01DFE0779F8B2CEEB1F46A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 7667B53E10D068E0BFA32C6B17ECCEBA /* RNFirebaseLinks.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseLinks.m; sourceTree = ""; }; 76870B32976CD2CF19434FE44E4DAB9E /* SDWebImageOptionsProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOptionsProcessor.m; path = SDWebImage/Core/SDWebImageOptionsProcessor.m; sourceTree = ""; }; - 7692255B5991851F786B5D77763DBE26 /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; + 76A01F927DE5F13405330006480C2E10 /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = ""; }; + 76A2215D06FB7C40AB36F197692FA766 /* RNDocumentPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDocumentPicker.m; path = ios/RNDocumentPicker/RNDocumentPicker.m; sourceTree = ""; }; 76B1D8152D1957AC23B75A79D58FDEB3 /* CLSReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSReport.h; path = iOS/Crashlytics.framework/Headers/CLSReport.h; sourceTree = ""; }; - 76EE11B53ECF038B91DB707CBB618F95 /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; + 76E8F7051C8AE4EB9A276F0FA68D5A5C /* AudioRecorderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AudioRecorderManager.m; path = ios/AudioRecorderManager.m; sourceTree = ""; }; + 76FE63E3F928B76B0B0BAE72B3D43FF7 /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.h; sourceTree = ""; }; 77028BA581AF00AEF7C147D7449E82B9 /* FIRInstanceIDURLQueryItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDURLQueryItem.h; path = Firebase/InstanceID/FIRInstanceIDURLQueryItem.h; sourceTree = ""; }; - 777241DBD36766002052A8E89DE1A923 /* REACallFuncNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACallFuncNode.h; sourceTree = ""; }; - 777877C6DC0158B39117BB5352D176FF /* 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; }; - 777EB941848EB1D684C8CAEC37FBA39C /* BugsnagCollections.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCollections.h; sourceTree = ""; }; - 77C391A3102EC9FFECFDA582C1B03FD4 /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = ""; }; - 77CA10718DB1A0C7E6A87F0F720C0ADD /* RNFirebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebase.h; path = RNFirebase/RNFirebase.h; sourceTree = ""; }; - 77F287F15F75C2EFD978EACE93861BD3 /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; + 77060C09E6D87AD7316709FF3E32F992 /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; + 770C7A2EFBD59228C347732E76C01546 /* RNFirebaseAdMobRewardedVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobRewardedVideo.h; sourceTree = ""; }; + 771101BC66D624FBFA77FBF11A3232C2 /* REAPropsNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAPropsNode.m; sourceTree = ""; }; + 77258C342D4729EE4CF05D804A6056E8 /* RCTVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoManager.h; path = ios/Video/RCTVideoManager.h; sourceTree = ""; }; + 7729EE9D32168E2D7F78339279D55710 /* QBVideoIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIndicatorView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.h; sourceTree = ""; }; + 7789EFA9B0EDD2CF26FC3B1BD82EC15E /* 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; }; + 77B1EBB82F5E7296CDCBF6DECA8539D9 /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; + 77B65A07E70545FED8EB9F3870F539D4 /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = ""; }; 782DC576EA301487BA3AFF6CDF22C7F0 /* enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_msa.c; path = src/dsp/enc_msa.c; sourceTree = ""; }; - 7854E457877965E4AF2BD35C69EF71BC /* RCTCustomKeyboardViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomKeyboardViewController.h; sourceTree = ""; }; - 786146B866CF521A81994E9F50622913 /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; - 788CFE3DEE3D8B745B436F4BFEBA494A /* RNLongPressHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNLongPressHandler.m; sourceTree = ""; }; - 78A12C4301EE6391A53A1577A125DB0B /* FBReactNativeSpec-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBReactNativeSpec-prefix.pch"; sourceTree = ""; }; - 78A3BCA8761ECE399D0A651FD7544CDD /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; + 78370509C55CD0F883BD4BEF2A6D6273 /* FFFastImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageViewManager.m; path = ios/FastImage/FFFastImageViewManager.m; sourceTree = ""; }; + 783B518DD2B125FC0E464EEDAA73E812 /* EXRemoteNotificationPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXRemoteNotificationPermissionRequester.h; sourceTree = ""; }; + 78444D9D4D9D3C0917B8998976E40C70 /* RCTBlobCollector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBlobCollector.h; sourceTree = ""; }; + 78A184457F8555737983B26A11323CC5 /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = ""; }; 78A5E4508694C25663685CE163B7A18D /* GDTCORReachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORReachability.h; sourceTree = ""; }; + 78AE025AF94C2093809106A016A35345 /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; + 78B21926C799D90FF38F3C01B49421DC /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = ""; }; 78D16CA96B3633E9D5C63D2D8DEB3AFD /* GDTCORRegistrar_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORRegistrar_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORRegistrar_Private.h; sourceTree = ""; }; + 78DCB97C2C0B300A6C7FAEE9170F900E /* BugsnagCollections.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCollections.h; sourceTree = ""; }; 78E05B5B4544D8C74092E8B0982CF77B /* dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec.c; path = src/dsp/dec.c; sourceTree = ""; }; - 79290D430AEE27ED0F3A2ADD6900A403 /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; - 79384E3DF198EE6F9073B43F79D0E5BE /* ReactCommon-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactCommon-dummy.m"; sourceTree = ""; }; - 796D6FF12732B49AFA11231E67982356 /* react-native-document-picker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-document-picker-dummy.m"; sourceTree = ""; }; - 797EEC8DEE67855B815F6FA3ADF0A50F /* ObservingInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservingInputAccessoryView.h; path = lib/ObservingInputAccessoryView.h; sourceTree = ""; }; - 798300D04979555E318EDE2C3006F241 /* FBReactNativeSpec.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.xcconfig; sourceTree = ""; }; - 79D38FA4D831B0DF6C21AE95B915D46E /* RCTDevMenu.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevMenu.m; sourceTree = ""; }; - 7A06B4F1CF0684015B0878877963A935 /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; - 7A3D0D372E6BB727932ACD5CC2F2F0A2 /* RNNotificationCenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenter.m; path = RNNotifications/RNNotificationCenter.m; sourceTree = ""; }; - 7A3D1F7342DC265DEEA84026C599DFFD /* RNUserDefaults-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNUserDefaults-dummy.m"; sourceTree = ""; }; - 7A545AFD8FE1AABA0B0D87E164A89FAD /* RNFirebaseFirestoreCollectionReference.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestoreCollectionReference.m; sourceTree = ""; }; + 797BF8D47C6BF3255EE647CCA8E6D2EA /* EXLocalAuthentication-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXLocalAuthentication-prefix.pch"; sourceTree = ""; }; + 79C1357F2591BBF578F21D97ECF2B59E /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; + 79EF13B1EBA69CD93AC259653E3BFF3E /* BSG_KSCrash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrash.m; sourceTree = ""; }; + 7A4F18BCCD035A3DB966FB44364322BC /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = ""; }; 7AB2ABB19DF260BF726A2A7DE50BB0C7 /* enc_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_neon.c; path = src/dsp/enc_neon.c; sourceTree = ""; }; + 7AC949A6CDC9FAD791701093030E2C19 /* ARTGroupManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTGroupManager.h; sourceTree = ""; }; 7AE11FC733D32808154EE0C7975D70AD /* SDImageCacheDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheDefine.m; path = SDWebImage/Core/SDImageCacheDefine.m; sourceTree = ""; }; - 7B0A720A2FDE5662184F8E086778982D /* BSGConnectivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGConnectivity.m; sourceTree = ""; }; - 7B2D2E87A0821787B0CB305C2F199B2B /* react-native-keyboard-tracking-view.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-keyboard-tracking-view.xcconfig"; sourceTree = ""; }; - 7B476702B19503C1FDA97A6B38A5288F /* RNCAssetsLibraryRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAssetsLibraryRequestHandler.h; path = ios/RNCAssetsLibraryRequestHandler.h; sourceTree = ""; }; - 7B4C5BCB61E597C069C849723B7F1F56 /* RNPushKitEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventHandler.h; path = RNNotifications/RNPushKitEventHandler.h; sourceTree = ""; }; + 7AF6A5BBC472C7054D73C96893FD931C /* RNEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNEventEmitter.h; path = RNNotifications/RNEventEmitter.h; sourceTree = ""; }; + 7B1E97A9F2C1BC67CEFC4ED914700AD2 /* react-native-video-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-video-dummy.m"; sourceTree = ""; }; + 7B39C5E381ACE6F64E9BB458AE03BD63 /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; + 7B4AF1BC881ABF078126D2DE6D9EDC0E /* Yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Yoga-dummy.m"; sourceTree = ""; }; + 7B4CE24F6E1081A73953291129C65004 /* RNFirebaseNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseNotifications.m; sourceTree = ""; }; 7B75AFFDAD90901B97B9F59583DB4E96 /* SDWebImageDownloaderResponseModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderResponseModifier.h; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.h; sourceTree = ""; }; - 7B78F20857A4C7463E80D357604DE7B4 /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = ""; }; - 7B84819246C7035E2FA543C2C1FF2D87 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 7B9A20A94248F8D409B2B84F98A5721C /* RNRootView.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNRootView.xcconfig; sourceTree = ""; }; - 7B9BAFFB20E75D4AC984487B5BB9A004 /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = ""; }; + 7BC202C24CE9064F5A6E70A82A6B382C /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = ""; }; 7BC2EF7B3BFD238AB12617D31274CEF8 /* FIRInstanceIDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDStore.m; path = Firebase/InstanceID/FIRInstanceIDStore.m; sourceTree = ""; }; - 7BE324263A2118CDEF9F5504CFC24A3E /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = ""; }; - 7BE7891622EB09188F2F7417F108A12E /* RNFastImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFastImage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 7BF79865016F2E044F8B5FC7CB23BE1C /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; - 7C52FC60F3FA4DB1E06A485159C8226F /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; + 7BE0009AD5A62049E3DBCC72BB4C2C2E /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = experiments.h; sourceTree = ""; }; + 7BEC8F33025EEFC8AD46D997458C4839 /* RNFetchBlobReqBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobReqBuilder.h; path = ios/RNFetchBlobReqBuilder.h; sourceTree = ""; }; + 7BF2B8515953DCD57957BA8EFD20ACFF /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; + 7C07F9EEC2DBABECAACCAC8A87228BBF /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; 7C78B03E18C3C58965E80B1E11C3CAC7 /* RSKInternalUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKInternalUtility.m; path = RSKImageCropper/RSKInternalUtility.m; sourceTree = ""; }; - 7C87A67899A617619D2A1D2147AADDB0 /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = ios/QBImagePicker/QBImagePicker/ja.lproj; sourceTree = ""; }; - 7C9259CE14FDF2FF3EDE76809513EB2A /* FFFastImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageView.m; path = ios/FastImage/FFFastImageView.m; sourceTree = ""; }; - 7CC49CCB50E8D515DFCF0030F894F241 /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.h; sourceTree = ""; }; - 7CFC9E19A8DF78DB1D83D66B5CFB2A5B /* RNDateTimePicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDateTimePicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 7CA72CCD11307A621D3F237636E253F4 /* Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Private.h; sourceTree = ""; }; + 7CB8C0DB6EEE6CC67BAC49EE564D190E /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; + 7CD14069E0DC340CAEA66EBACA998E48 /* EXLocalAuthentication-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXLocalAuthentication-dummy.m"; sourceTree = ""; }; + 7CDA57B7A037A04CAF162CCF8783CB39 /* REAAlwaysNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAlwaysNode.h; sourceTree = ""; }; + 7D08DF9539848E8CAC7915FCD30C16E7 /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIDynamic.cpp; sourceTree = ""; }; 7D0B134B634581BF0AB4FFB905334766 /* FirebaseInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstallations.h; path = FirebaseInstallations/Source/Library/Public/FirebaseInstallations.h; sourceTree = ""; }; - 7D1FE3F14A74BC1C3E1C6D3007D6703E /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; - 7DA09F9FC1A6B126F51A2733487247C5 /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = ""; }; + 7D10630D29AFCDED6505AC01F612060B /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; + 7D7213217E40522F94758DC70EE7305B /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = ""; }; + 7D9CF80F3F009E6064C67C573894F6D9 /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; 7DA120FFE328161A90702286BAB6CDA6 /* FIRInstanceIDTokenOperation+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstanceIDTokenOperation+Private.h"; path = "Firebase/InstanceID/FIRInstanceIDTokenOperation+Private.h"; sourceTree = ""; }; - 7DADBC9D25ADD62028CAF81E4BFF3889 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 7DF3EC3740C96B26BCF2805EA83CA564 /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = CoreModulesPlugins.mm; sourceTree = ""; }; + 7DA61CD0F80A05EAE58026DA7C88C082 /* BSG_KSCrashReport.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashReport.c; sourceTree = ""; }; + 7DAA2E69EEF67212019EA6FF8CD3E96E /* BSG_KSCrashState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashState.h; sourceTree = ""; }; + 7DBF90403D226FD4BA9D802C0772DC56 /* RNFetchBlob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFetchBlob.m; sourceTree = ""; }; + 7DDF0744665656F4901AF9C85D660756 /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; + 7E02B942ACBEE1C0746FCBD61B1B0D35 /* RNJitsiMeetView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetView.h; path = ios/RNJitsiMeetView.h; sourceTree = ""; }; + 7E0D984C4268C8982372D81B491862FC /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; + 7E16A5B4856F88F15343D19693C196B5 /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTMessageThread.mm; sourceTree = ""; }; 7E1CF3BEFF840D7071D158D044A4E745 /* lossless_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_sse2.c; path = src/dsp/lossless_sse2.c; sourceTree = ""; }; - 7E2A53CB11727F0EB1B2BBB80114F6A7 /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; + 7E31A6B449E57AABC9237A24B247CB6A /* ReactNativeART.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeART.xcconfig; sourceTree = ""; }; + 7E50CD8A90BE20BC826BEC95C64F9915 /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; + 7E7037E56436AE0964F96889FED26B9D /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; 7E8C6A830011E9B4493E7F2FC363A651 /* tree_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tree_dec.c; path = src/dec/tree_dec.c; sourceTree = ""; }; + 7E9AE99C7865CC26536BC2DD0CB0854B /* RCTPlatform.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPlatform.mm; sourceTree = ""; }; 7EA24205E9A7B87800BCFEEC108BFF33 /* GoogleUtilities-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleUtilities-dummy.m"; sourceTree = ""; }; 7EAF77B51624F49BDB16C3865BA59750 /* SDImageIOAnimatedCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoderInternal.h; path = SDWebImage/Private/SDImageIOAnimatedCoderInternal.h; sourceTree = ""; }; - 7EB33457377218882E985272151211DA /* react-native-keyboard-input.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-keyboard-input.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 7F0F2422DAB94714E0307472B654BBFF /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; - 7F24CA04296687DC525C19E3508E7361 /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; - 7F3ADF9C76F2B35E241D0673AC307509 /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; - 7F44A2F55853EE6E65FA192264929F10 /* RCTFileReaderModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFileReaderModule.m; sourceTree = ""; }; - 7F54A517880631FC3AB3FE31EDD25CF2 /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTHTTPRequestHandler.mm; sourceTree = ""; }; + 7EE23C3E92A145C8608B385EAD04D34D /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; + 7F031A2F61456BB1EB892DA1FED39B97 /* RCTConvertHelpers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTConvertHelpers.mm; sourceTree = ""; }; + 7F2DF0505AC6DD488E90BAA79F1E6DB9 /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; 7F5EDA23D6D2D1ACE2F5DFFCB0B53C29 /* FBLPromise+Race.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Race.h"; path = "Sources/FBLPromises/include/FBLPromise+Race.h"; sourceTree = ""; }; - 7F5F07B6674B84204E253987EF689317 /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "ios/QBImagePicker/QBImagePicker/zh-Hans.lproj"; sourceTree = ""; }; - 7F61848737EFDD7070BDC3E278979E0B /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; - 7F6C6C7719EA9A81F7D8C377F9661426 /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; - 7F75A01222D62B6C5AEFF81CD3B869A3 /* react-native-keyboard-input-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-keyboard-input-prefix.pch"; sourceTree = ""; }; - 7F7FAF4767F2073315B68AA2ACF9D43F /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; - 7FB101EFBA0B5E1ECE4294538126A463 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 7FB7CD15C80E500BD73C67D1F79C3F61 /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = ""; }; - 7FC3B607140F53423F46D748AB0779C7 /* BugsnagFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagFileStore.h; sourceTree = ""; }; + 7F64B8AA477693BD691861C5CB28A033 /* RCTRedBox.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBox.m; sourceTree = ""; }; + 7FA6021FC51B75C6CA372416846B2B09 /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; + 7FD4FA37C4ABD4B22B9675BFD87748D1 /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; 7FE52EC86FAD6477499E13343ED2C1DF /* FIRAnalyticsConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAnalyticsConfiguration.m; path = FirebaseCore/Sources/FIRAnalyticsConfiguration.m; sourceTree = ""; }; 7FE80A0E5A04BEDCC2FE998068C2E8A5 /* GULLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLogger.h; path = GoogleUtilities/Logger/Private/GULLogger.h; sourceTree = ""; }; - 8008B5C7C293AD72B6A749C3E088EA53 /* Color+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Color+Interpolation.h"; sourceTree = ""; }; + 80126C51BED4E3DCB4CCD333C38DA46B /* FBReactNativeSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBReactNativeSpec.h; path = FBReactNativeSpec/FBReactNativeSpec.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; }; - 803AE5834C4E91DED51B2FC9ADFF2954 /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; 8047865EF52BDB8F74E450253525FD98 /* SDImageIOAnimatedCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOAnimatedCoder.m; path = SDWebImage/Core/SDImageIOAnimatedCoder.m; sourceTree = ""; }; - 8058A6BEC15AFD2FDA6968BF3CB977EA /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; + 8071F3140C83C329B87D89F7F76D7B0A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 8074129DF318155B29544548E1CAF4A3 /* libreact-native-jitsi-meet.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-jitsi-meet.a"; path = "libreact-native-jitsi-meet.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 80860F4CE5B3CFC4012350F2586BF780 /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = ""; }; - 80A2424271BAC935A2EA038E05CD2945 /* RCTBlobCollector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBlobCollector.h; sourceTree = ""; }; + 807E1456005CC3EAD5A089FFF018EF8F /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = ""; }; + 8089F7AB55E384041ACDDF19E78F1B60 /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; + 8097A444830D3C6CCE125A1719EBE321 /* FFFastImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageSource.h; path = ios/FastImage/FFFastImageSource.h; sourceTree = ""; }; + 809C97FBE2B7346EB069300DC64893C5 /* RNFetchBlobNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobNetwork.m; path = ios/RNFetchBlobNetwork.m; sourceTree = ""; }; 80A51B61FECFED8D1A0D95AAD32A2938 /* libEXHaptics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXHaptics.a; path = libEXHaptics.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 80D4C734F426CCCB13FDB600CFACBFC7 /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; - 80E7E92918D0DE9CC8246E1855B21554 /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; + 80D020E86A3DB547A971CA1B20F7E6C7 /* react-native-appearance.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-appearance.xcconfig"; sourceTree = ""; }; + 81143DA51A172C18B1CD38A0FD36407D /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; + 8120E4F98D1D00F4339976D8EDC1057F /* EXVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoPlayerViewController.m; sourceTree = ""; }; + 812B0BB7777DCECA0F21F0A430AE6208 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 812DCB2F8F49903836E6EBBDD65655F2 /* FBLPromise+Timeout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Timeout.h"; path = "Sources/FBLPromises/include/FBLPromise+Timeout.h"; sourceTree = ""; }; - 8134670AC6F55EBB0F4E64BC6FF4CF72 /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; 8174EE8838427BE46A0885CA8539CA9D /* GDTCORUploadPackage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadPackage.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORUploadPackage.h; sourceTree = ""; }; - 819452E386D6F7260FFE35AB5A6519F0 /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = ""; }; + 81919368713931AEDC52362FE4CFCE27 /* react-native-keyboard-input-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-keyboard-input-prefix.pch"; sourceTree = ""; }; + 81921FD5D77C8DB55740FF060603D686 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; + 81AF7C72C8D1321A79EFD6250A8453EB /* QBVideoIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIndicatorView.m; path = ios/QBImagePicker/QBImagePicker/QBVideoIndicatorView.m; sourceTree = ""; }; 81B9283887252C3A5BFACBC794BD9596 /* FIRInstallationsVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsVersion.m; path = FirebaseInstallations/Source/Library/FIRInstallationsVersion.m; sourceTree = ""; }; 81CE6C1BD2CD84627ACB2375ECEDDBF0 /* FBLPromise+Recover.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Recover.h"; path = "Sources/FBLPromises/include/FBLPromise+Recover.h"; sourceTree = ""; }; + 81D1EF2629F8267469FF9635CA325509 /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; 81DA341D791704280F8256A98FF27460 /* FIRInstanceIDTokenStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenStore.h; path = Firebase/InstanceID/FIRInstanceIDTokenStore.h; sourceTree = ""; }; - 8200216619F2108FD97AC1FF61DBE564 /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; - 8246F155AFFCEEB02887B1984FAA718E /* rn-extensions-share.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.xcconfig"; sourceTree = ""; }; - 8281E77D7E53A625F1869EB290DB199C /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; + 81EE0039A619694FF3E16C06F28D8054 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; + 82451E45D911AAD9D3D2D625AD21505B /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; + 82675BE62C3ACFEE49CA5D268C891DB4 /* RNFirebaseFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFunctions.h; sourceTree = ""; }; 8282D52E552AB2125F97A62608C8C38B /* CLSAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSAttributes.h; path = iOS/Crashlytics.framework/Headers/CLSAttributes.h; sourceTree = ""; }; + 82B7FDA33841430FAECFEB78091A9B83 /* BugsnagSessionFileStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionFileStore.m; sourceTree = ""; }; 82BA2E6A5BD7AF8E90A46BA46468DB13 /* Pods-RocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-RocketChatRN-acknowledgements.plist"; sourceTree = ""; }; + 82C2CC4DA2D0A987F666774AAF991E7C /* REAParamNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAParamNode.h; sourceTree = ""; }; 82C307D1CC81EE4425E3DE4DFA23E2F3 /* yuv.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv.c; path = src/dsp/yuv.c; sourceTree = ""; }; 82C5CB61A36D2F0DDF60097EB08DBD66 /* SDImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoder.h; path = SDWebImage/Core/SDImageCoder.h; sourceTree = ""; }; - 82EE162005AC53C9C031EE256F08603A /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist"; sourceTree = ""; }; + 82D163B62D58A7DAAC4F67FE5DB44B93 /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = ""; }; + 82DE597588FF763411D2654522BE7936 /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPackagerConnection.mm; sourceTree = ""; }; 82F6DE05F32E14B763473B91688324E1 /* SDImageHEICCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageHEICCoder.m; path = SDWebImage/Core/SDImageHEICCoder.m; sourceTree = ""; }; - 830855003F2BC474FB1CEAB2DF280F62 /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; - 835BAF5E3AA3F39487E371EAF0E57C60 /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; - 835E4B78EE2FB90F2F0D493B4AE7BF68 /* RNRootView.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNRootView.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 8378085AD74EAA67AB32C6A675D5FA25 /* react-native-notifications-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-notifications-dummy.m"; sourceTree = ""; }; - 83882F5B7809A24B561A246EDBFD3F52 /* RCTI18nManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nManager.m; sourceTree = ""; }; - 839A00AACC59C72809D6413C1673766E /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = ""; }; - 83CF519B4F2DA4AF6FC5D3B91D25B4A7 /* 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; }; + 82F7F16CE0883730CD67D3C8EAE7BB61 /* RNFirebasePerformance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebasePerformance.m; sourceTree = ""; }; + 830091E9F5DA8AA7DE3E4082877C79B2 /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; + 832862A31898A88E781D6B4F7FECCF18 /* RNPushKitEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventListener.m; path = RNNotifications/RNPushKitEventListener.m; sourceTree = ""; }; + 8335606D26A6EE76EF0923DFA2748421 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 83448ADF44CF1911CCE4D8AAB2164880 /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFollyConvert.mm; sourceTree = ""; }; + 8347D154BA5BF61C554572F3EA4E1F5F /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; + 834EB2958566569C54BB3BDFDCF112CD /* RCTImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageView.m; sourceTree = ""; }; + 83669ADFC2BA035A11A398BCCDFB4819 /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; + 83801A2B1087F85FCBCEE0AAD6F633BA /* RNGestureHandlerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerManager.h; path = ios/RNGestureHandlerManager.h; sourceTree = ""; }; + 83A89F0F53AF583C4DDF0EA48B180780 /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; + 83B8DD6EDF80109F4E5C34CA5722D5F2 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 83DE6C3F3438F8E994848E8EFA9A1D28 /* BSG_KSArchSpecific.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSArchSpecific.h; sourceTree = ""; }; + 83E049A998106BC1D48E224B840B4E17 /* react-native-notifications-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-notifications-dummy.m"; sourceTree = ""; }; + 83E5C868AF0D7E96D4BD8511C1A6D078 /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = ""; }; + 83EE8080CE4DB87300106A0DD3EEFEA0 /* RNReanimated.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNReanimated.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 83FA84340E3EE860FF6AE948F657555C /* EXAudioSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioSessionManager.h; path = EXAV/EXAudioSessionManager.h; sourceTree = ""; }; + 840D870AFD9819EB4C229B9AA8AD9807 /* REANodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REANodesManager.h; path = ios/REANodesManager.h; sourceTree = ""; }; 842C1C29367F774BD441F53EB6BD4437 /* diy-fp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "diy-fp.cc"; path = "double-conversion/diy-fp.cc"; sourceTree = ""; }; - 846620E44D21F4B9A266E9D5CD9861EB /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 84E70303C82DADA2DA050C280492E26F /* RNFirebaseFirestore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestore.m; sourceTree = ""; }; + 846B0207BB73770B89FFDAC9557E3E7A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 8480EABCD5953D075B72DDA610CCB1C3 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 8480EE856E141386167B4E150CB46136 /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 84D49A7A06647CABE0B3ED5B1854533F /* RCTFileRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFileRequestHandler.m; sourceTree = ""; }; 84EC518D9D034614AA1F401DB6FF9D92 /* UIImage+WebP.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+WebP.m"; path = "SDWebImageWebPCoder/Classes/UIImage+WebP.m"; sourceTree = ""; }; - 84ED2683F6DA3A2351D5771E9A1DCB47 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; - 8504C4E59129798303C42087774AE39D /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = ""; }; - 850DC549E6A0EDF11179C96C39F7B3B6 /* REATransitionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionManager.h; sourceTree = ""; }; + 852065F2CC1E88EB2D6A90A39EFBFCEE /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 8520D971696FEBF0477BBD6446C4D492 /* RNFirebaseFirestoreDocumentReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreDocumentReference.h; sourceTree = ""; }; + 8525930F3F8CD3EBD6DA4389DD5C0EF7 /* QBSlomoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBSlomoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.m; sourceTree = ""; }; + 85262D71DBAB951692FBC6B28F927FF6 /* REABezierNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REABezierNode.h; sourceTree = ""; }; 853B2681E8D6B8DC9F55CF27A6E8090C /* GULHeartbeatDateStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULHeartbeatDateStorage.m; path = GoogleUtilities/Environment/GULHeartbeatDateStorage.m; sourceTree = ""; }; - 854137F5C0ABC4A4846F9700635C0DFF /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTExceptionsManager.mm; sourceTree = ""; }; - 8546F819E0C95CF881DADD48DF3FEBA9 /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = ""; }; + 8564C07F57E37E38D43687431A38E465 /* 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; }; 856B5CD56F194FAD26EA91620B66D614 /* libGoogleDataTransport.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleDataTransport.a; path = libGoogleDataTransport.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 857BD78B074C625BC77FD4BDC49254F1 /* RNGestureHandlerEvents.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerEvents.m; path = ios/RNGestureHandlerEvents.m; sourceTree = ""; }; - 857E762FD5E4040F49FB20F21D656487 /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; - 85831CDFF1F97D05F42E20822080C13D /* REANode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REANode.m; sourceTree = ""; }; + 856E1B287658CC783C39D96BB611437E /* BSG_KSCrashSentry_NSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_NSException.h; sourceTree = ""; }; 85852013697E914BA35F277826FB9CEE /* SDWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWeakProxy.h; path = SDWebImage/Private/SDWeakProxy.h; sourceTree = ""; }; 858AFA83985937825473045CF6808B15 /* librn-extensions-share.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "librn-extensions-share.a"; path = "librn-extensions-share.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 85ACC6FC263C769CD048E0E6F8D3BA1B /* BugsnagKSCrashSysInfoParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKSCrashSysInfoParser.h; sourceTree = ""; }; - 85E74382E16E9ABBABA8D056F3A0E03A /* UMCameraInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.xcconfig; sourceTree = ""; }; 85F22489B98808C5DA103C7B579C00A3 /* SDImageAssetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAssetManager.m; path = SDWebImage/Private/SDImageAssetManager.m; sourceTree = ""; }; - 860C87FEF5C62CB1C641767D3D32105A /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; - 864E531677D5FDC8C55FAAFFFB25F5A6 /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; - 8659CD9676701F05C5E73AD43A3F580C /* BSGOutOfMemoryWatchdog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGOutOfMemoryWatchdog.h; sourceTree = ""; }; + 85FF47ECA5D929CEE09263D7E7DBA3B3 /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; + 863DB1AE51C0BA4A1D3DF938568E6C9C /* ARTContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTContainer.h; path = ios/ARTContainer.h; sourceTree = ""; }; + 8655DCC2849051DFAD85B0C211E8A423 /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 865875386FB2559918C6689786CF4307 /* BugsnagConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagConfiguration.m; sourceTree = ""; }; 86670E276CC761C5AD9108582C55EDC3 /* FBLPromise+Do.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Do.m"; path = "Sources/FBLPromises/FBLPromise+Do.m"; sourceTree = ""; }; - 866ADD8883AD84B5DB130DEA1F2DAADE /* RNFirebaseInstanceId.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseInstanceId.m; sourceTree = ""; }; - 8699EEB9603351EF2A61B531B0CA9064 /* REAAllTransitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAllTransitions.h; sourceTree = ""; }; - 86A314064C1A5221385BD439D2F48CDE /* 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; }; - 86B5F738702AFE3D8F90BAD8BFD61770 /* RCTConvert+FFFastImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+FFFastImage.m"; path = "ios/FastImage/RCTConvert+FFFastImage.m"; sourceTree = ""; }; - 86D53305FF3FD3D6376F9DD250DC82EA /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleUtils.h; path = turbomodule/core/TurboModuleUtils.h; sourceTree = ""; }; + 86990969EC135D10A5E2D91C04647541 /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = ""; }; + 86CD56D84B97BE4DB81C5DBAC8C0B8BB /* 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; }; + 86F3BA956CA2FFF9CD02935EAB9D2D39 /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = ""; }; + 86F87738549F13FD7A93B2D9A9E7AE3E /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; + 871606E35697C7A214F174393C32C5A3 /* REATransitionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionManager.h; sourceTree = ""; }; + 87250954950E13682D9F5CD7F3A6BA91 /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; 872F0037F0BE0480407ABDF7F96FBAF6 /* vp8l_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_enc.c; path = src/enc/vp8l_enc.c; sourceTree = ""; }; - 876BB29C527125661AD20D22BE844A7D /* UMModuleRegistryHolderReactModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryHolderReactModule.m; sourceTree = ""; }; + 87362BE98732F68528D90304A5C4E274 /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = ""; }; 877F0D1D9A0A956008B6F07FD23EC8B1 /* SDImageCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoder.m; path = SDWebImage/Core/SDImageCoder.m; sourceTree = ""; }; - 87D65F715B53D85F2BF5E4AE697B6965 /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspector.mm; sourceTree = ""; }; - 87DED0944EDC6F15AE77CC2854EE3793 /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = ""; }; - 88086D10AEE8A22D3132E28EDB996BA3 /* UMAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppLoaderProvider.h; path = UMAppLoader/UMAppLoaderProvider.h; sourceTree = ""; }; - 8815C2E2CAF5A0DBFA8EB61D53624651 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 878DA4DA1965E991360A0B90C6221A8F /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; + 87CC336CAC5653A542412393A4F8F4AB /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 87D2BC77CB55F4F29196EF2403D8C31A /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; + 87DB8BAA7E0AA6309FC82A17A1670CF0 /* RCTConvert+RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+RNNotifications.m"; path = "RNNotifications/RCTConvert+RNNotifications.m"; sourceTree = ""; }; + 87E3B4E6F8DFCC3B1564EE5A6BC8A35E /* ARTBrush.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTBrush.h; sourceTree = ""; }; + 87F1FB06E4034624ADF89C7264155A30 /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; 8816AC006C3D22F054F7BAB4EA2511ED /* alpha_processing.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing.c; path = src/dsp/alpha_processing.c; sourceTree = ""; }; 8825B0D3568A19F57CDF00412E9B2DD6 /* SDWebImageWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageWebPCoder.h; path = SDWebImageWebPCoder/Module/SDWebImageWebPCoder.h; sourceTree = ""; }; - 883811ECA1A34A96FA9F3D77005A7527 /* BSG_KSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSLogger.h; sourceTree = ""; }; - 88CAABA969389C2E6347DEA781571EE7 /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = ""; }; - 88E392C5C33B8AB637900B7333FAE65E /* react-native-notifications-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-notifications-prefix.pch"; sourceTree = ""; }; + 885AA0A3C1FC7159967E28C438FE0FB7 /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; + 88648F732932432F6DAC9EBED580C353 /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; + 88DF8989F874081F1E477ACCBD40F34C /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; 88FB1508A1C9E9DF1C4FCF0644BFB25D /* SDFileAttributeHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDFileAttributeHelper.m; path = SDWebImage/Private/SDFileAttributeHelper.m; sourceTree = ""; }; - 890E89C000ECD7E2BA73CA6DA84913D5 /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyboardObserver.h; sourceTree = ""; }; 893353C22879F217358868739D8C89E9 /* rescaler_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips_dsp_r2.c; path = src/dsp/rescaler_mips_dsp_r2.c; sourceTree = ""; }; - 893BE71D8F29B67C196B9A779D9B622E /* BugsnagApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagApiClient.h; sourceTree = ""; }; + 894F1ED2B6368487AF330CAA982A116A /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; + 89744B170298F75C90CAC39E6808A498 /* ObservingInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObservingInputAccessoryView.h; path = lib/ObservingInputAccessoryView.h; sourceTree = ""; }; 8998273719FDD789E6F9C7541AFD0B33 /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNVectorIcons.a; path = libRNVectorIcons.a; sourceTree = BUILT_PRODUCTS_DIR; }; 899A689BA65BA61151C1DDFB19F5BE93 /* GULNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetwork.h; path = GoogleUtilities/Network/Private/GULNetwork.h; sourceTree = ""; }; - 89AB92D65AAB3D9E4D017CFE86A2A83E /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = ""; }; - 89BDBB64C1BC5D1BB4F805ADB841AA0B /* EXImageLoader.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXImageLoader.xcconfig; sourceTree = ""; }; 89C6619CB1C1D1AE75ECCE9C2E6A35A5 /* cost_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cost_enc.h; path = src/enc/cost_enc.h; sourceTree = ""; }; - 8A1C07A4A6A34D1CD9D4BB5D2516C977 /* IOS7Polyfill.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOS7Polyfill.h; path = ios/IOS7Polyfill.h; sourceTree = ""; }; - 8A28FC5B69E97D14575CA0877222A4C5 /* BSG_KSJSONCodecObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodecObjC.h; sourceTree = ""; }; - 8A3C997419F8B8A9EA1C5D8183131622 /* React-CoreModules-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-CoreModules-prefix.pch"; sourceTree = ""; }; + 89D910E4F42FE041573767A15964B6A7 /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = ""; }; + 89FCAA5092C605B11E0AE9CF0E37A25F /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; + 8A2DBC6972F10CB3F42935FAA3D7FEA6 /* RCTNetworkTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNetworkTask.m; sourceTree = ""; }; 8A4DD3054BCAAC1DD111B122592F96DD /* Firebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Firebase.xcconfig; sourceTree = ""; }; - 8A91EB71EA653428485E5466E2CBB8D2 /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; - 8ADA8B4CB606289EF9C789BAEAEEDD3F /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; - 8B00F1FE3D135C9D9CB860A71ADD16CE /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = ""; }; - 8B482BF8DF2E75DF9287FB4F450FA8A0 /* RNNotificationCenterListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterListener.h; path = RNNotifications/RNNotificationCenterListener.h; sourceTree = ""; }; + 8A532F8903DFA43FF342F2EB8E9AF675 /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = ""; }; + 8A8190566899CF9ABE25C063278E2F77 /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = ""; }; + 8AC291AC8A6255C6CA2555A29AD5470A /* REATransitionAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionAnimation.h; sourceTree = ""; }; + 8AEEFA27BA1AF4F108E5CAD8B09C5DD8 /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = ""; }; + 8AFC3FDE725E9FAA7A4B64F82BF4B32A /* BSG_KSCrashDoctor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashDoctor.m; sourceTree = ""; }; + 8B139C6C451896FB33A71909257B218F /* RCTVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoPlayerViewController.h; path = ios/Video/RCTVideoPlayerViewController.h; sourceTree = ""; }; 8B4C2C687BA9A4F482BCC6E3550747BE /* NSImage+Compatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+Compatibility.h"; path = "SDWebImage/Core/NSImage+Compatibility.h"; sourceTree = ""; }; - 8B661C235782F588A607E45D40B27789 /* ARTPattern.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTPattern.h; sourceTree = ""; }; - 8C1B775426912FC023387FF831D96595 /* react-native-orientation-locker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.xcconfig"; sourceTree = ""; }; - 8C217182A631F4DEB8799FFDF7CFBBA2 /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; - 8C27643E34012E7108D62962B6B6918D /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; + 8B4EE64ED82995E97CA320A712E8CBDE /* RNFirebaseEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseEvents.h; path = RNFirebase/RNFirebaseEvents.h; sourceTree = ""; }; + 8BAF5B2F52394878A35B02A802913F95 /* NSValue+Interpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSValue+Interpolation.h"; sourceTree = ""; }; + 8BD2A23277F30FEB5D8CC12D42BFE63D /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; + 8C1C346A405E291620CD1E83A90BDC2E /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; + 8C1F97DF376D9798299710820D5A07C9 /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = ""; }; 8C3E2A6E6F93E60E397F6C0BBA710BF5 /* libreact-native-cameraroll.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-cameraroll.a"; path = "libreact-native-cameraroll.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 8C40A67EE1D77C8674B2974823212EA0 /* GDTCORReachability.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORReachability.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORReachability.m; sourceTree = ""; }; + 8C48D6A870D541C9C33E4D3391F7940F /* BSG_KSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSLogger.m; sourceTree = ""; }; 8C64106BB2DF7529C974379A31A7B6EE /* dec_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips_dsp_r2.c; path = src/dsp/dec_mips_dsp_r2.c; sourceTree = ""; }; - 8C914BBC97E292E5EFBEA4F4414C3500 /* RNFirebaseAuth.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAuth.m; sourceTree = ""; }; - 8C96A05BA36C9D48DA39C7BD583F2C35 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; - 8CB4C02603D2011C4D066FD3AECECFDE /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = ""; }; - 8CBCB1389DF7CF22F69B32B10EE16F0E /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; + 8C775F0A3839BF88C0D89C889B59B26C /* RNPushKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKit.m; path = RNNotifications/RNPushKit.m; sourceTree = ""; }; 8CC9178C366942FD6FF6A115604EAD58 /* libFirebaseCoreDiagnostics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCoreDiagnostics.a; path = libFirebaseCoreDiagnostics.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8CCB10093C9FD906C746FB03D4746CD9 /* RNRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNRotationHandler.h; sourceTree = ""; }; - 8D04867868C5AB54EB9E1751823E27A9 /* ios_time.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = ios_time.png; path = docs/images/ios_time.png; sourceTree = ""; }; + 8CE510F89D067BBF690E179DBFE1E75D /* BSG_KSDynamicLinker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSDynamicLinker.h; sourceTree = ""; }; 8D34461A66E3259AB0C1167A107511FE /* enc_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_sse2.c; path = src/dsp/enc_sse2.c; sourceTree = ""; }; 8D7029D8FB8076E86500FDD8484FDDD4 /* webp_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = webp_dec.c; path = src/dec/webp_dec.c; sourceTree = ""; }; - 8D8C0E9C7C4ED804863EB5057FE496D1 /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; - 8D9A79D228495E5315B0BA3E59908CBE /* REAPropsNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAPropsNode.h; sourceTree = ""; }; - 8DC9D1A3E4C33F5500BE62E412F6184B /* RNRotationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNRotationHandler.m; sourceTree = ""; }; - 8DE57EFED7D3E7D955E4CC9B7B9F335F /* REAEventNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventNode.m; sourceTree = ""; }; - 8DED22BF939C557A5B9E970225EDE32D /* EXImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXImageLoader.m; path = EXImageLoader/EXImageLoader.m; sourceTree = ""; }; + 8D8B9F732954D86D82A441E9B1D642CD /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSourceCode.h; sourceTree = ""; }; + 8DBF610409B21DC9EF67D81A4DBDBC6A /* RNFastImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFastImage-prefix.pch"; sourceTree = ""; }; + 8DCA471A96EEDC4FF71B04C0B6280E1E /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; + 8DD126C0D073D3C5398EF812500A915B /* RCTTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModule.h; sourceTree = ""; }; + 8DF5D0FBF5908E9568AE95C94B45CF8C /* RCTVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideoPlayerViewController.m; path = ios/Video/RCTVideoPlayerViewController.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; }; 8DFBAA668DAA11EFFF653C4F4F65920D /* NSError+FIRInstanceID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSError+FIRInstanceID.m"; path = "Firebase/InstanceID/NSError+FIRInstanceID.m"; sourceTree = ""; }; 8E103C191260FD8059A70EBEAD980250 /* yuv_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_sse41.c; path = src/dsp/yuv_sse41.c; sourceTree = ""; }; - 8E3E9224AB8B6AE8E1332BE7236DAC9F /* RCTConvert+RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+RNNotifications.h"; path = "RNNotifications/RCTConvert+RNNotifications.h"; sourceTree = ""; }; - 8E3EEFACE8AF7F4F9675941712ED3112 /* RNGestureHandlerModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerModule.m; path = ios/RNGestureHandlerModule.m; sourceTree = ""; }; - 8E5DB3686CB781FC5DC68AA80E5C8551 /* RNUserDefaults-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNUserDefaults-prefix.pch"; sourceTree = ""; }; - 8E7258DE9C05C4BAE7DD514FD591319E /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; + 8E18A88BAD923B062DD7A8FDDE0FC019 /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; + 8E41897D7B8A9E05D048F023965765EE /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; + 8E63DE5FDC61C58B3447DB0396BC3C73 /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = ""; }; 8E8C019C75FF4F789E40C8784D2EEB25 /* FIRInstallationsItem+RegisterInstallationAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstallationsItem+RegisterInstallationAPI.h"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.h"; sourceTree = ""; }; - 8EA4BAF13052EDA8C425D31E6EB4660B /* KeyCommands-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "KeyCommands-dummy.m"; sourceTree = ""; }; + 8EB4958C1AAE02BF779DE65F281D502C /* rn-extensions-share-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-extensions-share-dummy.m"; sourceTree = ""; }; + 8ECEB4113FAE0A630DB0A48789C04434 /* RCTTypedModuleConstants.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTypedModuleConstants.mm; sourceTree = ""; }; 8ECEDAD2A838321D345DEE9D05E6BB90 /* glog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "glog-dummy.m"; sourceTree = ""; }; 8EDA6DF3A3B6AF0071D4A7A9742995B2 /* SDWebImageDownloaderDecryptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderDecryptor.h; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.h; sourceTree = ""; }; - 8EE6BDF4D32EF0A286192FC4EE837F27 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; - 8F5398B210CBA961523993A242B13978 /* RNFirebaseFirestoreDocumentReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreDocumentReference.h; sourceTree = ""; }; + 8EE70BC3A8197176114E7EABB6218665 /* 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; }; + 8EF4278534C114B75848F65D72660EB2 /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = ""; }; + 8F05191A1FFA378F8D0BEFACAF94CF16 /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; + 8F0E564DE338119666276106356B8119 /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; + 8F20CC66C09FA1EA57D7754B739BB3FF /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; + 8F2A4EB921C09B725F2CB6A24B0429F1 /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = ""; }; + 8F373EF97D2F667F5BA156702ACBEE0F /* React-CoreModules-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-CoreModules-prefix.pch"; sourceTree = ""; }; 8F65F9361F2069CF9E9D751272968DE4 /* libRNGestureHandler.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNGestureHandler.a; path = libRNGestureHandler.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F88B876C5405EBA02F0267913352F6F /* BugsnagSink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSink.h; sourceTree = ""; }; - 8F8FE20DC1D5D221CB41328B3C377473 /* QBAlbumCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumCell.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.m; sourceTree = ""; }; - 8FAF62BFFC896F70FC39BD6610038A65 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = React/CoreModules/RCTImageLoader.h; sourceTree = ""; }; + 8F66E7205BB7E21813556AB6A7D50114 /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; + 8F9250A90777B0FF446D2599F1718133 /* TurboCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboCxxModule.h; path = turbomodule/core/TurboCxxModule.h; sourceTree = ""; }; + 8FCD67CABEA60260ACB5A3DE0C6E76F4 /* RNFirebaseAdMobNativeExpressManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobNativeExpressManager.h; sourceTree = ""; }; 8FE78D699DF0963CA715538E756C4EE2 /* GULApplication.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULApplication.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULApplication.h; sourceTree = ""; }; - 900603B2A3FF1E8D2B04E7D5A416BB3B /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; - 9034F938C79589876C34B7C8D5FE8E9C /* REAClockNodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAClockNodes.m; sourceTree = ""; }; - 903FE982376C7A755BE05D5F6CEFBB16 /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; 905B1BD1CB9FFBC1DD7770F2DBD5FD19 /* FIRInstanceIDCombinedHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCombinedHandler.m; path = Firebase/InstanceID/FIRInstanceIDCombinedHandler.m; sourceTree = ""; }; - 9069EDCD5B7C9BC4E2C548959AC4BD59 /* RNFirebaseAnalytics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAnalytics.m; sourceTree = ""; }; - 9080EF5E784DDF1531BA49855E01F18C /* BSG_KSObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSObjC.h; sourceTree = ""; }; - 909F788ADA611566390BEBF1E97A2246 /* RCTTypeSafety.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTTypeSafety.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 91001571139C2588EED45CB2B80C533A /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = ""; }; + 90790859284BE76172F93E9F7813BB5D /* BSG_KSSingleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSingleton.h; sourceTree = ""; }; + 907943E2FBD3DB953B4FBA9071E2CB0C /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; + 90840E4541C9DD475BB36737BCEF0EF0 /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; 91359A1A9D71282B8617D5BF30B86B04 /* GoogleUtilities-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleUtilities-prefix.pch"; sourceTree = ""; }; - 9143C5908FB4D8E74749679BC33C2070 /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = Libraries/WebSocket/RCTWebSocketModule.h; sourceTree = ""; }; - 9164B5C0D7CEC79973609FB151A5687B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 917F61313C78913F2EF1E925E1D23E9A /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; + 915F0FFDA3662093AEC20E034BDB87FC /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; 919435F4CD2ADBE3C210FD10F56B568A /* FBLPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromise.m; path = Sources/FBLPromises/FBLPromise.m; sourceTree = ""; }; - 91A9F86D9F4B6D78014A5ADCA5CABB6E /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; - 91CE1C2FF65D6D5645F184280CB2BF87 /* BSG_KSCrashSentry_User.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_User.h; sourceTree = ""; }; + 91A9B7A30D4D872C8EC76F32B87D2FD1 /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; + 91BC942CF16AC147CAD7D1217158C055 /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; + 91CBE1B1C314D1D24C75150A144A3BE1 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 91CF14832C73F2B333714483F06B3C9A /* UIImage+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Transform.m"; path = "SDWebImage/Core/UIImage+Transform.m"; sourceTree = ""; }; - 91D818B559C21A0B677C6ED9ABF5F156 /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; - 91DF8F577B3C4088DDE323C3FE6F5037 /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 9214CCFBCD5FCADCB4FD08313D9448C9 /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = ""; }; + 91D1EFE5F226BBD145CE95DAC5EA45FA /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; + 91D9E1D0C746C2FFBD68E1A7367EC6B7 /* RNJitsiMeetViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetViewManager.h; path = ios/RNJitsiMeetViewManager.h; sourceTree = ""; }; + 91DEC9A923CC79D8CD146271B6CC8A86 /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = ""; }; + 91EAA0DE0CBBA7A05103808C326CDA3E /* REAAllTransitions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAllTransitions.m; sourceTree = ""; }; 921B01A30EBFEA00540CF83973A575F9 /* GDTCOREvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCOREvent.h; sourceTree = ""; }; 921C25810B4533D9E001D73370A577B6 /* GULAppDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULAppDelegateSwizzler.h; sourceTree = ""; }; - 922FCA40A40F924C57AEC2FCA7D56714 /* RNGestureHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNGestureHandler-dummy.m"; sourceTree = ""; }; - 92313FE1AAEFAC337407AC82B920B585 /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; - 924344F52B4EC1586BD1212D4914D95A /* AntDesign.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = AntDesign.ttf; path = Fonts/AntDesign.ttf; sourceTree = ""; }; + 923936132C5FF045A354B7B75A74E01D /* RNFastImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFastImage-dummy.m"; sourceTree = ""; }; + 924751E7D1039F4FB0EDC9094378B4BF /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = InspectorInterfaces.cpp; sourceTree = ""; }; 9266B058E00473F5A3D7D31E6AFE30EA /* GULAppEnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppEnvironmentUtil.m; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.m; sourceTree = ""; }; - 9271E0A545759858345B56CF01EE6EA1 /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; 92839ECA01AD51593C6AC08DBD9EBCC2 /* GDTCORTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer.h; sourceTree = ""; }; - 92991E50D3464427C3917E08D7A6B7F7 /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; + 929ADB4BD381ED2AA60F8FF8E7317730 /* UMImageLoaderInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.xcconfig; sourceTree = ""; }; + 92AAE233471128F7AB697528E5779C4F /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; + 92D3A2C71CB1459A2CE0C33710DEA4CD /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.h; sourceTree = ""; }; 92FA3E16143BD843AB82FBE1484C3175 /* GDTCORTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORTransformer.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORTransformer.m; sourceTree = ""; }; - 92FBB8099801A27BF1A4141AEA1489F7 /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; - 9315C39C62536FC92B607DED8993B973 /* react-native-document-picker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-document-picker-prefix.pch"; sourceTree = ""; }; - 9331613AA7DCF2A30266E92812D8A152 /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; + 933526594E2B49970B93C4331D304EB4 /* BannerComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BannerComponent.h; sourceTree = ""; }; 933895F5689A726BB5DBED7880848CEA /* FBLPromise+Retry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Retry.h"; path = "Sources/FBLPromises/include/FBLPromise+Retry.h"; sourceTree = ""; }; 9338EA7FE417C2BDF76DEEE30198B2B8 /* FBLPromise+Catch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Catch.m"; path = "Sources/FBLPromises/FBLPromise+Catch.m"; sourceTree = ""; }; + 93397AD379506B0DFA85AB22E1858FC5 /* RCTCustomKeyboardViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomKeyboardViewController.m; sourceTree = ""; }; 93606334B2DB3E80CC396AEDC2F909F5 /* quant_levels_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant_levels_utils.h; path = src/utils/quant_levels_utils.h; sourceTree = ""; }; - 93A6668248E0553F88E3F241BC7DB2CC /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = ""; }; + 93ADFE4CAD9451B1B196CECC916633D8 /* BugsnagUser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagUser.h; sourceTree = ""; }; 93B11D5857328B9B8C43CEFE929288EC /* SDMemoryCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDMemoryCache.m; path = SDWebImage/Core/SDMemoryCache.m; sourceTree = ""; }; 93B448CC3FB8A5E0A529641BC3F578C2 /* GDTCORDataFuture.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORDataFuture.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORDataFuture.m; sourceTree = ""; }; 93C7F9D33807C629347B5CC327303501 /* GULNSData+zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULNSData+zlib.h"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.h"; sourceTree = ""; }; - 93F179CAC37400A573A57D7C580C75D5 /* RNLocalize.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.xcconfig; sourceTree = ""; }; + 93CCBDDABEAE5942230CF0E025336E1E /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; + 93E0A184E9DA535352EF48AF9C5EBF68 /* RCTTurboModuleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModuleManager.h; sourceTree = ""; }; 93F8311DDBE0DBF0536063DB1283834E /* FBLPromise+Any.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Any.h"; path = "Sources/FBLPromises/include/FBLPromise+Any.h"; sourceTree = ""; }; + 93FAB1745DC86F18A7B2CF702DE72503 /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = ""; }; 93FD2FCA283A90F02414FA05025F9086 /* UIColor+HexString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+HexString.h"; path = "SDWebImage/Private/UIColor+HexString.h"; sourceTree = ""; }; - 9408139B2A13DBE3A839E2F98232F29F /* BSG_KSCrashSentry_CPPException.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_CPPException.mm; sourceTree = ""; }; - 949E9A305D19F1E2BF149A0814E591B0 /* RNAudio.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNAudio.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 94B487F259C39A019C26E498C77F346A /* RNRootViewGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRootViewGestureRecognizer.m; path = ios/RNRootViewGestureRecognizer.m; sourceTree = ""; }; - 94D2784367826E2CD691EF61F8A78CD0 /* NSError+BSG_SimpleConstructor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSError+BSG_SimpleConstructor.h"; sourceTree = ""; }; - 94DE77592004DF1F7B50325C773C9EC3 /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; - 94F547B239E503C73BB599D250FC08E5 /* BSG_KSBacktrace_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace_Private.h; sourceTree = ""; }; - 94F7CCF3B0B5DC48EA13397ECEEA57AC /* BugsnagSessionTrackingPayload.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingPayload.h; sourceTree = ""; }; - 95048AB5EC80A6FD7899DF9300FAA430 /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; + 943E9B246FD22B5A90F44E9DEE7538D3 /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = ios/RNCWKProcessPoolManager.h; sourceTree = ""; }; + 9452FD50EC910E745BFEA70CD7D7DFC5 /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = ""; }; + 948E905C7DF7FF829F4AF8B63DA1650A /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = React/CoreModules/RCTImageStoreManager.h; sourceTree = ""; }; + 9496F8ADFC18E0AA6076F1A696215AC9 /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyboardObserver.h; sourceTree = ""; }; + 94C76B3BA4849C297A83C046F72B0584 /* react-native-notifications-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-notifications-prefix.pch"; sourceTree = ""; }; + 9501CFD3C936BC73BFADBCEFE40AEB0A /* UMFileSystemInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.xcconfig; sourceTree = ""; }; 951060CAC29689856FF5CE28D672D5F9 /* glog-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "glog-prefix.pch"; sourceTree = ""; }; - 95169C2ACD0CFD69D3DA2A7C1BA063BB /* REAStyleNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAStyleNode.m; sourceTree = ""; }; 951EA411C3609031BB767BB3EC28580E /* json.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json.cpp; path = folly/json.cpp; sourceTree = ""; }; - 95ABB6B55BA602D3BBBAD1058697200A /* FBReactNativeSpec-generated.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "FBReactNativeSpec-generated.mm"; path = "FBReactNativeSpec/FBReactNativeSpec-generated.mm"; sourceTree = ""; }; - 95F2F9E652BC530FD7527C731009D0EC /* BSG_KSJSONCodec.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSJSONCodec.c; sourceTree = ""; }; - 95F532C5C0C284AF79C3E45B2F4C1640 /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; + 955D77FB666FAF9BE8FE7B657B256897 /* BSG_KSSystemInfoC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfoC.h; sourceTree = ""; }; + 9584BF8B7116E9533B527075D84FC6E2 /* UMCameraInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.xcconfig; sourceTree = ""; }; + 95EF3AD0840BFDDC76F676455E7154DD /* RNNotificationEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationEventHandler.m; path = RNNotifications/RNNotificationEventHandler.m; sourceTree = ""; }; 95F672D173395EBA22AF0884C6C8915F /* FIRInstanceIDTokenOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenOperation.h; path = Firebase/InstanceID/FIRInstanceIDTokenOperation.h; sourceTree = ""; }; 9602665ED7A4FCF32AFDE7F8439C8C55 /* msa_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = msa_macro.h; path = src/dsp/msa_macro.h; sourceTree = ""; }; - 96371E20F6001DD2B4574720BC9BCCD8 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; + 9608D8A2D0AEE0A6A888D2E2C7E4342D /* BugsnagSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSession.m; sourceTree = ""; }; + 9616C625D92B8968CC0533A4CA4AE4A6 /* RNFirebaseUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebaseUtil.m; path = RNFirebase/RNFirebaseUtil.m; sourceTree = ""; }; + 963529313674244E03C747A4948AE491 /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; 965EC53F67148F2FB7C1C52C636A654B /* Format.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Format.cpp; path = folly/Format.cpp; sourceTree = ""; }; - 967FA1A50F500261410AB58054ED1F4F /* BSG_KSCrashIdentifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashIdentifier.m; sourceTree = ""; }; - 9683C6DA2A8F45520D195D28F24C9D3D /* EXImageLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXImageLoader-dummy.m"; sourceTree = ""; }; - 96A7EAC83659ECF44DB12C551B618B3A /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = ""; }; - 96AA77E0285EDD12927EF15AB23471E4 /* ARTGroupManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTGroupManager.m; sourceTree = ""; }; - 96B4AB7518B0AEE8B1100BFE3AEAF45A /* React-RCTAnimation.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.xcconfig"; sourceTree = ""; }; + 96994F4ACDF019E0D9595D3C51B92406 /* BugsnagKeys.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKeys.h; sourceTree = ""; }; 96BA55D82ECFF1108092369C40805752 /* anim_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_encode.c; path = src/mux/anim_encode.c; sourceTree = ""; }; - 96CE6B0ECBD3204E0C50C074AE3C78E6 /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; 975D51C22494655692ADF60A40FC9F94 /* UIImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "SDWebImage/Core/UIImageView+WebCache.h"; sourceTree = ""; }; - 977FEB663707366C327C47CC27CDA8C7 /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; + 975ECB2D29AFDE497BDE8DA25F81351C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 9766B809AC1E5C70E1EF8A7B6FB8914A /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; + 9775310D6981341505F105C9568C5E45 /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = ""; }; + 978DA240A5DA324CB45468880D17880F /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; 979A76AD19363B9D26207764CC5EE2C2 /* FirebaseCoreDiagnosticsInterop.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCoreDiagnosticsInterop.xcconfig; sourceTree = ""; }; - 979F8F7FCE58E9A2AC564E172E069713 /* RCTImageDataDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageDataDecoder.h; path = Libraries/Image/RCTImageDataDecoder.h; sourceTree = ""; }; + 97BE7BFFF182E661D432FFE8E3898511 /* BSG_KSCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry.h; sourceTree = ""; }; + 980334210A70EC8FFACDA9AE9DECBEE1 /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; + 980FDBA738C683BE41F4E005921CF7B2 /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; 9823CB2C7479BFFC9C9AA170BD0CBB10 /* SDImageIOCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOCoder.h; path = SDWebImage/Core/SDImageIOCoder.h; sourceTree = ""; }; - 984EC3D8454467D54E7F433691CF8B2D /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = ""; }; - 98761D46C834D39986CE5E71ADB846AF /* ARTTextManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTTextManager.h; sourceTree = ""; }; - 987968DA8F1A1D930138205600AEF2C8 /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = ""; }; - 990864F692682DB3E444C12A8510DF88 /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = ""; }; + 98329DCCF0E9C701206E2578C76953D5 /* BSG_KSBacktrace.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSBacktrace.c; sourceTree = ""; }; + 9838DD02C421D6A67A4DABE8E5BBD4DE /* RNBootSplash.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNBootSplash.xcconfig; sourceTree = ""; }; + 98A7A347CA351FBD29C63ECE2C510116 /* RNGestureHandlerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerState.h; path = ios/RNGestureHandlerState.h; sourceTree = ""; }; + 98CA230ACBC6FAFCFD4918557133F565 /* subscription.md */ = {isa = PBXFileReference; includeInIndex = 1; name = subscription.md; path = docs/subscription.md; sourceTree = ""; }; + 9901BACE3A1530200B9D29B6C2010ED3 /* rn-fetch-blob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-fetch-blob-dummy.m"; sourceTree = ""; }; + 9904960D15504DAC6CCA49A008D712AE /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; 993AC02EC1C111E4334D17D3E0BBE05E /* signalhandler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = signalhandler.cc; path = src/signalhandler.cc; sourceTree = ""; }; - 9973EB72F97B4F9251AE038CA9E02F89 /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; + 9973454611F684DDCF713365145BC4F6 /* RCTVideo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideo.h; path = ios/Video/RCTVideo.h; sourceTree = ""; }; 999C11E9F0B6529BC62034D8CCC9BC0B /* FIRInstallationsLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsLogger.m; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.m; sourceTree = ""; }; + 99AC0483E6DC8F46D5EF5A81815C0919 /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; + 99FBE28ACFF451E8AC265AEE68702C39 /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; 9A03EB9B87FF49512AC6907C1B9AA221 /* Pods-RocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-RocketChatRN-dummy.m"; sourceTree = ""; }; - 9A06933249D6B6F3242FD631D34B3769 /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = ""; }; + 9A1D215EB5CC4FA8B549778DCF215A5C /* RNFirebase-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFirebase-dummy.m"; sourceTree = ""; }; 9A4D3B3B310D9827F2482B1F3DE8CC69 /* bignum-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "bignum-dtoa.cc"; path = "double-conversion/bignum-dtoa.cc"; sourceTree = ""; }; + 9A5ABF6A709F9F8B7344A710779D51D8 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 9A5D533C41D3DCA0AE4501ABA408A5EF /* muxinternal.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxinternal.c; path = src/mux/muxinternal.c; sourceTree = ""; }; - 9A64BC837A4F96368E4BA3ADE5592C95 /* RNVectorIcons.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNVectorIcons.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 9A65228A597C9CDF1630D3E33E79C2E7 /* SDWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWeakProxy.m; path = SDWebImage/Private/SDWeakProxy.m; sourceTree = ""; }; - 9A6F770FE653E870011DD1968291836D /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; - 9A6FCD0DDF685CFBE2A8C6E32E55AF39 /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; + 9A7AEBA9C7FF343E5421EF7F9BFCC694 /* JSDeltaBundleClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSDeltaBundleClient.cpp; sourceTree = ""; }; + 9AA5BE73650483C36940FEB822F5FEFF /* RCTAsyncLocalStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAsyncLocalStorage.m; sourceTree = ""; }; 9AB0FF969520EECB0B36AF7E6D88CD2D /* GULNetworkConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkConstants.h; path = GoogleUtilities/Network/Private/GULNetworkConstants.h; sourceTree = ""; }; + 9ADB38322F34A3E62427612768AE218F /* RNFirebasePerformance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebasePerformance.h; sourceTree = ""; }; 9AE4C4F557F4921C9D27A6E75DDB9A1A /* ScopeGuard.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScopeGuard.cpp; path = folly/ScopeGuard.cpp; sourceTree = ""; }; - 9AE4E75113C9428A4B0C28F154748E6A /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 9AFB4B5E87A09ABC0522AEC0E59E56E1 /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; - 9B254C9C4A303F02DB2DDD0A2B7553FC /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; - 9B2D64547DAA0DB27D79EDCA28E88DB4 /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; - 9B44B3CA80865E6E906E533DE24E3C8F /* 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; }; - 9B52DF1CB1AA62488CE63C6CFB7851B6 /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = ""; }; 9B6AE09786B2423B11C27D00079FCE17 /* GDTCORUploadPackage_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadPackage_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadPackage_Private.h; sourceTree = ""; }; - 9B81DDCD44C011136B37C39D17850F69 /* RNFirebaseAdMobNativeExpressManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobNativeExpressManager.m; sourceTree = ""; }; - 9BBD31B56D156170B565D11F70FE98AC /* installation.md */ = {isa = PBXFileReference; includeInIndex = 1; name = installation.md; path = docs/installation.md; sourceTree = ""; }; + 9B7CFD05C691F6924977123D6341303E /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = React/CoreModules/RCTImageLoader.h; sourceTree = ""; }; + 9BAD19431865B16792B25375CC234813 /* react-native-appearance-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-appearance-prefix.pch"; sourceTree = ""; }; + 9BBFB7DF029570D3DA89F4EA8867EED8 /* QBAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetCell.h; path = ios/QBImagePicker/QBImagePicker/QBAssetCell.h; sourceTree = ""; }; + 9BD2DF60DA184804CFE750C979ACC465 /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = ""; }; + 9BD8E89DC6D0FE7D0F3D4AFAA6584194 /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = ""; }; 9BE700AB1A857567583B903EB1F58B73 /* FIRInstanceID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceID.h; path = Firebase/InstanceID/Public/FIRInstanceID.h; sourceTree = ""; }; + 9C4240233ECFEFFB1E31A2BDB0900128 /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.h; sourceTree = ""; }; + 9C48FC3DE43ECB47614C9E744A10EADB /* BSG_KSMach_x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_64.c; sourceTree = ""; }; 9C6750D1449BBDDD153063D5BC8E25D0 /* FIRCoreDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsData.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h; sourceTree = ""; }; - 9C81C06F9CC5488C4F528E8CEEA36099 /* RNFetchBlobProgress.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobProgress.m; path = ios/RNFetchBlobProgress.m; sourceTree = ""; }; + 9C8B81AE3B3926554D716E80CB3FB004 /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; + 9C9112F2E8C6E60647D2E2E444624B85 /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspector.mm; sourceTree = ""; }; 9CB6851B50895A42D3F7C877300D7C7A /* FIRInstanceIDTokenDeleteOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenDeleteOperation.m; path = Firebase/InstanceID/FIRInstanceIDTokenDeleteOperation.m; sourceTree = ""; }; 9CC2E2273ED5FE89DBB756223A07E524 /* double-conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "double-conversion.cc"; path = "double-conversion/double-conversion.cc"; sourceTree = ""; }; - 9CCF8D5B02E013026830BC2E0685339D /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; - 9CDC959EAAC82AB0723B5116CE019382 /* RNCAppearance.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearance.m; path = ios/Appearance/RNCAppearance.m; sourceTree = ""; }; 9CE153AFAE2F96D0F934D1BAF6939CCD /* GULSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSwizzler.h; path = GoogleUtilities/MethodSwizzler/Private/GULSwizzler.h; sourceTree = ""; }; - 9D25603DCDBD905C3E3280D640D6E574 /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; - 9D26DC91E9446B7C02FEFA5D5D9853AC /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 9D610C7775D84023A607C100F82FCBE5 /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; - 9D746F514705510EAC14794BD0BBB40D /* REAAlwaysNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAlwaysNode.m; sourceTree = ""; }; - 9D820246B0BD3309229891932B60F66A /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = log.cpp; path = yoga/log.cpp; sourceTree = ""; }; - 9D8B44D8422C4E7EDE9D751882D45B82 /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; + 9CEA49036BD452BE4A76DB445E83A381 /* react-native-keyboard-input.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-keyboard-input.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9CF3786EE8000A20DFDD143520027865 /* 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; }; + 9D1D04F15826580499B17234E3912288 /* RNNotificationEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationEventHandler.h; path = RNNotifications/RNNotificationEventHandler.h; sourceTree = ""; }; + 9D4106ED572E83D913CD2439E1370845 /* FontAwesome5_Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Regular.ttf; path = Fonts/FontAwesome5_Regular.ttf; sourceTree = ""; }; + 9D68A6D7E67D45B0196E2F6716B6A190 /* RNRotationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNRotationHandler.h; sourceTree = ""; }; 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 9DA067396E70678CC62C010DF21ABF88 /* 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; }; 9DC3538131FBA43CF7F442029413C750 /* FBLPromise+Recover.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Recover.m"; path = "Sources/FBLPromises/FBLPromise+Recover.m"; sourceTree = ""; }; 9DC55014AFA153FD4E3CBC4A4A6CEF69 /* FIRInstanceIDTokenInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenInfo.h; path = Firebase/InstanceID/FIRInstanceIDTokenInfo.h; sourceTree = ""; }; - 9DCE3FF459B64EAA9845981585067DB6 /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; - 9E33B5D4B32B8D02734F0AE9E7A406DF /* RNCWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebView.m; path = ios/RNCWebView.m; sourceTree = ""; }; + 9DFEBD29FC57E8774800E8CBB8128456 /* BSG_KSCrashCallCompletion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashCallCompletion.m; sourceTree = ""; }; + 9E795BB03EFA38DE1BDD66FE34A941BC /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; 9E799F0463BF1E9CB29AB2DD41EB7846 /* FIRAnalyticsConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsConfiguration.h; path = FirebaseCore/Sources/Private/FIRAnalyticsConfiguration.h; sourceTree = ""; }; - 9E7A416F75D848938F7E26374B24D1B1 /* RCTDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDeviceInfo.m; sourceTree = ""; }; + 9E7A149307A393ACABD36837C91C2C61 /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAccessibilityManager.h; sourceTree = ""; }; + 9E822F4CDCF4DB122075F36B3348CB32 /* BugsnagSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSession.h; sourceTree = ""; }; 9E97258EDDE1B0FF09F0FC66346AD27A /* lossless_enc_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_msa.c; path = src/dsp/lossless_enc_msa.c; sourceTree = ""; }; - 9F0B55389BBCE3DC517D5A3A2ECFFBF5 /* UMModuleRegistryHolderReactModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryHolderReactModule.h; sourceTree = ""; }; - 9F0D389ACAFD22E926E943101A0A259D /* UMAppLoader.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMAppLoader.xcconfig; sourceTree = ""; }; - 9F82FC92BBAA394A3778E3F395619E6D /* REAParamNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAParamNode.h; sourceTree = ""; }; - 9FACD549F1023633C75B5539EDE4B196 /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = ""; }; + 9EBE1FD358D5DB444D1994A23AF5B744 /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; + 9EC6719490272E2EB87C07A55669DB19 /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; + 9F11B9FBA50006F16241B643CC14A271 /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSExecutor.cpp; sourceTree = ""; }; + 9F357FFA83F025CF4B110994FADFE0DB /* BugsnagReactNative.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BugsnagReactNative.h; path = cocoa/BugsnagReactNative.h; sourceTree = ""; }; + 9F56933F51654EE11046716D6A9D893E /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 9F8A795D79440FA00273CD98F065B963 /* Bitfield.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bitfield.h; path = yoga/Bitfield.h; sourceTree = ""; }; + 9FCD890FE514033649939E23DF34FCFD /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; 9FE7CAD15D46DC8EB22E034ACFB28888 /* FIRInstallationsStoredAuthToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredAuthToken.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.m; sourceTree = ""; }; - 9FFC82B5E27A8347992ABB24503A3FE1 /* RCTWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWeakProxy.m; sourceTree = ""; }; - A00DE769931FC6DE829514A38AA058C2 /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; - A016D6A210522AC24080C76A0C53477C /* RCTTypedModuleConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTypedModuleConstants.h; sourceTree = ""; }; - A03DE502008020EB490A8C1BF68073A4 /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; - A0441F83EA88D5BC4EA94D4DC5961DDE /* RNGestureHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerRegistry.h; path = ios/RNGestureHandlerRegistry.h; sourceTree = ""; }; - A04A060236236CB1CC69946A6634F6AB /* RNSScreenStackHeaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStackHeaderConfig.h; path = ios/RNSScreenStackHeaderConfig.h; sourceTree = ""; }; - A04EBFCE94F34A2DE815C6C732E0A763 /* BugsnagCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashSentry.h; sourceTree = ""; }; A05BCBED3EF0DF896274C0F7F49E194B /* FBLPromise+Do.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Do.h"; path = "Sources/FBLPromises/include/FBLPromise+Do.h"; sourceTree = ""; }; - A07DF45037E3E9968E599E042DC22FB1 /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = ""; }; - A083A60E952FD6845E06C3B5AB4F25ED /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LongLivedObject.h; path = turbomodule/core/LongLivedObject.h; sourceTree = ""; }; - A084251F44171146FE7CC4E3973E0896 /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFollyConvert.mm; sourceTree = ""; }; - A086905870854E2803180C1E248E8B3E /* RCTVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoManager.h; path = ios/Video/RCTVideoManager.h; sourceTree = ""; }; - A0969EF9EEFF594E26EF1F633AD89612 /* RCTNetInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetInfo.h; path = Libraries/Network/RCTNetInfo.h; sourceTree = ""; }; - A0B0145EB41C3A38809588C7EC1B0453 /* KeyboardTrackingViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KeyboardTrackingViewManager.m; path = lib/KeyboardTrackingViewManager.m; sourceTree = ""; }; - A0D3AC405D78D292A38020CE430D431F /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = ""; }; + A060D275F6FB2202E39824FE20772A14 /* RNRootView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNRootView-dummy.m"; sourceTree = ""; }; + A08C132DEDA462010F5B82CC4EFD99A4 /* BugsnagSink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSink.h; sourceTree = ""; }; + A090DCBB0F337EA42C4E3977A9F0B1B0 /* RNBootSplash-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNBootSplash-prefix.pch"; sourceTree = ""; }; + A097391D91E9B6ABA1CECE20676B56E3 /* EXVideoPlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewController.h; sourceTree = ""; }; + A0B4A06232EC276DAB783F7F1D6C5866 /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = ""; }; + A0BD5F45347AF241ACD522068EE2A13F /* REATransformNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransformNode.h; sourceTree = ""; }; + A0C2CBE489F6BE8623AF5ED5DC1FB0B1 /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; A0DE2AA756FD1093A58487EEF833F499 /* FIRInstanceIDStringEncoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDStringEncoding.h; path = Firebase/InstanceID/FIRInstanceIDStringEncoding.h; sourceTree = ""; }; A0EA3217B857F6515E5C3725E793D70A /* FIRInstallationsAPIService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAPIService.h; path = FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsAPIService.h; sourceTree = ""; }; - A13E80AE6A729D77A5B03D2453A07BFF /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; - A14A41BC0F35CC63BB4C79FA41FCCEF2 /* RCTConvert+UIBackgroundFetchResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+UIBackgroundFetchResult.m"; sourceTree = ""; }; + A10936A5CFE73F4649919F750A19356F /* BSG_KSCrashCallCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashCallCompletion.h; sourceTree = ""; }; + A13C6946B33C455B359738BA52FB0A4A /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; + A152BFA1C5A859956B6D2415A42FDCA6 /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; A15D9453B10C17715504A05E32605847 /* firebasecore.nanopb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = firebasecore.nanopb.h; path = Firebase/CoreDiagnostics/FIRCDLibrary/Protogen/nanopb/firebasecore.nanopb.h; sourceTree = ""; }; + A16DEFAB0875333C26E3139CE5310E82 /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; + A1836297279046CF93D2133080C76D41 /* UMAppLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMAppLoader-prefix.pch"; sourceTree = ""; }; A1C0F847D5B6DD6759E31413551F6F58 /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "SDWebImage/Core/UIButton+WebCache.h"; sourceTree = ""; }; A1EC5104042BAFCD052B353B775968D7 /* CGGeometry+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CGGeometry+RSKImageCropper.m"; path = "RSKImageCropper/CGGeometry+RSKImageCropper.m"; sourceTree = ""; }; A1F0899513A15CABEC77801711DA43EC /* lossless_enc_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_mips32.c; path = src/dsp/lossless_enc_mips32.c; sourceTree = ""; }; - A1F11FDF3DFB206288228C9489CB4E24 /* RNDateTimePicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDateTimePicker-prefix.pch"; sourceTree = ""; }; - A20A1775CECF70FDB0A05B7C12A5D99E /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; - A261092ADB1CF40A6E3D2F9C7D161383 /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = experiments.cpp; sourceTree = ""; }; - A27B300D06E198DEB17D06A4FFC3D339 /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = experiments.h; sourceTree = ""; }; - A27E79EFF089B11810B130154DDF2756 /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; + A1F900E624E4F67AFB7FA81DF7F85E61 /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; + A20CC0982D78D08FA3BD84F1E518DA51 /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; + A22F94C05440702EAEA8551097983106 /* 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; }; + A23FC1C6EEB4D286D5681F8C73164353 /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; + A281B418998BA4257474919CBA88225C /* TurboModuleUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleUtils.cpp; path = turbomodule/core/TurboModuleUtils.cpp; sourceTree = ""; }; A2894FAA81841C7DE26398644B1F3ACD /* GULReachabilityChecker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULReachabilityChecker.m; path = GoogleUtilities/Reachability/GULReachabilityChecker.m; sourceTree = ""; }; - A29945BD2BC09DFA3D6BC2B78EB2D190 /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; - A2B94ECD37EABC4C367A6D47319FAED9 /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; + A2A0865FC59C46533EFBE99829F2C6E2 /* RNFirebaseAdMobInterstitial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobInterstitial.h; sourceTree = ""; }; + A2A6138081D3600CEEF94F4879B26747 /* BugsnagSessionTracker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTracker.m; sourceTree = ""; }; + A2BB4A0544ACABAB39F55C9B4DC418F1 /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; A2CB7B6EE46AF3166A4B3053A322A61C /* SDGraphicsImageRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDGraphicsImageRenderer.h; path = SDWebImage/Core/SDGraphicsImageRenderer.h; sourceTree = ""; }; - A2CD12992CBD145D2479A48A3068C9C6 /* BSG_KSCrashCallCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashCallCompletion.h; sourceTree = ""; }; + A2F288C170B5F2132D63BEBBA3CDC0C7 /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A2F98D797C5A100E3115EA3505C1DA82 /* GoogleUtilities.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.xcconfig; sourceTree = ""; }; - A30CA10BD3D0FFFC75579BEDA72F4322 /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; - A317CBD38AF6741347B409C06E5EAE8E /* Yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A31F188D4B66F6B22F8E86B908FDCAFE /* RSKTouchView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKTouchView.h; path = RSKImageCropper/RSKTouchView.h; sourceTree = ""; }; - A348741DC04900AB79C759052957C647 /* BugsnagReactNative.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BugsnagReactNative.h; path = cocoa/BugsnagReactNative.h; sourceTree = ""; }; - A359FDA218BBB85A1EE5CE72F7EE5C58 /* BSG_KSCrash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrash.m; sourceTree = ""; }; - A36A109784D2B83D3C88A7A23FEE4229 /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTMessageThread.mm; sourceTree = ""; }; - A36F98AFED3E1B7EC702C7C6D15AE300 /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; - A38AAD5AE0705D48A71F941F0EDD7695 /* UMCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.xcconfig; sourceTree = ""; }; + A353EBABAB23AF51DD06C780062A0033 /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; + A37B85ACEC04F42234F39F36922AF4DF /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; + A37F85EC0C192B825ED43BA595184762 /* RCTRequired.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTRequired.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A38CE196FAF4456B06F77B5B9E0CFDBE /* SDImageTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageTransformer.h; path = SDWebImage/Core/SDImageTransformer.h; sourceTree = ""; }; A38D33F827E62F685D432C9A01C918E6 /* FIRLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRLogger.m; path = FirebaseCore/Sources/FIRLogger.m; sourceTree = ""; }; - A3B3F076BBD3556DC3A8D807870D4889 /* BSG_KSCrashReportFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilter.h; sourceTree = ""; }; - A3BBBD7319B3EAEDF4C76F20AF2AAFE4 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - A3C40648B277654B89CBC8308486307E /* RNPushKitEventListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventListener.h; path = RNNotifications/RNPushKitEventListener.h; sourceTree = ""; }; - A3CAFFB43F1526F1910D35006AEA64D4 /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = CxxNativeModule.cpp; sourceTree = ""; }; + A3D30A327658332768723A3C7A5AD074 /* BugsnagErrorReportApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagErrorReportApiClient.h; sourceTree = ""; }; A3EF6DDC9ECF54BEBC12FEF5478C225C /* FIRInstanceIDCheckinStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCheckinStore.m; path = Firebase/InstanceID/FIRInstanceIDCheckinStore.m; sourceTree = ""; }; - A41D14C41217E03108A1B9AEBB310195 /* ARTText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTText.m; path = ios/ARTText.m; sourceTree = ""; }; - A422E74247A5C79441498360C1D9C4AB /* RNReanimated-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNReanimated-prefix.pch"; sourceTree = ""; }; - A43B2A2F1692B94FFBE6296047F98078 /* RNDocumentPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDocumentPicker.h; path = ios/RNDocumentPicker/RNDocumentPicker.h; sourceTree = ""; }; + A400C135266E951FFAF31B82700341CC /* BSG_KSCrashSentry_Signal.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_Signal.c; sourceTree = ""; }; + A40DDBDE75B76EE4C97C4876D85175B1 /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = ""; }; + A40F869B4425DC36B268AAC134C05811 /* REACondNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACondNode.h; sourceTree = ""; }; + A45F0030699924CE63A3BE1A1E04032C /* react-native-document-picker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-document-picker-dummy.m"; sourceTree = ""; }; + A472B29A06F533DC8055155CB0C7DA06 /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; + A47DC66E549832DB7131B4082C3744CD /* ios_time.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = ios_time.png; path = docs/images/ios_time.png; sourceTree = ""; }; A4B5638048C9BE689A53D2981A56EE93 /* FIRInstanceIDAuthService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDAuthService.m; path = Firebase/InstanceID/FIRInstanceIDAuthService.m; sourceTree = ""; }; - A4C26C6A086FE97D34ECA021258C2368 /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; A4CCD66701BA3DC52D7F6038E6A0FE21 /* SDWebImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.xcconfig; sourceTree = ""; }; - A4CE0674C2BBE6BF5B371ADA74A89652 /* RCTGIFImageDecoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTGIFImageDecoder.m; sourceTree = ""; }; + A4F5A1E99FA7D42C489D0381E573C849 /* RNBridgeModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBridgeModule.m; path = RNNotifications/RNBridgeModule.m; sourceTree = ""; }; A5018CAA450033C9F40CBBDC23FA4A74 /* Crashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Crashlytics.h; path = iOS/Crashlytics.framework/Headers/Crashlytics.h; sourceTree = ""; }; A504DDAED24ACC8CF4D4D4E69E078BAA /* nanopb.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.xcconfig; sourceTree = ""; }; A54A0AB081F02B68C732C27229CC546A /* SDImageCodersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCodersManager.h; path = SDWebImage/Core/SDImageCodersManager.h; sourceTree = ""; }; - A54A2C874DBDF53D30E7B00C51E872E6 /* RCTKeyCommandsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandsManager.m; path = ios/KeyCommands/RCTKeyCommandsManager.m; sourceTree = ""; }; - A59C301473B1E1E55A34B7372D5F6304 /* RNFirebaseMessaging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseMessaging.h; sourceTree = ""; }; - A5ABA0E10FE37349D53EF47074C017B0 /* ARTShape.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShape.h; path = ios/ARTShape.h; sourceTree = ""; }; - A5C5AA0F62E63156EFCEC5C452B46EE3 /* EXUserNotificationPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXUserNotificationPermissionRequester.h; sourceTree = ""; }; + A5655AC0642AB47E0696586F98F9EB9A /* QBImagePicker.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = QBImagePicker.storyboard; path = ios/QBImagePicker/QBImagePicker/QBImagePicker.storyboard; sourceTree = ""; }; + A5783075A6C9B523DDA3C0B60647B0FD /* RNBootSplash-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNBootSplash-dummy.m"; sourceTree = ""; }; + A595B6DD138E016E5D80F615167C7FCB /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; + A5F862DE55B8DAE16E05BE2AD7B275CE /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + A615973B85BA181006E0063EBEE40504 /* EXImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXImageLoader.m; path = EXImageLoader/EXImageLoader.m; sourceTree = ""; }; A6279E1E2E3335F1103BFA5A97B32CAA /* cached-powers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "cached-powers.cc"; path = "double-conversion/cached-powers.cc"; sourceTree = ""; }; - A64C866B4047D0514B63E16B07FB086E /* EXAudioSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioSessionManager.m; path = EXAV/EXAudioSessionManager.m; sourceTree = ""; }; + A6455A15BAAEE82FD4F76D0D75A99C21 /* Color+Interpolation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Color+Interpolation.m"; sourceTree = ""; }; + A685EB89558965F941A405C3FAA82EB3 /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; A68E5A9B69A3BA0FD52CAF7A354EC93B /* libReact-RCTNetwork.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTNetwork.a"; path = "libReact-RCTNetwork.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - A6ADF59D1C982FA1E0C05A534D0328D6 /* BugsnagNotifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagNotifier.h; sourceTree = ""; }; - A6B893252A3E1D280DFDFA2CADD8EB30 /* BSGOutOfMemoryWatchdog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGOutOfMemoryWatchdog.m; sourceTree = ""; }; + A693AA61E697173D763FB55F9F925A76 /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; + A6B3BE6B96843EC4E2C030914285AAE3 /* LNAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNAnimator.m; sourceTree = ""; }; A6C7344EA1DD6836B5D82E682D0A59D7 /* NSImage+Compatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSImage+Compatibility.m"; path = "SDWebImage/Core/NSImage+Compatibility.m"; sourceTree = ""; }; - A705E35F333CB64E04A16117FAD3D78E /* ARTShapeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTShapeManager.h; sourceTree = ""; }; - A70AB99DF5F586D96DF4D6112CEAF550 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - A70F77CBF361A7F8726BDF350E3BC69B /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; - A739468F956A599232B619C8C6E0F81C /* RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotifications.h; path = RNNotifications/RNNotifications.h; sourceTree = ""; }; - A7607780AD4D22BE1133EF77012BA770 /* UMBarCodeScannerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.xcconfig; sourceTree = ""; }; - A7B18A8AF8D4C770AB7976F1BD5A587C /* FFFastImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageSource.h; path = ios/FastImage/FFFastImageSource.h; sourceTree = ""; }; - A7B3FE351CD5D079D637B8BC7681CE5C /* RNFetchBlob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFetchBlob.h; sourceTree = ""; }; - A849D6F17D1FCB59C9CE3912E8FECFDC /* UMReactNativeAdapter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.xcconfig; sourceTree = ""; }; + A6F8C6869B72004BE90924A432D55046 /* react-native-video.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-video.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A6FDFA32B8295040197988E798C0AB0D /* REASetNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REASetNode.m; sourceTree = ""; }; + A7046377F97424F11727A7BA72F8F52E /* 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; }; + A728F9090C0195D0BF044B3BC36C5CAC /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; + A75A67682FD28D02E198C5940C1521C6 /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; + A79E5957E608E87CB9A07FB2D9B74357 /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; + A81EA97901E6916351212989A5228AB5 /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; + A826F40E441D4412E32324F91F36CDBC /* RNVectorIcons-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNVectorIcons-dummy.m"; sourceTree = ""; }; A85363A0C59C12E9ABF0D991127F666D /* FIRConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRConfiguration.m; path = FirebaseCore/Sources/FIRConfiguration.m; sourceTree = ""; }; - A86677E63E89F27DFB0A8B995E0C24D0 /* ARTLinearGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTLinearGradient.h; sourceTree = ""; }; - A87A088034D2CEC390DA193A4BB1D57B /* RNFirebaseLinks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseLinks.h; sourceTree = ""; }; + A8602FC077BA48E60F4F61D2627E4B0F /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = ""; }; + A863BA598F51BD9217091846EFC9849D /* RNGestureHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNGestureHandler-dummy.m"; sourceTree = ""; }; A88DF20441288B71F15D147211C1C64B /* SDGraphicsImageRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDGraphicsImageRenderer.m; path = SDWebImage/Core/SDGraphicsImageRenderer.m; sourceTree = ""; }; - A8A1EF5AA6F5AB825D6721E345CD4D02 /* BugsnagCrashReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashReport.m; sourceTree = ""; }; + A89F5903324F1CD3F6DF49F596580EE9 /* RCTImageLoaderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderProtocol.h; path = Libraries/Image/RCTImageLoaderProtocol.h; sourceTree = ""; }; + A8B5C306DE7AF28132B3BAD6F0B04749 /* ARTLinearGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTLinearGradient.m; sourceTree = ""; }; A8C2E718EEB7FC61E0AF4FF7745365F7 /* FIRInstallationsAuthTokenResultInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsAuthTokenResultInternal.h; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResultInternal.h; sourceTree = ""; }; - A8CCE3A8FF1C2BB3A9A71D15A2E11C73 /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; - A93642CD6648E82CEE09E21F713FFDF8 /* RNFirebaseStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseStorage.h; sourceTree = ""; }; - A93D3241B9A61C0E3AF6A18EE3C01E28 /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; - A97027F18F8FAF07D57DEA2C1E8FB7AA /* RNAudio-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNAudio-prefix.pch"; sourceTree = ""; }; + A8EF9ADE40BC7719B21F362BA27D0CE6 /* QBAlbumCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumCell.m; path = ios/QBImagePicker/QBImagePicker/QBAlbumCell.m; sourceTree = ""; }; + A8FEE9E165727EA2834D50BF5CD1A68D /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; + A949256D0826A4CB0C7A208C50FFE3E8 /* BugsnagSessionTrackingApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingApiClient.m; sourceTree = ""; }; + A94EF12DA4840DCF1D416FD566715F02 /* QBAssetsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.h; sourceTree = ""; }; + A9503EF536E523F96203052014C6BAF4 /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = ""; }; + A98B8012F144C30D6A38B0B3B345ADF1 /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; A9916A69A97251C8AA9535F6F70AE9DB /* Pods-RocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.release.xcconfig"; sourceTree = ""; }; A99DA828BE8FDFE29CCA18FF1A666E27 /* token_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = token_enc.c; path = src/enc/token_enc.c; sourceTree = ""; }; - A9B6E9D6AA56035FBC360658336093BC /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; - A9F1ECB1C89116CD06A428B9A667E33D /* REATransitionAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionAnimation.h; sourceTree = ""; }; - A9F3D8CE3395292F3E662044022C8A65 /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; - AA0F52207F6680AC6CC12E0FC833672B /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; - AA3A9F0F068955AF9A1FE1F0F2362AF8 /* RNFirebaseDatabaseReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseDatabaseReference.h; sourceTree = ""; }; + A9A1808533E8B43C330738D66896F12F /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = ""; }; + AA0C881E8B3849CF7F576CD086990F1B /* BSG_KSCrashSentry_MachException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_MachException.h; sourceTree = ""; }; + AA0F80AA3E4AA05D56513CF3F9689879 /* ARTTextManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTTextManager.h; sourceTree = ""; }; AA42C4E98C13EF33E441FE62148783CB /* GDTCORTransformer_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORTransformer_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORTransformer_Private.h; sourceTree = ""; }; - AA4BA87D387B27FC4AAA46D250D21431 /* FBReactNativeSpec-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBReactNativeSpec-dummy.m"; sourceTree = ""; }; AA4F5619775B05EAF3BD82EDACD91B98 /* FIRInstallationsIDController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIDController.m; path = FirebaseInstallations/Source/Library/InstallationsIDController/FIRInstallationsIDController.m; sourceTree = ""; }; - AA55F1D992C614B377DABE157C495CD4 /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; - AA5A5CE2053BA64187F6CAB446174B8D /* REANode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANode.h; sourceTree = ""; }; - AA61D2586DEC3E69D8458995082E1EB2 /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; - AA6AABAC22A2C9E92D9FDC47AE29EF1B /* RNGestureHandlerState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerState.h; path = ios/RNGestureHandlerState.h; sourceTree = ""; }; - AA9EFF9E1F58142D75197642E0C42041 /* BSG_KSCrashIdentifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashIdentifier.h; sourceTree = ""; }; - AAB0BC80CE51061ADC08C2B9A74E6B6D /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxMethod.mm; sourceTree = ""; }; - AAB1736337E11BB29D3ECDF0F8A97C9A /* BugsnagSessionTrackingApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTrackingApiClient.h; sourceTree = ""; }; + AA513D0B104EF704EEBE81CD19D01108 /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = experiments.cpp; sourceTree = ""; }; + AA6B1E1FA365A5D4A33FF54B14068FCF /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = Libraries/WebSocket/RCTWebSocketModule.h; sourceTree = ""; }; + AA7A8DA70DD67769DD72D97B9581CC98 /* RNForceTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNForceTouchHandler.m; sourceTree = ""; }; + AA83C66BCE237C477EF7FA53A9A4C4FD /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; + AA9F7478AADD3DD5BF9F700EE0988915 /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; AAB27BBE32494400507F8652BE36111F /* filters_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_mips_dsp_r2.c; path = src/dsp/filters_mips_dsp_r2.c; sourceTree = ""; }; AAC30C36CEF4ACB54CE1E6E49DCF3E31 /* GULNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetwork.m; path = GoogleUtilities/Network/GULNetwork.m; sourceTree = ""; }; - AAF7B698FAB5610C1CD443A453C33DBD /* RNFirebaseAdMobBannerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobBannerManager.h; sourceTree = ""; }; - AB085A3992ED4E69309C402C9B2F36FC /* RNFirebaseFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFunctions.m; sourceTree = ""; }; + AAD3F86D1EB9651A77F4480C76E25349 /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; + AAE04C89918794FD8CEB73ED15E0C056 /* JSDeltaBundleClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSDeltaBundleClient.h; sourceTree = ""; }; + AB041F83DA810ED8C5D4970D923977BE /* RNDateTimePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDateTimePickerManager.m; path = ios/RNDateTimePickerManager.m; sourceTree = ""; }; AB686584E542E1751A41715CD307E524 /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = SDWebImage/Core/SDWebImageManager.m; sourceTree = ""; }; AB976C1FBBC26BF65B263E79ED2A0E2D /* idec_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = idec_dec.c; path = src/dec/idec_dec.c; sourceTree = ""; }; + AB9ECDA9ED934C3308F87CE97820F9EF /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; + ABA6FA0F42B7391DB470C7DD7C8E6BB1 /* RCTRequired.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRequired.h; path = RCTRequired/RCTRequired.h; sourceTree = ""; }; + ABB251627EA1EA9F5A808A72F87A62A9 /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = ""; }; ABB34BE98015F83F80BC4216458D9FE9 /* FIRInstanceIDTokenManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenManager.h; path = Firebase/InstanceID/FIRInstanceIDTokenManager.h; sourceTree = ""; }; ABBAB6A3B14167BE15806D2D4C391430 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = FirebaseCore/Sources/Private/FIRComponentContainer.h; sourceTree = ""; }; - ABC668DC426F8332543A65F54FCF281D /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.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; }; - ABD85E9167567FF451D281EBDF949DE6 /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; - ABE4F8095AB04F484F6324A95DE94BBF /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModule.mm; sourceTree = ""; }; ABFB99715FD05FB4DB35E948155D825C /* FirebaseCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCore-dummy.m"; sourceTree = ""; }; ABFDDF7E2B4A60522C6DC5915D034318 /* FIRInstallationsAuthTokenResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsAuthTokenResult.m; path = FirebaseInstallations/Source/Library/FIRInstallationsAuthTokenResult.m; sourceTree = ""; }; ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFBReactNativeSpec.a; path = libFBReactNativeSpec.a; sourceTree = BUILT_PRODUCTS_DIR; }; + AC1A12E7FB760FCD374C12F15429F063 /* QBCheckmarkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBCheckmarkView.h; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.h; sourceTree = ""; }; AC3787BF1E614D7EEDF5E1142F012247 /* FIRInstanceIDConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDConstants.h; path = Firebase/InstanceID/FIRInstanceIDConstants.h; sourceTree = ""; }; AC5BBA5FEB96505850A90FBE111B046F /* SDFileAttributeHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDFileAttributeHelper.h; path = SDWebImage/Private/SDFileAttributeHelper.h; sourceTree = ""; }; - AC73932DB13C2FFCB3452CFEEAC680A4 /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; - AC76311E978D58E169180D737A245C5D /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; - AC7A1ABFFBAE81D95EB7D34A5A84E6BF /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = ""; }; - AC93F64C4FF795DA7D71958ED0C0C12C /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; AC94EA86B185F27AFFDD010481B75ED0 /* FirebaseCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.xcconfig; sourceTree = ""; }; + AC97BD08333B42572B8A6C3044067098 /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCExecutorFactory.mm; sourceTree = ""; }; ACAF6F97C93480DEF850BDAA7DE9577A /* Folly.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Folly.xcconfig; sourceTree = ""; }; - ACD2F3F414E96D13C35322EF4AE69D91 /* EXDownloadDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXDownloadDelegate.h; path = EXFileSystem/EXDownloadDelegate.h; sourceTree = ""; }; - ACDC8A7FA99E4FF01F265E0D69134BB5 /* ReactCommon.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.xcconfig; sourceTree = ""; }; - ACEA68F757D72584A695A3324B50BAE5 /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; - AD1462F43B9EA1A2C859223A1FF5567A /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTExceptionsManager.h; path = React/CoreModules/RCTExceptionsManager.h; sourceTree = ""; }; - AD20E09F0FE02C9FAA4E0DDE1869D0BE /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; - AD2CDF92D73070FFB5EE0C531BCFD946 /* UMFontInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.xcconfig; sourceTree = ""; }; + ACD51DA66542BC940D4A5FB04D6C0DAB /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = ""; }; + ACE6509B53357A0C5DADE6031CB9CCCB /* RCTLocalAssetImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLocalAssetImageLoader.m; sourceTree = ""; }; + AD1565950EC44B931A48C481E30CE33C /* React-jsi.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.xcconfig"; sourceTree = ""; }; + AD2713659D9174B0454470119CFAA6D8 /* NativeExpressComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeExpressComponent.h; sourceTree = ""; }; + AD2B06DCAB11F3B99CDEB99300E8B31D /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; + AD3109680E3C1C5D2D4F6F6E043B9C7C /* REAModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REAModule.m; path = ios/REAModule.m; sourceTree = ""; }; AD40A94AE1ADFA1CDF9602BA3B04C90E /* libEXAV.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAV.a; path = libEXAV.a; sourceTree = BUILT_PRODUCTS_DIR; }; + AD4C01981405A7597CB80DEE9DAF3C4E /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; + AD56F36405180E5DBE926AB9B315D565 /* RNNativeViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNNativeViewHandler.m; sourceTree = ""; }; AD5C654D5F9C65609BC75BEDEB1C2EF1 /* SDImageCachesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManager.m; path = SDWebImage/Core/SDImageCachesManager.m; sourceTree = ""; }; AD6234B3E3CB445DBD2389BF9FB6E66F /* GoogleAppMeasurement.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleAppMeasurement.framework; path = Frameworks/GoogleAppMeasurement.framework; sourceTree = ""; }; - AD75891BD7317952B386BB20DB6EC735 /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; - AD9FBA4B78EF69235DD6D73B54188C83 /* RNGestureHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandler.h; path = ios/RNGestureHandler.h; sourceTree = ""; }; - ADB0E98F4BB29FE3E50EACF5482D4E73 /* RNFetchBlobFS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobFS.m; path = ios/RNFetchBlobFS.m; sourceTree = ""; }; - ADE4BB14EF822D38A1B0B6893FC53797 /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; - ADE6781E53EB3E67579C6B6C030FAC93 /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; + ADBB374290ACC42CF28CA9F3155AE096 /* REAAlwaysNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAlwaysNode.m; sourceTree = ""; }; + ADE425CCA9AB4117146451CCF94F2C89 /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; + ADE63674E150D51CE53B28AEFA23359C /* RNFirebase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFirebase.m; path = RNFirebase/RNFirebase.m; sourceTree = ""; }; + ADF925B31FB0D38423440548BFB97E56 /* react-native-keyboard-tracking-view.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-keyboard-tracking-view.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + AE263565EA9A6623E8098BDDC664794C /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = ""; }; AE40F8A55B4E0868CA1A35733818234B /* FirebaseCoreDiagnostics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCoreDiagnostics-dummy.m"; sourceTree = ""; }; AE42AA2FA59AF812E73CBB61E72ECEA8 /* decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = decode.h; path = src/webp/decode.h; sourceTree = ""; }; AE6009DB9E0286F743D5CFA5415F06EF /* F14Table.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = F14Table.cpp; path = folly/container/detail/F14Table.cpp; sourceTree = ""; }; - AE63784DCC7682872AEA595CE8F18A1E /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; - AE6E23B77F7FD55BED26239ACD359A3F /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; AE786E2067197B64CADFCEB08C452C84 /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = SDWebImage/Core/SDWebImagePrefetcher.h; sourceTree = ""; }; - AEC5798F259B20AF35F1CD204E5E88D1 /* BugsnagErrorReportApiClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagErrorReportApiClient.h; sourceTree = ""; }; AF0ED6FD0E89DAD5362477D5AFF91A2E /* alpha_processing_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_neon.c; path = src/dsp/alpha_processing_neon.c; sourceTree = ""; }; - AF2C13F10534DCE134F4B309C3D6B264 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; - AF41A58E42C12B0181094DB4940A2857 /* EXImageLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXImageLoader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; AF56195464AFAF7C34D6F48C7CFF702E /* UIImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "SDWebImage/Core/UIImageView+WebCache.m"; sourceTree = ""; }; + AF56CD8EA9329F7F34CB313BE34EFE3C /* RCTPerfMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerfMonitor.m; sourceTree = ""; }; AF72FD600DE7E2D330BA50F877993E05 /* libUMCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMCore.a; path = libUMCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AF889F654E50953726ACD4B8DCB9B5E7 /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = ""; }; - AF89BE7FDF89C01015A090FDCD1FD7CA /* ARTBrush.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTBrush.m; sourceTree = ""; }; - AF920EA3B184284D2672C0F0AF7BBF13 /* React-RCTVibration.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.xcconfig"; sourceTree = ""; }; - AFB186041139443697595C938D376E59 /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; - AFF34968982BDBCFB8E19B39698372B6 /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; - B006FACD73AA8737DCDB4B87F42C1DCE /* RCTConvertHelpers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTConvertHelpers.mm; sourceTree = ""; }; - B022624C369BE97CC1724F31C0B7275E /* REACondNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACondNode.h; sourceTree = ""; }; + AFAAD27A524D6E425C12216C7F486100 /* RCTNetInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetInfo.h; path = Libraries/Network/RCTNetInfo.h; sourceTree = ""; }; + AFCB43D3827AE977D3013BE069F70FCD /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; + AFE2B58EC2E3690530A64E04F5FEA198 /* EXVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoView.m; sourceTree = ""; }; + B0211C5BA6C49CB7568A093D135620F4 /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; + B03AEABDDF62B278F296D02437A837D5 /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; B058F035CFD84ECBF8414E4EAE5834FC /* libreact-native-video.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-video.a"; path = "libreact-native-video.a"; sourceTree = BUILT_PRODUCTS_DIR; }; B05C43896E9F95B6A4756C24B12C8DBB /* SDWebImageWebPCoder.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImageWebPCoder.xcconfig; sourceTree = ""; }; + B0A171BA2CE9A319FDABBC541555819E /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = ""; }; B0B214D775196BA7CA8E17E53048A493 /* libSDWebImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImage.a; path = libSDWebImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; + B0C40474532710B4EDDFFA5135339F53 /* ios_date.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = ios_date.png; path = docs/images/ios_date.png; sourceTree = ""; }; B0C730BFACECB7606E3E03C1D15A4BA2 /* mips_macro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mips_macro.h; path = src/dsp/mips_macro.h; sourceTree = ""; }; - B0D69AB0552916946CFE8510B362A05C /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = ""; }; B0D7F4389F6E6CC404907A69EE8797DE /* vp8_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8_dec.h; path = src/dec/vp8_dec.h; sourceTree = ""; }; - B0FFA6C80F8A67966392DB73CE915CCC /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; B101A21C2A5287012254B056CFA7D4FC /* UIImage+ForceDecode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ForceDecode.m"; path = "SDWebImage/Core/UIImage+ForceDecode.m"; sourceTree = ""; }; B1151875A2C24A78423CC58505388627 /* SDAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImage.h; path = SDWebImage/Core/SDAnimatedImage.h; sourceTree = ""; }; - B124C8D5931E9566A077BB7C089CACD9 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - B12EE8602A823E14F0D9E8BA32311AA1 /* BugsnagSessionTracker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionTracker.h; sourceTree = ""; }; - B13877E87D97E2F8F4EA06D8121A94EC /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B12371BCF0527D2B1FE5682D40D9C1F3 /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = ""; }; + B140EBBBDF37F8A960B5827F2CB7B09E /* React-CoreModules-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-CoreModules-dummy.m"; sourceTree = ""; }; B1481C8FC99F5FE787F9FBBE96DD5E9F /* alpha_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_dec.c; path = src/dec/alpha_dec.c; sourceTree = ""; }; - B16F257C57E497257669CC76BA07B225 /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; + B163ED9C4BB7942553E67152AD19FC89 /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; + B1817447D08BB116B2B09ECD993E1770 /* REAAllTransitions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAAllTransitions.h; sourceTree = ""; }; + B1852732427A5BFF71AFCD908B912F49 /* RCTConvert+ART.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+ART.h"; path = "ios/RCTConvert+ART.h"; sourceTree = ""; }; B18979D7EEF1DB0BD8B390FAE4FA6123 /* vp8l_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = vp8l_dec.c; path = src/dec/vp8l_dec.c; sourceTree = ""; }; - B1B7A66CA40B037C34377CACAECC1D55 /* EXDownloadDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXDownloadDelegate.m; path = EXFileSystem/EXDownloadDelegate.m; sourceTree = ""; }; - B1D848DB6A5AD8268BAB056A588CBF24 /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; - B1D8E53CA06E2FD05334233A34F0A306 /* React-RCTImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.xcconfig"; sourceTree = ""; }; B1E3B9B644AA67562AB8AF3F6ADB7F0C /* FBLPromisePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromisePrivate.h; path = Sources/FBLPromises/include/FBLPromisePrivate.h; sourceTree = ""; }; - B1F80EF5F75C98FB7CEB07165A04BE38 /* REAModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = REAModule.m; path = ios/REAModule.m; sourceTree = ""; }; - B207D4D004C38866ED1F31D7485BF0EE /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; - B214BD9C36501DA0F666AE8B05AD9A4C /* ARTLinearGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTLinearGradient.m; sourceTree = ""; }; - B22482A857E4CE1F9EC4A91267459DEE /* BugsnagCrashSentry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashSentry.m; sourceTree = ""; }; - B22E637E3FC4550D0FEFD5C1684784B4 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - B255B185CBC56817A54E302D79B84A2C /* ReactNativeART.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeART.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B209B9F601D63E666CAD8C90CAC0B43E /* BSG_KSObjC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSObjC.c; sourceTree = ""; }; + B227F9FBEF5FCD2024E1ED599955D36D /* BugsnagBreadcrumb.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagBreadcrumb.m; sourceTree = ""; }; + B24AA181DDDACF562563B87E0E060460 /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = ""; }; + B253C49E623F5F56D28B06A728363F23 /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; + B26961AB7152E0E74BAD19380C69E867 /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; B2910F746BA799CA787EFCE48845B524 /* SDWebImageError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageError.m; path = SDWebImage/Core/SDWebImageError.m; sourceTree = ""; }; B298AD16DF9C7781D252AE8F6F69B0B4 /* common_sse41.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse41.h; path = src/dsp/common_sse41.h; sourceTree = ""; }; - B29E9B69763520242F449457640639CB /* EXAVPlayerData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAVPlayerData.m; path = EXAV/EXAVPlayerData.m; sourceTree = ""; }; + B2A0D22A3DECC27109C0E62487A5D8E9 /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; B2BDA968F3FED747EC612A14381CAFCB /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = "double-conversion/utils.h"; sourceTree = ""; }; - B3690FB9D860840F6DDEEC034869D8BB /* RCTAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedImage.m; sourceTree = ""; }; - B38DB33F670C531001C821BB7D7613C9 /* REAJSCallNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAJSCallNode.h; sourceTree = ""; }; - B39F3EA908B56EC99DADCAF4C1732564 /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Brands.ttf; path = Fonts/FontAwesome5_Brands.ttf; sourceTree = ""; }; - B3D82DD98071E79274A3019802A60E37 /* Color+Interpolation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Color+Interpolation.m"; sourceTree = ""; }; - B42C0EEC2AF787FBF74B907ADF09B977 /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; + B2FF970C74101530C9A7D48B65A4F84C /* BSGSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGSerialization.h; sourceTree = ""; }; + B2FFA88F32071559CBD53527B42B8AF9 /* RNFlingHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFlingHandler.m; sourceTree = ""; }; + B3147B54DEFE43FB858A7D64F5171C34 /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; + B316EE8749A03932D358C95F9114570E /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = ""; }; + B31E1FEB4913F38A62E60358EB9BCE37 /* RNPanHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPanHandler.h; sourceTree = ""; }; + B321CCACE72FDC621355E383F7664018 /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; + B32D5B813D502A8FD58C0B0A8966E345 /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; + B35987451A3EB17624358086304CB840 /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B38A62D77E3510713ED69055527540B0 /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = event.cpp; sourceTree = ""; }; + B3961133E9C62549A0F7C125B3EEF7E6 /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ModuleRegistry.cpp; sourceTree = ""; }; + B397FBC5CAEDE0C87D6F339BD03B2183 /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = ""; }; + B3EC19732CF8EEFDA9F2B588187D1BE2 /* EvilIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = EvilIcons.ttf; path = Fonts/EvilIcons.ttf; sourceTree = ""; }; + B40BCE5751CB15D9915ED40E54235270 /* BSG_KSSystemInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfo.h; sourceTree = ""; }; + B41185A17A123EA4A1F48887C13EF48D /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; + B42CEE5D4856722450B5802D85420A5E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + B43642FD0E1029A07935168BAA1A3FE9 /* BSG_KSJSONCodec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodec.h; sourceTree = ""; }; B43874C6CBB50E7134FBEC24BABFE14F /* libGoogleUtilities.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleUtilities.a; path = libGoogleUtilities.a; sourceTree = BUILT_PRODUCTS_DIR; }; + B43AF60286E224ACFA145A668E0211C9 /* experiments-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "experiments-inl.h"; sourceTree = ""; }; B43DE523DEC5C5015D53A04238FFF28A /* GoogleDataTransport.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransport.xcconfig; sourceTree = ""; }; - B44622DFEDC8C1E0872F5F31C06B431D /* RNFirebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNFirebase.xcconfig; sourceTree = ""; }; - B45903CF11C39B9FCE0E9E8ED5454364 /* EXImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXImageLoader.h; path = EXImageLoader/EXImageLoader.h; sourceTree = ""; }; + B44A94BD5E5C4FA747BAE1692543611B /* rn-extensions-share-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-extensions-share-prefix.pch"; sourceTree = ""; }; + B472997F9BA4ED98BA2A1E2F65256632 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + B48EC1054F17F4B28C2DA20FE8DF6D50 /* EXAV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAV-dummy.m"; sourceTree = ""; }; B491F35981D199A9F597FA6ADB1CDADD /* bit_reader_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = bit_reader_utils.c; path = src/utils/bit_reader_utils.c; sourceTree = ""; }; B49950F25B4587A0F1428A0FF4D062F1 /* SDWebImageDownloaderDecryptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderDecryptor.m; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.m; sourceTree = ""; }; - B4998D6EA6CE1D68BCEAE9418CC9E1EA /* ObservingInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ObservingInputAccessoryView.m; path = lib/ObservingInputAccessoryView.m; sourceTree = ""; }; - B4A19504AAFCFCDCAB0D4D298165243D /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; B4A567AE04DB13B59FF8430E58211E82 /* lossless_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_neon.c; path = src/dsp/lossless_neon.c; sourceTree = ""; }; - B4A991087FF6F1448365F884562EF0BB /* rn-fetch-blob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-fetch-blob-prefix.pch"; sourceTree = ""; }; - B4CBF62749100696269A58ABE3AD370E /* RNAudio-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNAudio-dummy.m"; sourceTree = ""; }; + B4C688ACFAAB5C8C2F3F7922A721D3C3 /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; B4E59C34733EDDB63352F51EA330CB81 /* pb_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_common.h; sourceTree = ""; }; - B4E7A8B4EF084DEB4E3DBB9421DF309E /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; - B53D4196483103E20CC3895A19D7515C /* RNFirebaseUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseUtil.h; path = RNFirebase/RNFirebaseUtil.h; sourceTree = ""; }; + B4F2B2382DC297766F83388DBE6A9689 /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; + B5218BA52902DA678B5816D60E5C2B27 /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = ""; }; + B55CACA6C91A7C67EF1D293C012BE983 /* REANode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REANode.h; sourceTree = ""; }; B5609AB6E46F0A418839F14921E70AE4 /* io_dec.c */ = {isa = PBXFileReference; includeInIndex = 1; name = io_dec.c; path = src/dec/io_dec.c; sourceTree = ""; }; - B574A2614695898261919756FB40E3D9 /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - B59940FDE0B917FE2080F8206495404A /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B57D43FA12903105F3A9F573F3EE96A9 /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = ""; }; + B59B706804D65D8A250DA137FCC9B138 /* RNCAssetsLibraryRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAssetsLibraryRequestHandler.m; path = ios/RNCAssetsLibraryRequestHandler.m; sourceTree = ""; }; B59C6445493BACD5876AA3D8176366EB /* cost_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_neon.c; path = src/dsp/cost_neon.c; sourceTree = ""; }; - B5AD579CF7B8D3A6341104D6D503EBCB /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; B5C4CF7EEBB56E009C17E4CB2CDCD303 /* dec_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_msa.c; path = src/dsp/dec_msa.c; sourceTree = ""; }; + B5CC36CEC47C85A96A7807D3215B2C99 /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevSettings.h; sourceTree = ""; }; + B5D0F0CB7563A5D8E055CE05B4F8A3A2 /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; B5D32CE02F68EE345F9101FFAF7E3476 /* Pods-RocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.debug.xcconfig"; sourceTree = ""; }; + B5F7B9DC5DBD0A04BB45CF9ABB1FE54F /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; + B5FE8F6B235D306BBC8054E5BCA09CDE /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; + B6173241AB27379E5EC529D7392BA90A /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; + B62FD50583D50449408683A8512DD85D /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-posix.cpp"; sourceTree = ""; }; B64A61A851185348B2695008405AD490 /* GULMutableDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULMutableDictionary.h; path = GoogleUtilities/Network/Private/GULMutableDictionary.h; sourceTree = ""; }; B65D1E0F95214E2E1AC4F513C1753CC7 /* Pods-ShareRocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ShareRocketChatRN-resources.sh"; sourceTree = ""; }; - B666367F2AEF02583A749EBEB324CAE6 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + B65DD7A796FA1FE4E5337786362D6ADF /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; B68868E9598353F7206899DB35AA264C /* fixed-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fixed-dtoa.cc"; path = "double-conversion/fixed-dtoa.cc"; sourceTree = ""; }; - B69802FE5D6973E0F3F74B9BA5769C1E /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; + B6983AF95B39257FA2BE471713F402B1 /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; + B6A35BC8425A69E745CA3D09657EF2EA /* REAJSCallNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAJSCallNode.h; sourceTree = ""; }; + B6B1D9D2E4B60BD628785C1C0FD559AF /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; B6DAE9177A3C3A2B93422B1382202FF6 /* SDImageGIFCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGIFCoder.m; path = SDWebImage/Core/SDImageGIFCoder.m; sourceTree = ""; }; - B6E7F6CFF7243FCCB557211BFBC39627 /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; - B6FCCC857829E3AADFB1FD2840A10FC9 /* BSG_KSCrashState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashState.h; sourceTree = ""; }; - B6FF46DC4869A47D4B1A79A2F7D9FCE1 /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = ""; }; - B70675BF0C1999E6AEA7FB2565BD14B1 /* RCTRequired.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTRequired.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B70F154A574728B8D4C1C0B9438FF4B3 /* FBReactNativeSpec.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.xcconfig; sourceTree = ""; }; B72D2A1AFE5D8CB8AE76AADD8B87B42B /* pb_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_decode.c; sourceTree = ""; }; - B7306BA5C2451AA1BBB2567333902B39 /* BSG_KSCrashSentry_NSException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashSentry_NSException.m; sourceTree = ""; }; - B731E1D065FE038F0659D216D2F696DA /* RNUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNUserDefaults.h; path = ios/RNUserDefaults.h; sourceTree = ""; }; - B74F33AD034F479DC84E3E7D503C826C /* RNJitsiMeetView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNJitsiMeetView.h; path = ios/RNJitsiMeetView.h; sourceTree = ""; }; - B75027B3D631BBE631033FCE88791895 /* LNInterpolable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNInterpolable.m; sourceTree = ""; }; - B759F1B53D8E8BC2586922278DA8B9C3 /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = ""; }; + B7339489EE324E550C089F6B24D990FD /* BugsnagSink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSink.m; sourceTree = ""; }; + B7502A35843D4D02AE02AA4D6FCBEC4D /* RNFetchBlobRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobRequest.m; path = ios/RNFetchBlobRequest.m; sourceTree = ""; }; + B751636E9EB237E78796852019202781 /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; + B7550E92A5666A5FC9463EE29F908187 /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; + B758A346013E4A3F52D56087B78F9A83 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; B75A261FE3CE62D5A559B997074E70FC /* libreact-native-background-timer.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-background-timer.a"; path = "libreact-native-background-timer.a"; sourceTree = BUILT_PRODUCTS_DIR; }; B7619685EB70998E0F7EC8865DDD7D94 /* SDInternalMacros.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDInternalMacros.m; path = SDWebImage/Private/SDInternalMacros.m; sourceTree = ""; }; - B773A8910CCA99ECC89E2A7DA066B7E2 /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; - B78920E7F8B47FA8C28F5FA317E1BC35 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - B78E97CB66220ED2682AD60E2CFDE2C9 /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = ""; }; - B7A2694A8E0D25AA9F3005F9D6B28B45 /* NSError+BSG_SimpleConstructor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSError+BSG_SimpleConstructor.m"; sourceTree = ""; }; - B7AF00286728B672293B3F31A09F7860 /* RNBootSplash.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNBootSplash.xcconfig; sourceTree = ""; }; - B7C3902228E8998D81D865078AEF626D /* 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; }; - B81C124EE9C0D6157ED947AA568C3E8C /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = ""; }; - B836C4150968AB6CB201FDBEAF345D62 /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = ""; }; - B8490484C45BA8C5C92E38C7DC4749EB /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; - B8584EC9E59E9179ECDECB66BCB46139 /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; - B890DFC7A7421FAC89BAB926874BFA9F /* RootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RootView.h; path = ios/RootView.h; sourceTree = ""; }; - B8ADFC3CD709A9C5292EE0E5EAD33C55 /* Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Private.h; sourceTree = ""; }; + B79A67A682917EF788EB5DD261DEE70B /* RNBackgroundTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBackgroundTimer.h; path = ios/RNBackgroundTimer.h; sourceTree = ""; }; + B8381E2B75F16FCF9DAF41EE8E3433C8 /* EXHaptics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.xcconfig; sourceTree = ""; }; + B85468D6D253824D2ADD8B2A0CB3AA2C /* ARTShape.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTShape.h; path = ios/ARTShape.h; sourceTree = ""; }; + B8913B693F912E6D545EDCBEB75161E5 /* UMErrorCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMErrorCodes.h; path = UMCore/UMErrorCodes.h; sourceTree = ""; }; B8B19D7098E1C36EB82CCA7E162D0984 /* glog.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = glog.xcconfig; sourceTree = ""; }; - B8BA6701BD8E46A84B9F07746385533E /* RNPushKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKit.h; path = RNNotifications/RNPushKit.h; sourceTree = ""; }; - B8DEA0D80A18F8535E7EC25234F2FD81 /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; - B925713E8B07BC43A6B251B538AD3EA9 /* RCTKeyboardObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyboardObserver.m; sourceTree = ""; }; - B955349B39533145CDAE10EE18937134 /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; - B9CEAB2F86E4F088A02274C1414DE8FB /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; - B9E241B8F182966DB6257F6EF2DF8C42 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = ""; }; + B8B19FA68A32FFF3FCFA024A6DA603B3 /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; + B8F82E2568CD387AE71DA33BE9E526FA /* RNUserDefaults.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNUserDefaults.xcconfig; sourceTree = ""; }; + B98282A370896C9527343A2802D27930 /* BugsnagNotifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagNotifier.m; sourceTree = ""; }; + B98F6E1E04F546506E19AD6C416C6AF0 /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = ""; }; + B99B50260D3C74CC0BE95A439511508F /* RCTConvert+REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+REATransition.m"; sourceTree = ""; }; + B9BB21426599D632F7A2A249838F9D75 /* EXImageLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXImageLoader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B9DEA0BF498BD7640F87AD72AD51B60C /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; BA065BF226D7D8BE5F672D1B12FD2519 /* FBLPromise+Retry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Retry.m"; path = "Sources/FBLPromises/FBLPromise+Retry.m"; sourceTree = ""; }; - BA2876B6CECEBADC043329575B142A92 /* BugsnagCollections.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCollections.m; sourceTree = ""; }; - BA39FCE7B7D6C4634079B04809C889B0 /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; - BA437AC0E4FDCFCC84857B227572A0F9 /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = ""; }; - BA43FE43EA638C45DED55CAC3B1FDC93 /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; - BA4535A50B3AB47322F5447F92AF1689 /* BugsnagApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagApiClient.m; sourceTree = ""; }; - BA75D4667D10405301A74A8CA846A155 /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = ""; }; - BA78A1772740B4E478C916E6E8A882DE /* BSG_KSJSONCodec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodec.h; sourceTree = ""; }; - BA926B243299D2DDF430FA7DAF44B8E4 /* ARTContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTContainer.h; path = ios/ARTContainer.h; sourceTree = ""; }; + BA73AE15A22623217F88D04BA9686F52 /* RCTTiming.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTiming.m; sourceTree = ""; }; + BA828D46422211BE8175BA377FE611A2 /* RNGestureHandler.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNGestureHandler.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + BA901DC34FE6CC5679CFCB66E02766D6 /* RNCWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWebViewManager.h; path = ios/RNCWebViewManager.h; sourceTree = ""; }; BA97DE2A8EF2E1432F205EFE746D7873 /* GDTCORPrioritizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORPrioritizer.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORPrioritizer.h; sourceTree = ""; }; - BAA6FC1F2189DF65B88AE20FCC0882CF /* RCTSettingsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSettingsManager.m; sourceTree = ""; }; + BB0569876AE1A1CCE44FAD816F996875 /* FBLazyVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyVector.h; path = FBLazyVector/FBLazyVector.h; sourceTree = ""; }; BB117D47D780DC71082229222E18A9BB /* lossless_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc.c; path = src/dsp/lossless_enc.c; sourceTree = ""; }; + BB1D0FEDBCF1E8FB20711DA061393254 /* ARTNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTNode.h; path = ios/ARTNode.h; sourceTree = ""; }; + BB2398BE031D52DFDEFD4D59EED50148 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; BB3994268A3900BB3EC0B6E41C8ACEEC /* RSKTouchView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKTouchView.m; path = RSKImageCropper/RSKTouchView.m; sourceTree = ""; }; + BB42A1E41CF00DC707700CBBB3D7BD80 /* FFFastImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageView.m; path = ios/FastImage/FFFastImageView.m; sourceTree = ""; }; BB473672F668467D6664FFB5D1B0E078 /* DoubleConversion.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DoubleConversion.xcconfig; sourceTree = ""; }; - BB52110DE8E2349D608ED3EB4782BAC7 /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; - BB7FD58A664FF21E433E04797D15A3C4 /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; - BBCF27136550EC50E081875275784C83 /* BSG_KSMach_Arm64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_Arm64.c; sourceTree = ""; }; - BBFCB5E60AC63130656AA75C26A0AA98 /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; - BC031C46A6F57B9D88C6A473D8BC8721 /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; - BC1FDEAA35C7D2C0E5B775568F9E43F5 /* Yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-prefix.pch"; sourceTree = ""; }; + BB715B513540E23DAA9A4BA4892EA4C0 /* REAEventNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAEventNode.h; sourceTree = ""; }; + BB8244700BFF2F265FA42701A0DF2F14 /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = ""; }; + BC28432DB28E26600A79158B20F82B6B /* RNNotificationCenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenter.m; path = RNNotifications/RNNotificationCenter.m; sourceTree = ""; }; BC36EC56CD213D984C4B7F24FD1B9665 /* FIRCoreDiagnosticsInterop.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRCoreDiagnosticsInterop.h; path = Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h; sourceTree = ""; }; BC41853A6450E14F865A02ADC3D019D7 /* anim_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; name = anim_decode.c; path = src/demux/anim_decode.c; sourceTree = ""; }; BC41F4BEFC115303267857B135A144AE /* libUMPermissionsInterface.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMPermissionsInterface.a; path = libUMPermissionsInterface.a; sourceTree = BUILT_PRODUCTS_DIR; }; - BC7FB46749CEB238F31830ACF280624A /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = ""; }; - BC966FD6065991B6F5FDF77BD5F5F17E /* BSG_RFC3339DateTool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_RFC3339DateTool.h; sourceTree = ""; }; - BCCEB59819C9E8AED019EAAA3C0CE568 /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = MethodCall.cpp; sourceTree = ""; }; - BCD608DDFD5C535FD5785D87369EF7F3 /* UMAppLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMAppLoader-prefix.pch"; sourceTree = ""; }; + BC4ECBA43FFB94EB36805D34F4A53EF5 /* RCTNetInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNetInfo.m; sourceTree = ""; }; + BC53B760117C17C307A13435465215B7 /* RCTWebSocketModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketModule.m; path = Libraries/WebSocket/RCTWebSocketModule.m; sourceTree = ""; }; + BCC1509149AD55868B0A8C7F4BA1936A /* REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransition.h; sourceTree = ""; }; + BCC85C917F9308976AC6ED6C364D618A /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; BCDC1F0FF0B1E2E4C213D78D24F0F9CD /* GDTCORPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORPlatform.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORPlatform.m; sourceTree = ""; }; - BCF2345A2EA02A64F30B955F622EF579 /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; - BD120D0B9EBE42B9FF56074133CF8095 /* ARTCGFloatArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTCGFloatArray.h; path = ios/ARTCGFloatArray.h; sourceTree = ""; }; - BD163E916006FD43987192845156D8B1 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + BCDDAE6A7E41FD7CA7BB64FD8EB9AEF7 /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = FontAwesome5_Brands.ttf; path = Fonts/FontAwesome5_Brands.ttf; sourceTree = ""; }; + BCEA53C69C3685631F06C2188C4F5F73 /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; + BD2997D0C57A5E9834A3F6E7D5A2CDC9 /* RCTImageStoreManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageStoreManager.m; sourceTree = ""; }; BD2D19249B0E5F20B228D7924697E712 /* FIRInstanceIDTokenManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenManager.m; path = Firebase/InstanceID/FIRInstanceIDTokenManager.m; sourceTree = ""; }; - BD45415BD752013DA3245CAA4A136B95 /* ARTNodeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTNodeManager.h; sourceTree = ""; }; + BD2E48A06D39D267D0A6DE54100BE71A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + BD506638DCCF06CB0434974BFC80C00A /* RNCAppearanceProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProvider.h; path = ios/Appearance/RNCAppearanceProvider.h; sourceTree = ""; }; + BD50BFF576E37A21E3895D00791C062B /* BSG_KSSystemCapabilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemCapabilities.h; sourceTree = ""; }; BD58A224BC63CD1E1BB8C5E6A0AC8AD7 /* FBLPromise+Any.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Any.m"; path = "Sources/FBLPromises/FBLPromise+Any.m"; sourceTree = ""; }; - BD63E6DCF9DC7564F1DAB4031A9B4904 /* RCTRequired.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRequired.h; path = RCTRequired/RCTRequired.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; }; BD7302148CAB101FE972B11E7D6DB858 /* GULSecureCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSecureCoding.h; path = GoogleUtilities/Environment/Public/GULSecureCoding.h; sourceTree = ""; }; - BD9BB7CAAB97EC50B163F88F0959E1C5 /* RCTTypeSafety-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTTypeSafety-dummy.m"; sourceTree = ""; }; - BDB51361ADC5F8786F4F64E304B59085 /* BSG_KSCrashReportFields.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFields.h; sourceTree = ""; }; + BD7860900942ED5179416ACEE2CAC40F /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; + BD7A672E7B21F7C2EB85B2FB241E9428 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + BD8C80B573BB1C2651C058B996D5A569 /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; + BD8DE34D2A5336EA6C638A092D29F16C /* RNDateTimePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePickerManager.h; path = ios/RNDateTimePickerManager.h; sourceTree = ""; }; + BDBB11DCB79434FB7CF2C3941984DB0E /* EXAVPlayerData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAVPlayerData.h; path = EXAV/EXAVPlayerData.h; sourceTree = ""; }; + BDD4EC0D01813218623B5372433F8219 /* RCTImageDataDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageDataDecoder.h; path = Libraries/Image/RCTImageDataDecoder.h; sourceTree = ""; }; BDEA5C38759AB791A74D4E71063DB293 /* RSKImageScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageScrollView.h; path = RSKImageCropper/RSKImageScrollView.h; sourceTree = ""; }; - BDFC9339EE297F17211CC6C8E89DB7F1 /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = ""; }; - BE1D3669F434F811A32D13C0E52FAFE8 /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; - BE1DF413DABB55E0CEEB1B3777FB3199 /* RNPushKitEventListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKitEventListener.m; path = RNNotifications/RNPushKitEventListener.m; sourceTree = ""; }; - BE3583A41F596110133CCBC8DDC04DCD /* RCTImageEditingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageEditingManager.m; sourceTree = ""; }; - BE3BFBECD1E15553378524DA541FB1BF /* BSG_KSCrashDoctor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashDoctor.m; sourceTree = ""; }; - BE6361C2C7231939D52869D9648726BE /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; + BDFE1F387E5F04ED134A6A71124C655C /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; + BE6781874D04D82A9300A2130BD1910F /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; BE710B81BB8CB34A3D44E178C59ED0D3 /* SDImageCacheDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheDefine.h; path = SDWebImage/Core/SDImageCacheDefine.h; sourceTree = ""; }; - BE7BC47FCD051102ED6D2BAF207E6472 /* RNCAppearanceProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProvider.m; path = ios/Appearance/RNCAppearanceProvider.m; sourceTree = ""; }; - BE8A10F3D934DBDC54D658272AD09D02 /* RCTImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageViewManager.m; sourceTree = ""; }; BE9A40D3A7B0498886FB7048EF92990B /* FIRCoreDiagnostics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRCoreDiagnostics.m; path = Firebase/CoreDiagnostics/FIRCDLibrary/FIRCoreDiagnostics.m; sourceTree = ""; }; - BE9D0C42DC3FEE44D14FF79EE1BDAFDD /* RCTConvert+REATransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+REATransition.h"; sourceTree = ""; }; + BEA3586451A5731024F262422F2A0E80 /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; BEAA4F63A52753F14D4888D08369618E /* SDMemoryCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDMemoryCache.h; path = SDWebImage/Core/SDMemoryCache.h; sourceTree = ""; }; - BEB35DCAFD0EC01BAA2869190E84779E /* BSG_KSCrashContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashContext.h; sourceTree = ""; }; + BEDD643D44C870406004853F80397131 /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; + BEDE3328BA1A8945076556E42D63F101 /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = ""; }; BF0E8DD8BC7FDA879032926A40B37AA3 /* bignum-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "bignum-dtoa.h"; path = "double-conversion/bignum-dtoa.h"; sourceTree = ""; }; - BF20113E5333E238C790CD7D1BE83741 /* BugsnagReactNative.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BugsnagReactNative.m; path = cocoa/BugsnagReactNative.m; sourceTree = ""; }; - BF271218309EEE07EE2F305F9BD4CA0C /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = ""; }; - BF2ADC54D7E69F18667C6518600088E6 /* Feather.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Feather.ttf; path = Fonts/Feather.ttf; sourceTree = ""; }; - BF3BA0755C19E6724BC80C2500A6D7F0 /* 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; }; - BF520FDCEC159D80E94AF5330E4341AD /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; - BF6063E7F3E500D9B6543D851D611C30 /* 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; }; - BF8CBE83E30879887DB3CF9E8377D2A3 /* LNAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNAnimator.m; sourceTree = ""; }; + BF2D6E7BE353183521A57A78A49ADA16 /* REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransition.m; sourceTree = ""; }; + BF447A67C41DB59965B58758672AA97F /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; + BF5624ED36A75321F4F24EAED7A7AF33 /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; + BF6358AB6D9E2F28FC1C6424EDB2840A /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; + BF8953B11CC5C871E31B1265D3E25346 /* RNFetchBlobNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobNetwork.h; path = ios/RNFetchBlobNetwork.h; sourceTree = ""; }; BFA3D1106C1072A2B733533A2E770794 /* Pods-ShareRocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ShareRocketChatRN-acknowledgements.plist"; sourceTree = ""; }; - BFA7CD588CFF3BE372A07F620989FC01 /* react-native-cameraroll-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-cameraroll-prefix.pch"; sourceTree = ""; }; - BFC75BD74E2839F062A16CD3F3ECBDD9 /* EXVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; + BFC24908B59EB8AA5084F7D8299EC4EA /* RNRootView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNRootView-prefix.pch"; sourceTree = ""; }; + BFC4C31FA14EA5D1E5B78F7A8DC28E4D /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = ""; }; BFCE4058442BFB8DEB89BA3F261A76BA /* libRNUserDefaults.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNUserDefaults.a; path = libRNUserDefaults.a; sourceTree = BUILT_PRODUCTS_DIR; }; - BFD250D0AFDA07A5E09D2F7A6DF2AB44 /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; sourceTree = ""; }; + BFDC5015B07AF6726D48629172EF01E0 /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; + C01B4BFAB4AEDF34EF7BBCBB178D7FA7 /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; + C01FB8A779A3445EFD23654B3630937D /* BugsnagMetaData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagMetaData.m; sourceTree = ""; }; C02C313B7B5553296D2F7158CBE25081 /* GDTCOREvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCOREvent.m; path = GoogleDataTransport/GDTCORLibrary/GDTCOREvent.m; sourceTree = ""; }; - C0595D2F60A504CEDCF98DBC6C2E2792 /* RNFirebaseEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseEvents.h; path = RNFirebase/RNFirebaseEvents.h; sourceTree = ""; }; - C05FA934427F21B6B65325D242CAB121 /* REAConcatNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAConcatNode.h; sourceTree = ""; }; + C0515A170A399D7811374BCD654EC21A /* RNReanimated.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNReanimated.xcconfig; sourceTree = ""; }; C06F60B264CEB19482C4DFD3476D64D2 /* FBLPromise+Always.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Always.m"; path = "Sources/FBLPromises/FBLPromise+Always.m"; sourceTree = ""; }; - C09B08B9F9590C063A274292A00ED08A /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; - C0D61DC80278A4BBC9BA7185A8F3A0B1 /* React-cxxreact.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.xcconfig"; sourceTree = ""; }; C0DCE0BB52AF13A0B41211860EA0CDCA /* GDTCCTUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCCTUploader.h; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Private/GDTCCTUploader.h; sourceTree = ""; }; - C1045733D4EEFDFE0FBD40488F4887CD /* RCTTypedModuleConstants.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTypedModuleConstants.mm; sourceTree = ""; }; - C163B02F714E794BE7DAA2AE95177498 /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + C13C31ECD854DA37DE88AE1C00078DA8 /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; + C15DBBB908005ED013E5D85E2446096A /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = ""; }; C17CE26530BAEFDE35C1E982341393BB /* DoubleConversion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DoubleConversion-prefix.pch"; sourceTree = ""; }; - C19448AA604F055B80D33BAE242AE46E /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; + C1A5F8F2DA8110308C5AB74F52C95E76 /* ReactNativeART.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeART.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTVibration.a"; path = "libReact-RCTVibration.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - C1A94EA75A7BA3B0E4302059BCFEB33A /* EXHaptics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.xcconfig; sourceTree = ""; }; - C1BB0714F1D179F05D35A91AD0F7A8AF /* BSG_KSSignalInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSignalInfo.h; sourceTree = ""; }; - C2191B7CF81D4C1F7B3391CDB0A323CC /* RCTActionSheetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActionSheetManager.m; sourceTree = ""; }; - C22718127A43B28BB68438E3B47B6B23 /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = InspectorInterfaces.cpp; sourceTree = ""; }; - C231E24D0601A09B1D661E9021E1FF10 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - C2645E5006C70D6B624147C383C5DD7D /* UMPermissionsInterface-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMPermissionsInterface-prefix.pch"; sourceTree = ""; }; - C27EE54FAFD51156AAA2A03935FFA799 /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; - C2CB94F061FD37D5215385BC264E365C /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = ""; }; - C311D25970FF30E9C7C775ED20FD09A0 /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; + C1B98CFF2D3F49F6DFED56367DEDF379 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; + C1C99350D8A98C5A73C5FED1BFF1B53F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + C1F00D3D631186E5C30E5082F7B76425 /* REACallFuncNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REACallFuncNode.h; sourceTree = ""; }; + C1FCBE451CF25A5140A2A3847F531E84 /* LNAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNAnimator.h; sourceTree = ""; }; + C209D034DDFC1F6D088783677CACB505 /* React-Core.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.xcconfig"; sourceTree = ""; }; + C22B7A513CC428E42255314BBA5921B6 /* RCTWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWeakProxy.h; sourceTree = ""; }; + C24DCC43F7BDC47BC5FBA4D59DAD4650 /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; + C28AD31F48DE2DABE75E803A84132594 /* UMFontInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.xcconfig; sourceTree = ""; }; + C293551CD5204586E6F8D5CB1DAF2BE6 /* Zocial.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Zocial.ttf; path = Fonts/Zocial.ttf; sourceTree = ""; }; + C29F91CE67C0C0BD5E497A29A8AF5C6E /* BSG_KSJSONCodecObjC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSJSONCodecObjC.h; sourceTree = ""; }; + C29FD71196E223C3E2239356CC16DD9D /* UMAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppRecordInterface.h; sourceTree = ""; }; + C2A1342C45B8106215565D675029B241 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + C2E6C2B575F24F9FA7B0F2C3AAEA8577 /* RCTCustomInputController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomInputController.h; sourceTree = ""; }; C31EC300C1418FF40CB367611BE8EB41 /* dec_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_mips32.c; path = src/dsp/dec_mips32.c; sourceTree = ""; }; - C32D7C624A113334D910356C026CFEEB /* ARTRadialGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTRadialGradient.h; sourceTree = ""; }; C33B5059A86C095F0D92336CBCB1F51B /* FIRInstanceIDBackupExcludedPlist.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDBackupExcludedPlist.h; path = Firebase/InstanceID/FIRInstanceIDBackupExcludedPlist.h; sourceTree = ""; }; - C38DADA01589641F9B17088966CE9D3F /* LongLivedObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = LongLivedObject.cpp; path = turbomodule/core/LongLivedObject.cpp; sourceTree = ""; }; - C3A4325D71A2D28D9A420F7F6C4F938D /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; - C3C746432FD60B07CFFBCCDA55698D8F /* react-native-video.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-video.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - C3F873101E68AB7AB6750170F1CC997C /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; - C406F62897E13D577293695761AE8DE0 /* RCTUIImageViewAnimated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIImageViewAnimated.m; sourceTree = ""; }; + C36359EBCDDD39DCBDD63F8A091AF733 /* NSError+BSG_SimpleConstructor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSError+BSG_SimpleConstructor.m"; sourceTree = ""; }; + C3648A8322404CC8C46A79E0F95A315A /* BSG_KSCrashSentry_Signal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Signal.h; sourceTree = ""; }; + C36A46BD905DCD5C55106653B5BB691C /* RNNotificationCenterListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenterListener.h; path = RNNotifications/RNNotificationCenterListener.h; sourceTree = ""; }; + C388D8B8AF0927DDBF721CD4F0BAC23B /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; + C3893067B4ECFFA8C4C9CC8A8D5966EE /* RNFirebaseMessaging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseMessaging.h; sourceTree = ""; }; C422929093AA864A077D3201B48F2AD0 /* FIRInstallationsItem+RegisterInstallationAPI.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstallationsItem+RegisterInstallationAPI.m"; path = "FirebaseInstallations/Source/Library/InstallationsAPI/FIRInstallationsItem+RegisterInstallationAPI.m"; sourceTree = ""; }; C4479616B9A8800084821451D7E8362A /* SDImageCacheConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheConfig.h; path = SDWebImage/Core/SDImageCacheConfig.h; sourceTree = ""; }; + C452BF0E9DD1DEB06C0598D01E65657B /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; C4539C0D5139FA433EA40799F1AC83A5 /* SDAsyncBlockOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAsyncBlockOperation.m; path = SDWebImage/Private/SDAsyncBlockOperation.m; sourceTree = ""; }; + C45E958F1FD041D1C66D329032EC24E0 /* RNFirebaseInstanceId.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseInstanceId.m; sourceTree = ""; }; C460DA70768C93ED1BE2D6D8F8EB4963 /* FIRDependency.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDependency.m; path = FirebaseCore/Sources/FIRDependency.m; sourceTree = ""; }; - C4AAEC6AF84E482663BD55BB28C83C26 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - C4C82D0794DA98040D5A7DCF691567B8 /* BSGConnectivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGConnectivity.h; sourceTree = ""; }; + C48A8F36129D6901E54E9A08ED6D9BC0 /* REAClockNodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAClockNodes.m; sourceTree = ""; }; + C49D225F6CF89085189D3E1775CD8333 /* ARTText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTText.m; path = ios/ARTText.m; sourceTree = ""; }; C4FFE67DC13EEC2EBC31ADD1DEBB2A2A /* FIRInstallationsStoredAuthToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStoredAuthToken.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredAuthToken.h; sourceTree = ""; }; - C5091C0A789A5722B65B44F7A1254FCB /* BSG_KSSingleton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSingleton.h; sourceTree = ""; }; - C526010A82F51F0160BEC5A43310ECB3 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - C564AA6335B6EBC9C23AFBD015DF763D /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; - C56EBCBD2F78347186FCB4464E9090B1 /* RNFetchBlobConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobConst.h; path = ios/RNFetchBlobConst.h; sourceTree = ""; }; - C573F9839F0DFBBBF0B71A04BC958D8F /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; - C5A4190ED83DB8EAE5795F16E262F348 /* BugsnagErrorReportApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagErrorReportApiClient.m; sourceTree = ""; }; - C5A6DF8A0837F3F1166E6F512F59A7B8 /* RNBackgroundTimer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBackgroundTimer.h; path = ios/RNBackgroundTimer.h; sourceTree = ""; }; - C5B2DD665C499EAED2754CDDD7C983D0 /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; - C5E8BA85ED91CBA07263CB3BC35294D8 /* REAFunctionNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAFunctionNode.h; sourceTree = ""; }; - C5F1A58BB6ED4B9FA7894540D6B6095B /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; + C5360E5CE48DB05E73CBCFEE94B489CC /* RCTDataRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDataRequestHandler.m; sourceTree = ""; }; + C540F34AA6E51D4B063AADF09A4D7314 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + C54D8CFA029D874C176B40062B3D89CA /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; + C57ADAB61AC6F95EDE1531DCF48B51A0 /* REATransitionValues.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionValues.m; sourceTree = ""; }; + C59A44A3836E48A3D9E63963E2681D6D /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; + C5CA46DC3BAC8E34D065E5D96307C663 /* React-RCTLinking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.xcconfig"; sourceTree = ""; }; + C637E0FACF0DC21188B21A19BE3893CD /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; + C644DF549BD49E875B7C6EAADFC9A82A /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; C65235A5B4462861F568033127D5801F /* dynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = dynamic.cpp; path = folly/dynamic.cpp; sourceTree = ""; }; - C65E211A0633D7CC951D33732CD51F2D /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; - C65F164291E733597EFE8C5446CEB449 /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBundleType.cpp; sourceTree = ""; }; C6624A128D06B1B7C27D2FBFA0584A44 /* upsampling.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling.c; path = src/dsp/upsampling.c; sourceTree = ""; }; - C672F0A851D2744AEC819BE7EB761550 /* REABlockNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REABlockNode.m; sourceTree = ""; }; C67A04FD4DB80B332055C981539D61A1 /* cct.nanopb.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cct.nanopb.c; path = GoogleDataTransportCCTSupport/GDTCCTLibrary/Protogen/nanopb/cct.nanopb.c; sourceTree = ""; }; - C68ECA5B63E304503C023340DB7662D7 /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; + C69C04ADD9CF573C52C251C1A991FF4D /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; C6A63FCD6FAFEE69391E5C3FC275512F /* SDWebImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImage.h; path = WebImage/SDWebImage.h; sourceTree = ""; }; + C6A939BA0F9D37FB4EF4843C9BDD1A17 /* UMAppLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMAppLoader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; C6C1424961A6648F4F404DB4D5B51284 /* PromisesObjC-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PromisesObjC-dummy.m"; sourceTree = ""; }; + C6CB42DCB25CE96E7B610081A0C9032A /* ARTShape.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTShape.m; path = ios/ARTShape.m; sourceTree = ""; }; + C6CCFD413FEFB4F283862EE812234243 /* UMAppLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMAppLoader-dummy.m"; sourceTree = ""; }; + C70418FD985ABB340521F3E3B73FD6B9 /* BugsnagHandledState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagHandledState.h; sourceTree = ""; }; + C71A357C4C3990C9352DAA14BD0A62E1 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; C74C60148A4948BAD446E2F2B11586EB /* dsp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = dsp.h; path = src/dsp/dsp.h; sourceTree = ""; }; + C7515F3955A7A7A6F1E0A8089381F968 /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = Libraries/ActionSheetIOS/RCTActionSheetManager.h; sourceTree = ""; }; + C759BECA96DBE8903C63C266DAEE490D /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXAV/EXAudioRecordingPermissionRequester.h; sourceTree = ""; }; C75A86B18664AF17C832083530EBC07C /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = src/raw_logging.cc; sourceTree = ""; }; C75F6B7CCC80F365375AE3D64978BE9F /* utilities.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utilities.cc; path = src/utilities.cc; sourceTree = ""; }; - C7697D177A9AC5B3305785040048B838 /* BSG_KSCrashC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashC.h; sourceTree = ""; }; C777CF2FB1E39A45CBBDB54E8693F471 /* libRNReanimated.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNReanimated.a; path = libRNReanimated.a; sourceTree = BUILT_PRODUCTS_DIR; }; - C77C24556A53C47DF40E0A8E02AD3723 /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; - C789D6FA9773A57091FEF46BF5B246F2 /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = ""; }; - C7A3ACA942980704A89C6E5CC3219F2E /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; - C7D7B4FBE8105B8A8F9749C0DE0CC4E1 /* BSG_KSCrashReportStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportStore.h; sourceTree = ""; }; + C78CF85D200C3733B1D747C9702711F1 /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = ""; }; + C7B64314C69A8832898BAE08194AC9B9 /* RNGestureHandlerDirection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerDirection.h; path = ios/RNGestureHandlerDirection.h; sourceTree = ""; }; + C7C0DDAD43DCB0C5B0E28964FBD037BE /* UIResponder+FirstResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIResponder+FirstResponder.h"; path = "lib/UIResponder+FirstResponder.h"; sourceTree = ""; }; C7EFB60008DF9B71E0BF22DE8B9F1110 /* FIRInstallationsStoredItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStoredItem.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStoredItem.m; sourceTree = ""; }; - C814CFC1A87CD8295FCE71C6CCC1F35C /* RNFirebaseMessaging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseMessaging.m; sourceTree = ""; }; - C82F5DA02C568BB4C4C5400DD44F5A00 /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBigString.cpp; sourceTree = ""; }; - C83A0AF41DFE9DDFD36003B5BB0ED509 /* RNCommandsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCommandsHandler.h; path = RNNotifications/RNCommandsHandler.h; sourceTree = ""; }; - C847E5C297D047C9C5486ED523FB0FB6 /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = ""; }; - C879CF5F9F3F504690C24C4DD70A20A5 /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = ""; }; - C883296A23EF56DBAACC037EB2F126E6 /* 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; }; + C7FD02188CDAF5EB23CBB76EED51035B /* ARTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTSurfaceView.h; path = ios/ARTSurfaceView.h; sourceTree = ""; }; + C80725470BFDE1260F794A5179DD62A2 /* BSG_KSBacktrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSBacktrace.h; sourceTree = ""; }; + C8648AE914FA3B915EDC121CDE3F064B /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; + C89485CBD68603701DFD1CF78BD93BCC /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; + C8A1AD0ABD4B51F526A2B68A27A82E6E /* RNLongPressHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNLongPressHandler.m; sourceTree = ""; }; C8AAC00DA3B23BFCDC15277B87A9557B /* GULOriginalIMPConvenienceMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULOriginalIMPConvenienceMacros.h; path = GoogleUtilities/MethodSwizzler/Private/GULOriginalIMPConvenienceMacros.h; sourceTree = ""; }; - C8C4F6CD61633AE4D2DF0A28EF27B590 /* RCTWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWeakProxy.h; sourceTree = ""; }; - C8EFC9FC0F04542A0C0EC77613AF1962 /* ReactNativeART-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeART-prefix.pch"; sourceTree = ""; }; + C8CED9B8885A6D580D6E754E1FE18F32 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + C8FA897C0F8EC6BD805E0F68B392A931 /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = ""; }; + C8FECFA964F448691E08DBF24527F38B /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; C9483040D5F6D422F682396B87AF87D3 /* alpha_processing_sse41.c */ = {isa = PBXFileReference; includeInIndex = 1; name = alpha_processing_sse41.c; path = src/dsp/alpha_processing_sse41.c; sourceTree = ""; }; - C962AADFCD1221DD7497DC79B7A37C50 /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModuleManager.mm; sourceTree = ""; }; + C958BEB0EE0CA981708C7227698F7D9B /* RNFirebaseAdMobBannerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMobBannerManager.h; sourceTree = ""; }; + C95C4506AB6B5CFC28D1AEDBD48CAF91 /* BSG_KSCrashSentry_CPPException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_CPPException.h; sourceTree = ""; }; + C972750A84A0F589238CF3C40CA01ACC /* LNInterpolable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LNInterpolable.m; sourceTree = ""; }; C98669397B6EB380F73981625F007E41 /* SDWebImageCacheSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheSerializer.m; path = SDWebImage/Core/SDWebImageCacheSerializer.m; sourceTree = ""; }; - C996A6E63A68DF84911C919C171BE0CD /* ARTRenderable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTRenderable.h; path = ios/ARTRenderable.h; sourceTree = ""; }; C99B6ED7E39443CBF47A64AE5D60CD8E /* FIRInstallations.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallations.h; path = FirebaseInstallations/Source/Library/Public/FIRInstallations.h; sourceTree = ""; }; - C9A1BDEB848A1F99DCC1C09C349EC3D3 /* QBAssetsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetsViewController.h; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.h; sourceTree = ""; }; C9C21A13DD4599456884602B0D4C6757 /* RSKImageScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKImageScrollView.m; path = RSKImageCropper/RSKImageScrollView.m; sourceTree = ""; }; - CA0884EEE65265D9C1173315898C715F /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; - CA09E0CE1A07741A4401199479C0941E /* BugsnagReactNative.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BugsnagReactNative.xcconfig; sourceTree = ""; }; - CA1B3E1BE6099C5ACCEF3A771967F89B /* BSG_KSMach_x86_64.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach_x86_64.c; sourceTree = ""; }; + C9D0647297B92E80FC92B2CA069FAB5F /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; + C9E1D8E89A6E01CD8EDDC9390128E289 /* RNFirebase-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFirebase-prefix.pch"; sourceTree = ""; }; + C9E77FEC3EF67F96CC4AC77AB9D73516 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; + C9EE23420BFAC48413A4637E84819DC1 /* RNDateTimePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePicker.h; path = ios/RNDateTimePicker.h; sourceTree = ""; }; + C9EEDC50DC8B5E885F22D39FE6DAFD6D /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; CA21C40AB9E6792C5EB386BCA0C5CF9D /* filters_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_neon.c; path = src/dsp/filters_neon.c; sourceTree = ""; }; - CA2B916AF3E8C706EEE3FCA793E10BE0 /* react-native-keyboard-tracking-view-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-keyboard-tracking-view-prefix.pch"; sourceTree = ""; }; - CA67F08689BB731E0B8CA7E994A94636 /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; - CA805E6377693E69ED26C02F8719CBA6 /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; + CA6146538D9EC08C954D0E457725B2A9 /* UMAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppLoaderProvider.h; path = UMAppLoader/UMAppLoaderProvider.h; sourceTree = ""; }; + CA8EC789129B8AA5C2C6846EF32E95AF /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; + CA9AFC587C2D554D3295F5586D669DF8 /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; + CAA81A8AB89E8C8D069C8BDE6728CC72 /* RNRootViewGestureRecognizer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRootViewGestureRecognizer.m; path = ios/RNRootViewGestureRecognizer.m; sourceTree = ""; }; CAB97B058E412E0CFCBF16E6AD07DCA2 /* SDDeviceHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDeviceHelper.m; path = SDWebImage/Private/SDDeviceHelper.m; sourceTree = ""; }; - CABA644F0321E5D4E71EA4106921CB01 /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; - CAC24283964A041B6B2CF6DE799D797D /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = ""; }; - CAC6941D32D79578AEDB6050C10F403E /* RNEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNEventEmitter.h; path = RNNotifications/RNEventEmitter.h; sourceTree = ""; }; - CAFE35CE5A47DAA149A25AFFFF772FC4 /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; + CAC8F0CFB05A73A670C9E3F2D08A0640 /* FBReactNativeSpec-generated.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "FBReactNativeSpec-generated.mm"; path = "FBReactNativeSpec/FBReactNativeSpec-generated.mm"; sourceTree = ""; }; + CB00B9C1487A989AEB34D4E8BA7371F0 /* REAModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = REAModule.h; path = ios/REAModule.h; sourceTree = ""; }; CB0E66A3C33EB8EEC21616C116ABB4A4 /* GDTCORAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GDTCORAssert.m; path = GoogleDataTransport/GDTCORLibrary/GDTCORAssert.m; sourceTree = ""; }; - CB2FAC3D6885A0D52E1EF69887F9E7BE /* RNFetchBlobRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobRequest.m; path = ios/RNFetchBlobRequest.m; sourceTree = ""; }; - CB341B9DEC90F07ABD0A89BE587702B9 /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; - CB34542CC2217E0DE014FFD843D671F0 /* Octicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Octicons.ttf; path = Fonts/Octicons.ttf; sourceTree = ""; }; - CB3B48E6147457728CB56CE1BA95DF0F /* RNForceTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNForceTouchHandler.h; sourceTree = ""; }; - CB5E95935F2C33DDFF6001A54F399BAB /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; - CB741FE3778527A80CFC0B2A73FD5D32 /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; - CBAB3B1471E3F94BCD38750784E669F6 /* TurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModule.h; path = turbomodule/core/TurboModule.h; sourceTree = ""; }; - CBB61D1C8E5DC016AF00232150B33604 /* BSG_KSArchSpecific.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSArchSpecific.h; sourceTree = ""; }; - CBC62F256D9A8EF420880FB91A287F40 /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = React/CoreModules/RCTImageStoreManager.h; sourceTree = ""; }; - CBD4C75C67DACEA8016654464B69DF3D /* BSG_KSMach.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSMach.c; sourceTree = ""; }; + CBBB145D86C58AAA825852EC498004DD /* android_time.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = android_time.png; path = docs/images/android_time.png; sourceTree = ""; }; + CBC5411ECAAD3F957C8318B46CDAFFB8 /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; + CBC8978F7A2DBF3D6A595470001EB888 /* FFFastImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageSource.m; path = ios/FastImage/FFFastImageSource.m; sourceTree = ""; }; CBD554C9D80E29A82E56D1B7897C0E38 /* rescaler_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_neon.c; path = src/dsp/rescaler_neon.c; sourceTree = ""; }; CC36153E97819CC766DFEB874BBF6500 /* FIRInstallationsIIDTokenStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsIIDTokenStore.m; path = FirebaseInstallations/Source/Library/IIDMigration/FIRInstallationsIIDTokenStore.m; sourceTree = ""; }; + CC3CAF0F65B9E9B29625B2A8D62E6FB9 /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = ""; }; CC558CC663CA045F998F5CA528ADEDB7 /* enc_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = enc_mips_dsp_r2.c; path = src/dsp/enc_mips_dsp_r2.c; sourceTree = ""; }; - CC7D21AC60B2AAB8DE08718F0CF5314B /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; - CCB2A41EEB91EB3807C5482F1A31903C /* FFFastImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FFFastImageView.h; path = ios/FastImage/FFFastImageView.h; sourceTree = ""; }; - CCBC60AE51C7D42660263B60D020BCE6 /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; - CCD877C48A8ABBE187C4342B50541B21 /* RNNativeViewHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNNativeViewHandler.m; sourceTree = ""; }; + CCABB48D087659B9F3108DC2B38CC33D /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; + CCD2A49D0B1F2C6DFB39EC4B6DB2F80B /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; + CCDB866E2441C8D4C615934AE96E2B37 /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; sourceTree = ""; }; CCE13B65AEE9DB27E1676D172D142597 /* FIRErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrorCode.h; path = FirebaseCore/Sources/Private/FIRErrorCode.h; sourceTree = ""; }; CCE294EC7F18FA41E37CBBE707B45FEA /* FIRInstanceIDCombinedHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCombinedHandler.h; path = Firebase/InstanceID/FIRInstanceIDCombinedHandler.h; sourceTree = ""; }; - CCEBFB155CE3EC65C612FD39B65A5D76 /* 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; }; - CD0DCBF9B0CF8C7D468B1236B3A03BB6 /* LNInterpolable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolable.h; sourceTree = ""; }; - CD254CE9CF8E43C6DE245D2EFBB1327A /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; - CD3B1E4836C2B5451865F6CBA58759A1 /* react-native-cameraroll.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.xcconfig"; sourceTree = ""; }; - CD458EFC1C8BFCF2AB63643028A3E32B /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - CD49EF6D76776DC6E5F1F172C0945E8E /* RNFirebaseRemoteConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseRemoteConfig.h; sourceTree = ""; }; - CDA228EE1AA13FB02756455F56CB21E1 /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + CD14C4916843DE205E1E912FA7B8E281 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + CD38BB8B156132FBFC0DEDF194BCF83E /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + CD3BFC7884A73E8842C521A4FC73D14C /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXAV/EXAudioRecordingPermissionRequester.m; sourceTree = ""; }; + CD77225F3389FD634A05B840D1B19DF3 /* BSG_KSDynamicLinker.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSDynamicLinker.c; sourceTree = ""; }; + CD96D51596543F25D4526773885A67DF /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; CDAD3963A0F8EA40EAE6B916D5AA0A1F /* FBLPromise+Await.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Await.h"; path = "Sources/FBLPromises/include/FBLPromise+Await.h"; sourceTree = ""; }; - CE01AF03A65439C83A9931393091FF1C /* UIResponder+FirstResponder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIResponder+FirstResponder.m"; path = "lib/UIResponder+FirstResponder.m"; sourceTree = ""; }; + CDBD1952FFD5475618E10B078F85101C /* RNFirebaseAdMobBannerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobBannerManager.m; sourceTree = ""; }; + CE263CBE0E4D45E11B34822EEB6F179A /* BugsnagSessionFileStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagSessionFileStore.h; sourceTree = ""; }; CE50447D6089FD034C451BE7675B6D7A /* picture_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = picture_enc.c; path = src/enc/picture_enc.c; sourceTree = ""; }; - CE5EA316A2E1C3F6BCEB417F73B7C7CB /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - CE6D4B16FA4BB2AFCB6D2BCD6F485365 /* RCTTurboModuleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModuleManager.h; sourceTree = ""; }; + CE5B2A1B6F1EFD38BF8C4D5052784952 /* UMErrorCodes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMErrorCodes.m; path = UMCore/UMErrorCodes.m; sourceTree = ""; }; CE71CD3D3C773A121030FB81AB751D1A /* GDTCORPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORPlatform.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORPlatform.h; sourceTree = ""; }; - CE9AE7FF8E58CF83EA0A6D584CD74613 /* RNGestureHandlerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerManager.m; path = ios/RNGestureHandlerManager.m; sourceTree = ""; }; - CEDBA84A1F5B47029EDB87F08D3929A7 /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; - CEFD06A3C0255C0DD7E540F9AD5E5E2B /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBox.h; sourceTree = ""; }; + CE73BF668DDC17C0757CADB4332DB252 /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; sourceTree = ""; }; + CEB6F60F08AC675430616A8B7C20CF96 /* BSG_KSCrashType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashType.h; sourceTree = ""; }; + CEEA07457F9F80108524E600457D4058 /* ARTNodeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTNodeManager.m; sourceTree = ""; }; CF05DD10D852093D157806E5E953BD23 /* iterator_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = iterator_enc.c; path = src/enc/iterator_enc.c; sourceTree = ""; }; - CF353E7A44DDBE94363B76364EC14F54 /* RCTConvert+RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+RNNotifications.m"; path = "RNNotifications/RCTConvert+RNNotifications.m"; sourceTree = ""; }; - CF7E45F6AFE55A0A4D7B73EC61614501 /* RNPanHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPanHandler.h; sourceTree = ""; }; - CF834FA050F757363B90E37020E1DDF5 /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; + CF1DA6CA493E93D7AFA97F5096626F49 /* BSG_KSCrashReportFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilter.h; sourceTree = ""; }; + CF229B1B9CD2988E2210AC5E3867FE44 /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = ""; }; + CF4757C5B91E322EFA671FFD409EA3DA /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; + CF616BF6284E7AACECDBB37FA2512B94 /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; + CF81CBD085AB92693642D6E6BC5FD9EE /* RNCSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCSlider.h; path = ios/RNCSlider.h; sourceTree = ""; }; CF993D633A32BC1ADCF4B996EA47AB13 /* FIRInstanceIDCheckinService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinService.h; path = Firebase/InstanceID/FIRInstanceIDCheckinService.h; sourceTree = ""; }; - CFF6C5FEBA77BC2E8951FC79B34E88E0 /* RCTImageLoaderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderProtocol.h; path = Libraries/Image/RCTImageLoaderProtocol.h; sourceTree = ""; }; + CFB77E55364F07756874798EC9AC40C5 /* RNNotificationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationsStore.h; path = RNNotifications/RNNotificationsStore.h; sourceTree = ""; }; D00145960C57E93C0FE7769437FEFA04 /* FIRInstanceIDTokenDeleteOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenDeleteOperation.h; path = Firebase/InstanceID/FIRInstanceIDTokenDeleteOperation.h; sourceTree = ""; }; - D04B7E2613F82221268696643CDF9CC2 /* RNNotificationEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationEventHandler.h; path = RNNotifications/RNNotificationEventHandler.h; sourceTree = ""; }; - D05763399C0C43784190DA57D7339AE6 /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = ""; }; - D0AAE68DD397D2CA1FAE9DF98CD3C212 /* RNSScreenStack.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStack.m; path = ios/RNSScreenStack.m; sourceTree = ""; }; - D0B6EF8F03028FC6F7F2C227AA0305ED /* REACondNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACondNode.m; sourceTree = ""; }; - D0BD5F5B2E797E672656B06E2516C4C5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - D0C142362A2D417012FCB7FD075FCC32 /* EXVideoManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXVideoManager.h; sourceTree = ""; }; - D0C5472A2621B7D14535D32C7F005C79 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; - D0F943C780C47A9EBF2DC56C5DC75B33 /* RNFetchBlobReqBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobReqBuilder.h; path = ios/RNFetchBlobReqBuilder.h; sourceTree = ""; }; + D02ED42A4438E940D0E92D0C69AAD2F9 /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTHTTPRequestHandler.mm; sourceTree = ""; }; + D072AAF75155CF22E0B841DC87AA1FCF /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; D0FE094866BD845597950E5E71ABA095 /* boost-for-react-native.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "boost-for-react-native.xcconfig"; sourceTree = ""; }; - D11352460D45BF5E088E22D1C62A7CAE /* REAOperatorNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAOperatorNode.h; sourceTree = ""; }; - D11686F510A95536BF8A8CDDFC2B6601 /* RNFirebaseAdMobBannerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobBannerManager.m; sourceTree = ""; }; - D155EBCDFBC684096F05862E01325617 /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCExecutorFactory.mm; sourceTree = ""; }; - D1C3728E396239603DE8696250258E58 /* RNDateTimePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDateTimePicker.h; path = ios/RNDateTimePicker.h; sourceTree = ""; }; - D1D920036CBFEB6265368ADF9F6ABB72 /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = ""; }; - D1E699B565C85CBADC8A2C7F7725F5AF /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; - D1EAC7483CC496B324D19A4ED67371BC /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - D213D5F3E331581204D69F5D544E0DB1 /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; - D2152857A727F3E2C909878BE0C4BD3E /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = ""; }; + D10BE9B6DF433AD07B0DDF606D7F2E3F /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; + D11A35222301EF61F70E1A10283069EB /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAppState.h; sourceTree = ""; }; + D135C5009F92091AE2163A9A2E2BE67A /* RNAudio.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNAudio.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D1437B2B40FAF0A9E366B04E4E38E374 /* RNAudio-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNAudio-prefix.pch"; sourceTree = ""; }; + D1652AA28A4E5BB9606FA0F0223880BA /* RNBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNBridgeModule.h; path = RNNotifications/RNBridgeModule.h; sourceTree = ""; }; + D1A4AD2BE6B55C9529F2FC6474C850EA /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; + D1ADC607BB15353F965858ABCFB3CC56 /* UMAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppLoaderProvider.m; path = UMAppLoader/UMAppLoaderProvider.m; sourceTree = ""; }; + D1C21A1963B18619080396F1952EEFF9 /* Entypo.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Entypo.ttf; path = Fonts/Entypo.ttf; sourceTree = ""; }; + D1D8016FFF808566998E371FEB3F3DE0 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; D21939B5F49D3C368E0AE91BCDCB1CF4 /* histogram_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = histogram_enc.h; path = src/enc/histogram_enc.h; sourceTree = ""; }; + D21E43780BF3998101CB499FE552EEC7 /* RNFirebaseFirestoreCollectionReference.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFirestoreCollectionReference.h; sourceTree = ""; }; D2339AD0FFA27A5E25CA38B3E89E724E /* FIRInstanceIDUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDUtilities.h; path = Firebase/InstanceID/FIRInstanceIDUtilities.h; sourceTree = ""; }; + D237A584B9F9D09B744C5B9A291ED87F /* ReactCommon-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactCommon-dummy.m"; sourceTree = ""; }; D2435B61807A015F7C86DCAB5E5A19AC /* vp8li_enc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vp8li_enc.h; path = src/enc/vp8li_enc.h; sourceTree = ""; }; - D27306986FC5408AC3FEF9F3D00DF96F /* BugsnagBreadcrumb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagBreadcrumb.h; sourceTree = ""; }; - D2E953FB7D2B868CC851F5A3913258C6 /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; - D30B2E8BB541572E0CFED72143B2D5FB /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-posix.cpp"; sourceTree = ""; }; - D3166CC11D7171E4EDBB61B8556955AD /* RNVectorIcons-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNVectorIcons-dummy.m"; sourceTree = ""; }; - D3361AEBF5A9BBEC8490AE74D6138124 /* UMErrorCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMErrorCodes.h; path = UMCore/UMErrorCodes.h; sourceTree = ""; }; + D27001C0EE49A2C52AB055D6EE0F0F01 /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; + D27F6811C1E80C2F86BCD041DE4269D2 /* RNGestureHandlerRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerRegistry.h; path = ios/RNGestureHandlerRegistry.h; sourceTree = ""; }; + D28C3C37EFCF29A4649B7A20E82CBEDC /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = ios/RNCWKProcessPoolManager.m; sourceTree = ""; }; + D2915E98F4D3522C540CEB1DAEB4968C /* TurboCxxModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboCxxModule.cpp; path = turbomodule/core/TurboCxxModule.cpp; sourceTree = ""; }; + D29CB606B28145D0F34A30E8E92C3AE6 /* RCTSourceCode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSourceCode.m; sourceTree = ""; }; + D29D20BFE80E1488AD42B308B8135E12 /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = jsi.cpp; sourceTree = ""; }; + D2EB5842AB2F72FCE3166D064FA10F10 /* RNCAppearance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearance.h; path = ios/Appearance/RNCAppearance.h; sourceTree = ""; }; + D322A8477E1753B864B19AED1740C45E /* NativeExpressComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = NativeExpressComponent.m; sourceTree = ""; }; D34AAFE9C37C1A4DC2FFAF19DFF69CDC /* dec_clip_tables.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_clip_tables.c; path = src/dsp/dec_clip_tables.c; sourceTree = ""; }; + D35CE8C23A2ACF2D9D8D4E8E0C72988D /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; D3601FC2175A7805C42496F6D3F25E1D /* GDTCOREventDataObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREventDataObject.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCOREventDataObject.h; sourceTree = ""; }; + D3826D8A27E574463157C55E58AE94AE /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; D3ABC6469D72A242803A91AF2DA0B153 /* FIRInstallationsItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsItem.h; path = FirebaseInstallations/Source/Library/FIRInstallationsItem.h; sourceTree = ""; }; - D3E6D03C20ACECAE030550547CA1E339 /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXAV/EXAudioRecordingPermissionRequester.m; sourceTree = ""; }; - D43239CC218A848CC0C62AF8E7DE48D7 /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = ""; }; + D3B3453CE4DE764804926152E606A99A /* RNFirebaseAnalytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAnalytics.h; sourceTree = ""; }; + D419A92B054E897166C3CEFC94079EF0 /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDeviceInfo.h; sourceTree = ""; }; + D428A5F89B83BAC3FD6FC10F08524F4F /* RNFetchBlobReqBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobReqBuilder.m; path = ios/RNFetchBlobReqBuilder.m; sourceTree = ""; }; D4389EC289745BCEF60BEA7CDAC784D2 /* GULAppDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m; sourceTree = ""; }; D43DE3DC7792E0B353371829F68C0FFD /* Pods-ShareRocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ShareRocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; - D48CC1A2F4DBE99ED25B6AB7A23A80BD /* react-native-webview.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.xcconfig"; sourceTree = ""; }; - D4D3E4C632A4B02346E1FCF568BC9511 /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; - D4D5AA359E271AF660DC523DE65B7185 /* BSG_RFC3339DateTool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_RFC3339DateTool.m; sourceTree = ""; }; - D4D7A183F0626C3DEEF5CC2967FE038A /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; - D5030652B98A84EEF508BD0C799DE7E5 /* BSG_KSBacktrace.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSBacktrace.c; sourceTree = ""; }; + D46C8720FF023E767A3FD73608E6AAFC /* BSG_KSCrashSentry_MachException.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry_MachException.c; sourceTree = ""; }; + D48621AC50DC4D30040BB50CD2442F17 /* ARTNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTNode.m; path = ios/ARTNode.m; sourceTree = ""; }; + D499DB14204DC262235EAD034FA63FC1 /* ARTGroupManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTGroupManager.m; sourceTree = ""; }; + D4A9777CADEB6A3788DB137532CF5E2C /* RNVectorIcons.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNVectorIcons.xcconfig; sourceTree = ""; }; + D4ADE3AF72632200C53653677BCCBAC0 /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; + D4C5DCBD8CFEB2613D8E43206E263F1B /* REAFunctionNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REAFunctionNode.h; sourceTree = ""; }; + D4ECAB3FBF1E5C23384E87E852D246E1 /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; + D514EDE68ECD59E03F9C6FB34661F168 /* RNFirebaseAuth.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAuth.m; sourceTree = ""; }; D525C8CC60B15909F0B82D63E338E963 /* SDImageGraphics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGraphics.m; path = SDWebImage/Core/SDImageGraphics.m; sourceTree = ""; }; D53A23815D628A7C3EFFC59488C8EA44 /* filters_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters_utils.c; path = src/utils/filters_utils.c; sourceTree = ""; }; D53CE5F9F1B3C1396FB3444A3DC670B0 /* FIRInstanceIDURLQueryItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDURLQueryItem.m; path = Firebase/InstanceID/FIRInstanceIDURLQueryItem.m; sourceTree = ""; }; - D545A20954812CF97FA14CE6A6EC31FA /* RNUserDefaults.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNUserDefaults.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - D550DD71459E8D7568326395A7971BDC /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; - D5A49F2B64B42B33B05ABF1023488437 /* RCTNativeAnimatedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedModule.m; sourceTree = ""; }; + D561D4B0BB968F9DDA35A4DE7D69C477 /* RNReanimated-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNReanimated-prefix.pch"; sourceTree = ""; }; + D572767A593EDD6E23A9336C6566817A /* REAJSCallNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAJSCallNode.m; sourceTree = ""; }; D5B3BDB0DF8A0EE45046BCB479E4B62C /* GDTCORDataFuture.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORDataFuture.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORDataFuture.h; sourceTree = ""; }; D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactCommon.a; path = libReactCommon.a; sourceTree = BUILT_PRODUCTS_DIR; }; - D6289D1457043A92CBFCBF02944CE384 /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; - D62F461D0DA61C54FD998895AF0D8F29 /* BSG_KSCrashType.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashType.c; sourceTree = ""; }; + D5CC0DC1CF5E80A3E4FAD91A65678C96 /* EXConstants.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.xcconfig; sourceTree = ""; }; + D5E11F7AC15E70A2FAE36618DDDD535C /* 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; }; + D629257FE572D69ADAC74927CF7D729B /* RNFirebaseAdMob.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseAdMob.h; sourceTree = ""; }; + D63308F085833F5B80CFD4C19FC1B4DA /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCRuntime.cpp; sourceTree = ""; }; D63B972B95C4ACEAA36C351BF1B2CDDD /* SDImageCacheConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheConfig.m; path = SDWebImage/Core/SDImageCacheConfig.m; sourceTree = ""; }; - D659AF6E9E8DECF87C08F270451E7140 /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; - D65D464BFA160C2DAC22A43DA581AEAB /* RNPushKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNPushKit.m; path = RNNotifications/RNPushKit.m; sourceTree = ""; }; + D65ED7023ED69D130708EF8FEC3925FA /* React-jsiexecutor.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.xcconfig"; sourceTree = ""; }; D66719B7E0573E532519532723F67812 /* Assume.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Assume.cpp; path = folly/lang/Assume.cpp; sourceTree = ""; }; - D66B5E4A692DDB48B6E24A697D6489FA /* BSG_KSCrashSentry_CPPException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_CPPException.h; sourceTree = ""; }; - D699B67435944136CAA467F95D3FF0C4 /* advancedIos.md */ = {isa = PBXFileReference; includeInIndex = 1; name = advancedIos.md; path = docs/advancedIos.md; sourceTree = ""; }; + D68D7349299EDC71DB05EB4EB4E8C029 /* LongLivedObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = LongLivedObject.cpp; path = turbomodule/core/LongLivedObject.cpp; sourceTree = ""; }; + D69E6F757132D77434CCCF83F16CEB51 /* BugsnagSessionTrackingPayload.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSessionTrackingPayload.m; sourceTree = ""; }; + D6CCC3839226668399756AA19C5F9EB5 /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; D701D1816B81717849B176050ED98E4F /* FBLPromise+Testing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Testing.m"; path = "Sources/FBLPromises/FBLPromise+Testing.m"; sourceTree = ""; }; D74BB20E1BC0B778FF8CFFA36C0840CF /* rescaler_sse2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_sse2.c; path = src/dsp/rescaler_sse2.c; sourceTree = ""; }; D7593711A2E6EAD105E206B03D6E3616 /* UIColor+HexString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+HexString.m"; path = "SDWebImage/Private/UIColor+HexString.m"; sourceTree = ""; }; - D76353E9B31FDBD0A1036D11A35B0552 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - D763A9AC9FAC548815F93A714B0A32E2 /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = ""; }; D76568A132A5A42C9799FAF84FB8BD09 /* GDTCORStorage_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStorage_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORStorage_Private.h; sourceTree = ""; }; D78FEB55F9E2565E62801C68DC429BCE /* FIRInstanceID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceID.m; path = Firebase/InstanceID/FIRInstanceID.m; sourceTree = ""; }; + D79973939CE8EC7D031363E1E2FC21FD /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; D79E6FEE7691DA5E934AADB1851C0232 /* encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = encode.h; path = src/webp/encode.h; sourceTree = ""; }; - D7F538041CF2C487C74839BB4E2EF1F6 /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = ios/RNCWKProcessPoolManager.h; sourceTree = ""; }; - D7F6B806AC4CE8AFBE23CCE6D12C15B2 /* React-RCTActionSheet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.xcconfig"; sourceTree = ""; }; - D800E2B3FE000AAFFF8124764DAF574B /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; - D812DE14C212897CCAE48C3C86A22F2E /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D79E9727C2F33141B180DBDF92EB47F3 /* RNCAppearanceProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProvider.m; path = ios/Appearance/RNCAppearanceProvider.m; sourceTree = ""; }; + D7A95B257013795111CFA1F1AB3E1273 /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; + D7C7649AFE69309F676CF78B232B1D1A /* ARTNodeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTNodeManager.h; sourceTree = ""; }; + D7D51A791FED6E76B08D4DF61681B7E7 /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; + D814C2EE03734CB4327B241BBB99174D /* react-native-slider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-slider-dummy.m"; sourceTree = ""; }; D8183FDF6CBBC2458D910575E0B9AE45 /* rescaler_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = rescaler_utils.h; path = src/utils/rescaler_utils.h; sourceTree = ""; }; - D85B3B178481AFF3161A0E239507A10C /* BSG_KSString.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSString.c; sourceTree = ""; }; - D877708DFC8875A2D8659AB265506677 /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - D88BB9068AAEF882200E06034A2E98B2 /* ARTSurfaceView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTSurfaceView.m; path = ios/ARTSurfaceView.m; sourceTree = ""; }; - D89A2992BC35577A4DC64CAE8550A305 /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; + D85FDDE6F7D1E0584936A5EC114653D0 /* ReactNativeART-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeART-dummy.m"; sourceTree = ""; }; + D879E3AFB811F795F505E30DA3F55296 /* RCTTypeSafety.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.xcconfig; sourceTree = ""; }; + D87D4BF4E569C615C848E73CD7326793 /* RCTKeyCommandConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandConstants.m; path = ios/KeyCommands/RCTKeyCommandConstants.m; sourceTree = ""; }; + D8806E6C372CF900927E6CE9A7101DAB /* BugsnagReactNative-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BugsnagReactNative-dummy.m"; sourceTree = ""; }; + D88F548D375DB8B478A3622B94B83072 /* ReactNativeShareExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeShareExtension.m; path = ios/ReactNativeShareExtension.m; sourceTree = ""; }; + D89E2A740EBF31F6D63E4CD54C4BD4BB /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; D8ABBD704A725E7E0D996145CBF6F03A /* bit_reader_utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bit_reader_utils.h; path = src/utils/bit_reader_utils.h; sourceTree = ""; }; + D8AE2352033C6004C6B82D705161327F /* RNCCameraRollManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCCameraRollManager.m; path = ios/RNCCameraRollManager.m; sourceTree = ""; }; + D8B3C196C1D0A315CE2BA6A45CECAB7F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; D8DE3BC13CAB60BD0F12942A7720BC23 /* FIRDiagnosticsData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDiagnosticsData.m; path = FirebaseCore/Sources/FIRDiagnosticsData.m; sourceTree = ""; }; - D8EBF5FD098AF611C3BC2F90ED7D8C53 /* RCTVideoPlayerViewControllerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVideoPlayerViewControllerDelegate.h; path = ios/Video/RCTVideoPlayerViewControllerDelegate.h; sourceTree = ""; }; - D8FFC5920FC0235633AB2A50C0700C3F /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; + D8F9BA04E20185B2AE77BF40BA62A7E8 /* EXAV.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAV.h; path = EXAV/EXAV.h; sourceTree = ""; }; + D90DB9772E9FBE6044ED0537B3D578FA /* RNNotificationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationUtils.m; path = RNNotifications/RNNotificationUtils.m; sourceTree = ""; }; D91483DC2ACFBE14D934FB42131A0745 /* webpi_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = webpi_dec.h; path = src/dec/webpi_dec.h; sourceTree = ""; }; D93D3654709D1331D79514EC1B960450 /* lossless_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_mips_dsp_r2.c; path = src/dsp/lossless_mips_dsp_r2.c; sourceTree = ""; }; - D98357BE6E255740903B14E91A93835B /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = ""; }; + D965544614F05819D78EF98836617D24 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nManager.h; sourceTree = ""; }; + D96E9F96EC89E9F9284338352C43C102 /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; D996FB83753842B15AAE13001FED927E /* UIApplication+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIApplication+RSKImageCropper.m"; path = "RSKImageCropper/UIApplication+RSKImageCropper.m"; sourceTree = ""; }; - D9A54AB4A1997122697189E04B718260 /* BSG_KSSystemInfoC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfoC.h; sourceTree = ""; }; D9C3D3CC551D9381EB6D1805585CF24D /* FIRInstanceIDAuthKeyChain.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDAuthKeyChain.m; path = Firebase/InstanceID/FIRInstanceIDAuthKeyChain.m; sourceTree = ""; }; D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsi.a"; path = "libReact-jsi.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - DA0E29BE34AEFDE9C2D97AAB837674FE /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; - DA2D0AAF40394684FCAB3CB2A88A63EF /* RNCAssetsLibraryRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAssetsLibraryRequestHandler.m; path = ios/RNCAssetsLibraryRequestHandler.m; sourceTree = ""; }; - DA5F0022896D247ADE85F1FC69ECDB7C /* RNFirebaseStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseStorage.m; sourceTree = ""; }; - DA6FEACD26AD2407B6B041023035776F /* REAAllTransitions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAAllTransitions.m; sourceTree = ""; }; - DA82FAFB6CA82B371281E4DB9A3EE98F /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPlatform.h; path = React/CoreModules/RCTPlatform.h; sourceTree = ""; }; - DAC279F4E47CB7048005FBC49C4B6F8B /* RNBootSplash-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNBootSplash-prefix.pch"; sourceTree = ""; }; + DA37F07249FFF2BB589D466D199150AB /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = ""; }; + DA5AB0196EA5FF764173A516F590D921 /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = ""; }; + DA744873B7F2AC32520D0FD4D5055112 /* UMTaskManagerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.xcconfig; sourceTree = ""; }; + DA9D022F2DDEB875D1ED5D8A5472F02A /* FBReactNativeSpec.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBReactNativeSpec.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; DAD1EC07061CD01D8DB00C1DF9CBA5B9 /* SDWebImageWebPCoder-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImageWebPCoder-dummy.m"; sourceTree = ""; }; - DB1581503FD52F37AC9575366D47D3DE /* UMPermissionsInterface-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMPermissionsInterface-dummy.m"; sourceTree = ""; }; - DB2062E0D7315AA34648E455A6E299B0 /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; - DB303D5D25308219FA52586D746000CB /* android_time.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = android_time.png; path = docs/images/android_time.png; sourceTree = ""; }; + DB374EFA51479560B62F10435C12AD7C /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; DB4059D2FB364A28E6585D247CD47FBA /* lossless.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = lossless.h; path = src/dsp/lossless.h; sourceTree = ""; }; - DB4B7F718D04544A607726F62CEE62E1 /* EXAV.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAV.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - DB72DE39D34AA04FAB7559A9059240F1 /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; - DBA79DCBFDE0F5CA840BF7EC8649F63B /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCRuntime.cpp; sourceTree = ""; }; - DBB15254A59A603C550DD694CE0479C1 /* api.md */ = {isa = PBXFileReference; includeInIndex = 1; name = api.md; path = docs/api.md; sourceTree = ""; }; - DBEC2CEC9A177E5696E833D65F61FDF0 /* RCTPerfMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerfMonitor.m; sourceTree = ""; }; - DBFFACBDF7FCBBA514D0A627D020879F /* BugsnagSink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagSink.m; sourceTree = ""; }; - DC17CCAE1DCEE23AC42BC149FE3A64A7 /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - DC24A7E89EB53B595EF360D6C42ADF3D /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; + DB5FE450AAB53AADE884BA269A897227 /* ARTRenderable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTRenderable.m; path = ios/ARTRenderable.m; sourceTree = ""; }; + DC038EAD706B8803534A159BF2D184F0 /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; + DC23F2A6776968AC25F6B3A06A87CADB /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; + DC37764363A76FC196073D8917B4584C /* RNCAppearanceProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCAppearanceProviderManager.m; path = ios/Appearance/RNCAppearanceProviderManager.m; sourceTree = ""; }; DC3FBA3E5B2AE0036A215BD1C8E37D31 /* ColdClass.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ColdClass.cpp; path = folly/lang/ColdClass.cpp; sourceTree = ""; }; - DC4479DD14256D476C9D0287D63ACBDF /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; + DC7329CA9428EC0F785B6A190B581E9E /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; + DC7A46600FBDC9BC873D1E50C0822400 /* REATransitionValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionValues.h; sourceTree = ""; }; DC834FE770DBAFD4CAD544AB5F592ED4 /* FIRInstallations.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallations.m; path = FirebaseInstallations/Source/Library/FIRInstallations.m; sourceTree = ""; }; + DC92164D6BFC49E2D478426F521D30FE /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = ""; }; DCA1074616EEF1BC09293FE2105C9CFC /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "SDWebImage/Core/UIView+WebCacheOperation.m"; sourceTree = ""; }; - DCA36AA1CA0B92BA681E7562A9AB8210 /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevSettings.h; sourceTree = ""; }; - DCA6CC491564CE520978D54B064C768E /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; + DCABCC9C8001FA20E4E1830A4BE93DA2 /* RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotifications.h; path = RNNotifications/RNNotifications.h; sourceTree = ""; }; DCADAF076921DEC4D671151F9E0C9584 /* lossless_enc_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = lossless_enc_mips_dsp_r2.c; path = src/dsp/lossless_enc_mips_dsp_r2.c; sourceTree = ""; }; DCB16C1702DEA720BC36211E43A6596E /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logging.cc; path = src/logging.cc; sourceTree = ""; }; DCB23ABFC8B49A5E319D843667A25D15 /* rescaler.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler.c; path = src/dsp/rescaler.c; sourceTree = ""; }; - DCEEDFB15DFD2A72A2E61D28D62EDDAD /* RNFirebaseAdMobInterstitial.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobInterstitial.m; sourceTree = ""; }; - DCF29C4013DFB5FA396D0A90D013CF7F /* RNFastImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFastImage-dummy.m"; sourceTree = ""; }; - DCF6521E5919CF003A5CA05DB1ECD2E0 /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; - DD142B9C3FA055FEF54B9906D8623CCF /* RNNotificationCenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationCenter.h; path = RNNotifications/RNNotificationCenter.h; sourceTree = ""; }; - DD271C1F5DDAE181D2540027CC7958AB /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; + DCC990FEA4CF0D91B5AA704511B9A366 /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = ""; }; + DCFDBA48F4D45DD625444D5E3836E3EE /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; DD2806395B36E55041B47CB2F212D053 /* SDDeviceHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDeviceHelper.h; path = SDWebImage/Private/SDDeviceHelper.h; sourceTree = ""; }; - DD6E3E7D56FED8F8A3BAE1742C879BE0 /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspectorDevServerHelper.mm; sourceTree = ""; }; + DD5ECC7C878B88D0C61273EA8B878245 /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; DD709B78F7B831FDC9366D13746333E0 /* GULNetworkURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkURLSession.h; path = GoogleUtilities/Network/Private/GULNetworkURLSession.h; sourceTree = ""; }; - DD7F7ED4977D67E27097A2C9D2F83889 /* React-RCTActionSheet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTActionSheet-dummy.m"; sourceTree = ""; }; - DD82588AC2076B1662424883141FFD22 /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = ""; }; - DDE32EAC62DDE0A909660E90B40B99E2 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - DDF2C579C0326557934351E533B57C1F /* react-native-appearance.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-appearance.xcconfig"; sourceTree = ""; }; - DE05C87555688FF24DEF167EEFF2E549 /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; - DE28BBB1276CDE8D23BCA233CC99E240 /* BSG_KSCrashSentry_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Private.h; sourceTree = ""; }; - DE49638ADFC5C297F8F611DD713D98D5 /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStatusBarManager.h; sourceTree = ""; }; - DE5790F233E490A47638DABB61B5B9C3 /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; - DEB78093614332D12C5E9B2C2B7A9A7F /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; + DD7B1DDC7B038544A875E6A822F28386 /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; + DDC6F67C2DD59A6AD926936B059FB771 /* ARTGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTGroup.m; path = ios/ARTGroup.m; sourceTree = ""; }; + DDDC95FFE0C6C7B2851FD524684F54B0 /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; + DE11E99498B7A9823D6DA87A938589A6 /* RNPushKitEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKitEventHandler.h; path = RNNotifications/RNPushKitEventHandler.h; sourceTree = ""; }; + DE641A302A8646320DAC48CE6E849B7F /* ARTText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTText.h; path = ios/ARTText.h; sourceTree = ""; }; + DE6B237DE91DF63A64ABC835E1448A62 /* RNFirebaseAdMobInterstitial.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobInterstitial.m; sourceTree = ""; }; + DE76A96D81633774F56F33EE3C612B6A /* EXAV.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAV.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + DE9658FF8987FF4A567A0FC9DC49582D /* localNotifications.md */ = {isa = PBXFileReference; includeInIndex = 1; name = localNotifications.md; path = docs/localNotifications.md; sourceTree = ""; }; + DED3C306036B86D6BAD40A6FC8471859 /* react-native-cameraroll.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-cameraroll.xcconfig"; sourceTree = ""; }; DED9FC57D70D86176F806A8A2529655A /* RSKImageCropper.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RSKImageCropper.xcconfig; sourceTree = ""; }; - DF1715F2F79E73DD52ADEA3D557A2037 /* RNFetchBlobReqBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobReqBuilder.m; path = ios/RNFetchBlobReqBuilder.m; sourceTree = ""; }; - DF32FC0A68A9824FBE0FC23450FF47CF /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = React/CoreModules/RCTImageEditingManager.h; sourceTree = ""; }; - DF6B7C1BA29606ABCBFF86F436B3E338 /* READebugNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = READebugNode.m; sourceTree = ""; }; - DF8CBF4E8847D9B5DCD9C9911BB18CE1 /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = ""; }; - DF9C1A1209FD3E5DBEEE7B801F7CEB32 /* EXPermissions.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.xcconfig; sourceTree = ""; }; + DF132347C29A84EF484351CF932FA858 /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist"; sourceTree = ""; }; + DF27FB27F03D0836198D91EAAB34E562 /* REAEventNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAEventNode.m; sourceTree = ""; }; + DF320A32A89DFDD836242CF9ACDE905C /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = SimpleLineIcons.ttf; path = Fonts/SimpleLineIcons.ttf; sourceTree = ""; }; + DF33E3CF7D684DB98F89BAEB8F8E2E65 /* RNNotificationParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationParser.m; path = RNNotifications/RNNotificationParser.m; sourceTree = ""; }; + DF625B9FFD7CA277275930691C3AB5F2 /* RNFetchBlobConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobConst.m; path = ios/RNFetchBlobConst.m; sourceTree = ""; }; + DF6D5E0AF58DEBC7EFDA3E4CF9D871E5 /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; + DF85B830324DFEABADD1EBC6B2D3CAED /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + DF8C4FB84FC5CC63827683833BF23659 /* BridgeJSCallInvoker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BridgeJSCallInvoker.cpp; path = jscallinvoker/ReactCommon/BridgeJSCallInvoker.cpp; sourceTree = ""; }; + DF92D606E8726EC631EAC028DA7D1669 /* BSG_KSCrashReportVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportVersion.h; sourceTree = ""; }; DFC6BCB3B33D02DBB888628D1E52A351 /* histogram_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = histogram_enc.c; path = src/enc/histogram_enc.c; sourceTree = ""; }; - DFF2E2EE2AECC376D0B0D17D0A8DFAAE /* ARTTextFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTTextFrame.h; path = ios/ARTTextFrame.h; sourceTree = ""; }; - E0135EE9EF6E64ED0A15859C04043B9B /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; - E01D4BBC06A8F671E048CD814EA1DAE6 /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = ""; }; - E04865593F9BF279CAEC179AB14AA3E0 /* RNFirebase-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNFirebase-dummy.m"; sourceTree = ""; }; + DFDC939DDDE5B2F633F78E7D72C17D92 /* BridgeJSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BridgeJSCallInvoker.h; path = jscallinvoker/ReactCommon/BridgeJSCallInvoker.h; sourceTree = ""; }; + E013C3BD3D8B32F02469CCBECB38B281 /* BSG_KSCrashIdentifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashIdentifier.h; sourceTree = ""; }; E05491038895B9B893771A35A083EAA8 /* FirebaseInstanceID-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseInstanceID-dummy.m"; sourceTree = ""; }; E06128CB543E05DF7D4F8B8A3EF8EEF2 /* GDTCORStoredEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORStoredEvent.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORStoredEvent.h; sourceTree = ""; }; - E082D662966C508D951D9CD0D9C2EAEE /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; - E09F3565A053C17C268671D9AECC4574 /* ARTBrush.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ARTBrush.h; sourceTree = ""; }; - E0B3E7D809E6D8FC3AD019439411D813 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - E0DBF0B6EA978E1A081F305745A17E7E /* BugsnagMetaData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagMetaData.h; sourceTree = ""; }; + E08543FDC39180F83C50169CA50E00A0 /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; + E0B1D28C01B0D9FF019BD11F48423BE1 /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; + E0B547458839A360641662CF36531F72 /* BSGOutOfMemoryWatchdog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGOutOfMemoryWatchdog.m; sourceTree = ""; }; + E0BC4658ED68247F4D86F89624EC6C18 /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; + E0CFCA19099474C4FB8877DE89AE37CF /* BugsnagCrashReport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCrashReport.m; sourceTree = ""; }; E0E17F86AEE63B4E96B07B6417885A38 /* GDTCORLifecycle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORLifecycle.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORLifecycle.h; sourceTree = ""; }; E0FE6533198104C97DB047DD5CD8AC67 /* libRNDeviceInfo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDeviceInfo.a; path = libRNDeviceInfo.a; sourceTree = BUILT_PRODUCTS_DIR; }; E10C2950FAF761DCACFC19CB9D52CF9C /* upsampling_msa.c */ = {isa = PBXFileReference; includeInIndex = 1; name = upsampling_msa.c; path = src/dsp/upsampling_msa.c; sourceTree = ""; }; - E11EFFACF02E15C744578BEF99A351E7 /* React-CoreModules-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-CoreModules-dummy.m"; sourceTree = ""; }; - E143925B59A5A1BAEDA8D409F2505453 /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E12037BC069B82359BD9130847A65C00 /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = ""; }; E146C49FCEE4ED98740C53D8AF16B54A /* FIRInstallationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsStore.h; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.h; sourceTree = ""; }; E154067690FE650334C7C3D34DA323A1 /* filters.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filters.c; path = src/dsp/filters.c; sourceTree = ""; }; - E16A382094A038ECB6A60E86DDFB51FD /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = ""; }; - E1761FC1DF3FDB6F1A4BDA9991658594 /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = ""; }; - E18DC5B49169920EEA7A1AEE96BF56E6 /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFPSGraph.h; sourceTree = ""; }; - E1A49906A4E8D2A3DFE6B2A1C271E1B5 /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = ""; }; - E1E048D0144BD5C2DA458D7E1603D34B /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; + E17056756AD03B5D1A3A24AE1C8217A1 /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageLoader.mm; sourceTree = ""; }; + E1C1CAC2DFEA679A049CF92D108DD7A1 /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; + E1E29DDBDC1101D3DCDB77C88EA79F65 /* RCTI18nManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nManager.m; sourceTree = ""; }; E1E98A139B0A1E84E12ACFECE2DCC7BC /* MallocImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MallocImpl.cpp; path = folly/memory/detail/MallocImpl.cpp; sourceTree = ""; }; - E1F17ADA394A0FB75DCE5E48D30C27C9 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; - E1F3477B4578E3887176C019B49E061D /* BannerComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BannerComponent.h; sourceTree = ""; }; - E20DF5FFBA43BBBC8DC829D1C5C88996 /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = ""; }; - E20E9C4391607CF1A8090F96EA666121 /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; - E24183C28FE5CE42D1500250E20C5090 /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; + E2170B422AE233CA0E843E1C6F8C5AF6 /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; + E222CCBAE4B8B73A1E7FD6E8F2E67F1F /* RNCommandsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCommandsHandler.m; path = RNNotifications/RNCommandsHandler.m; sourceTree = ""; }; + E22F88CAA43045F32AF78CAF32BD7AF4 /* BugsnagMetaData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagMetaData.h; sourceTree = ""; }; E24A9D8245F7C2A76A8F628651409D86 /* cost_mips_dsp_r2.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cost_mips_dsp_r2.c; path = src/dsp/cost_mips_dsp_r2.c; sourceTree = ""; }; - E260163F6DC25EBEFFE6AD70DF5B209C /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; + E263FF05F0C40822398FCD1BA2930346 /* CoreModulesPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreModulesPlugins.h; path = React/CoreModules/CoreModulesPlugins.h; sourceTree = ""; }; E2B63D462DB7F827C4B11FD51E4F8E2D /* libFirebaseCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCore.a; path = libFirebaseCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; + E2DC9D466362320D9D82C2ABE0FFAA0D /* RNCAppearanceProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProviderManager.h; path = ios/Appearance/RNCAppearanceProviderManager.h; sourceTree = ""; }; E2E3C8E6D99317CEB9799CEDC4EF10E0 /* FIRInstallationsLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsLogger.h; path = FirebaseInstallations/Source/Library/FIRInstallationsLogger.h; sourceTree = ""; }; - E2E450206ED9BCA2BE53194642EDE138 /* BSG_KSCrashSentry.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry.c; sourceTree = ""; }; E2FDE91FD70FFC43E88F683DC84004E6 /* FIRBundleUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRBundleUtil.m; path = FirebaseCore/Sources/FIRBundleUtil.m; sourceTree = ""; }; - E31BAB82E514EC52EC442F809703ABE4 /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = ""; }; - E36009054E1FFCB58DB9B3BB9714D549 /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; - E3BC9591E6454450B9E4A075832684B4 /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; + E3085ABFDFB80C782979628AFA5B70C3 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + E37FA286A65A13B6EACE4F2949703FCF /* RCTRequired.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.xcconfig; sourceTree = ""; }; + E389BD72A1C7A96A96993A4A39B7D055 /* RNAudio-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNAudio-dummy.m"; sourceTree = ""; }; + E3AC30C12EC69BAE7FEB7BEBF749393F /* RCTCustomInputController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCustomInputController.m; sourceTree = ""; }; + E3B9AC74E5B90C3FC6DDCFF3A42F0DE5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + E3D1E7716CC44DDA6ECFCA7F38BAFD28 /* EXRemoteNotificationPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXRemoteNotificationPermissionRequester.m; sourceTree = ""; }; + E3D450362CFE85BDCA37A5CBBA9C6911 /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; + E3DCC62AAF84C99768664D5FCB9581FC /* BSG_KSCrashSentry_NSException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashSentry_NSException.m; sourceTree = ""; }; + E3E6A1475FA0286C2069129BE72401FE /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; + E41F52520D62AC019BAB1E9EEB0AD7E9 /* EXVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoManager.m; sourceTree = ""; }; E427482FF0816F936F72DF5FD9CAB3BC /* pb_common.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_common.c; sourceTree = ""; }; - E477D2DCF178AD8A0A119CC11BB83614 /* EXAV-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAV-dummy.m"; sourceTree = ""; }; E496A53A92B4E464B5C30DC5B1E4E257 /* libRNRootView.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNRootView.a; path = libRNRootView.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E49CFE480C3D29E7EC345A83CE1E2893 /* react-native-notifications.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-notifications.xcconfig"; sourceTree = ""; }; - E4EC7D40A947B771E7D48FF7146A8F4A /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = ""; }; + E4E7F067F5AF42C063095057CB7F3A45 /* 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; }; E4FD42C315AF54A28629FCA573EB25FA /* Fabric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fabric.h; path = iOS/Fabric.framework/Headers/Fabric.h; sourceTree = ""; }; E50163A58ADB7FB1A0B8C52679BD982C /* CLSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSStackFrame.h; path = iOS/Crashlytics.framework/Headers/CLSStackFrame.h; sourceTree = ""; }; E503EE768F7FB7BA45AF2BCAD9C1BFED /* FBLPromise+Delay.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FBLPromise+Delay.m"; path = "Sources/FBLPromises/FBLPromise+Delay.m"; sourceTree = ""; }; - E55C212DD52DAE10D8D1AF4C1840B73F /* RCTImageStoreManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageStoreManager.m; sourceTree = ""; }; E55EA3C6F285F6FA8067C5C8A428FA64 /* libRNFastImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFastImage.a; path = libRNFastImage.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E57AE608C40F62CF73A0A12F5C3ACA23 /* react-native-background-timer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-background-timer-prefix.pch"; sourceTree = ""; }; - E57B395FE7991C5C011CFD925B3A213C /* rn-fetch-blob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-fetch-blob-dummy.m"; sourceTree = ""; }; - E57B61D917422FCC8BB714C6D43CAF88 /* BSG_KSObjC.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSObjC.c; sourceTree = ""; }; - E58A1CD42F0356C6697E2AC06FEA30E6 /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; - E59E8413EB76AA9A0ACA30CD21A916DB /* FFFastImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageViewManager.m; path = ios/FastImage/FFFastImageViewManager.m; sourceTree = ""; }; - E5BC043446381F3ACBB8C03306F65C02 /* ios_date.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = ios_date.png; path = docs/images/ios_date.png; sourceTree = ""; }; + E57C813DDCCB3010D420482801376EB7 /* BSG_KSCrashIdentifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashIdentifier.m; sourceTree = ""; }; E5BFD2113CD9F64E3ED9DA735B433731 /* syntax_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = syntax_enc.c; path = src/enc/syntax_enc.c; sourceTree = ""; }; - E5C0B0A941461267A103EFB48484C56E /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; - E62106A8AC3479BFF07F954CDB4068A6 /* ARTSolidColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTSolidColor.m; sourceTree = ""; }; - E67E3486091E43C85BFCF40124719261 /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; + E5D773D06094FC95830D197D526EAF1C /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIndexedRAMBundle.cpp; sourceTree = ""; }; + E5F4B99ABD683869879D48CC022775B4 /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTExceptionsManager.mm; sourceTree = ""; }; + E606ACB92B5C3B7E5141D49B128773C1 /* RNFirebaseFirestore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFirestore.m; sourceTree = ""; }; + E6164A6A95D6B2C5F5FB66AE8BF72F00 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + E6670F2D0C21AAC77816339E4F162C86 /* EXUserNotificationPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXUserNotificationPermissionRequester.m; sourceTree = ""; }; + E69F4D5FA2EEA2CCC03B5241F06B998F /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTText.a"; path = "libReact-RCTText.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - E6AF3EAA1DBF0F5E8A3C0E395D9FD89F /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; - E6B2FAB6C78DAD30C101A8E0C7C8ACE0 /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; - E6B899F02890ECA8F69E16739FC723D9 /* UMFileSystemInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.xcconfig; sourceTree = ""; }; - E6C09F8FC9C3A48D2F39D3D394130EC3 /* BSG_KSSystemInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemInfo.h; sourceTree = ""; }; + E6B0CEC82097EE31763F947D714730E0 /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; E6D457DA870054C0D84E3800FDA55894 /* SDWebImageTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransition.h; path = SDWebImage/Core/SDWebImageTransition.h; sourceTree = ""; }; - E6E37CDB86211745708FD39023FEA705 /* BridgeJSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BridgeJSCallInvoker.h; path = jscallinvoker/ReactCommon/BridgeJSCallInvoker.h; sourceTree = ""; }; - E70612D1EB1C6A75F6BC4F0F3DBA3E8B /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; + E6D4F0910997F8C5C7D9B5773979738D /* RCTConvert+UIBackgroundFetchResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+UIBackgroundFetchResult.m"; sourceTree = ""; }; + E6FEC01938E6E2881B3F79CA8423559A /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = ""; }; E71363AF216BF6A9FDEDA89C8D14B6A2 /* muxedit.c */ = {isa = PBXFileReference; includeInIndex = 1; name = muxedit.c; path = src/mux/muxedit.c; sourceTree = ""; }; - E716E272500F2B1D0BB5707BFA53C18B /* RNNotificationCenterListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterListener.m; path = RNNotifications/RNNotificationCenterListener.m; sourceTree = ""; }; E728B448CD6DE78410A3FA3D7DFFAF58 /* FIRInstanceIDCheckinPreferences.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCheckinPreferences.m; path = Firebase/InstanceID/FIRInstanceIDCheckinPreferences.m; sourceTree = ""; }; - E72C9EF29F6A797469AE3146483A69C9 /* ARTTextManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTTextManager.m; sourceTree = ""; }; E73C501A0EB747305BB4AAD7978E3E0E /* GULSceneDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSceneDelegateSwizzler_Private.h; path = GoogleUtilities/SceneDelegateSwizzler/Internal/GULSceneDelegateSwizzler_Private.h; sourceTree = ""; }; - E75A7D5A4539B2E0537A5A61616245AB /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; + E76502808A9CBAD48934D12CB8CA9BCD /* RCTUIImageViewAnimated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIImageViewAnimated.m; sourceTree = ""; }; E76F1E8AD66134342407C6C7C3FD17A8 /* SDWebImageDownloaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderConfig.m; path = SDWebImage/Core/SDWebImageDownloaderConfig.m; sourceTree = ""; }; - E79EAAD4694101F842E690C21DC221BB /* 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; }; - E7B9FBD172851AA60C3C6FB07E8E68C5 /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; - E7D2442F6309A532AB05953CA63E31B1 /* EXVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoView.m; sourceTree = ""; }; + E78BB7DD764E162B6A016C59A4F38920 /* EXAudioSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioSessionManager.m; path = EXAV/EXAudioSessionManager.m; sourceTree = ""; }; + E78C0DFF4376A743833BE1BE5257A4FD /* RNGestureHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandler.h; path = ios/RNGestureHandler.h; sourceTree = ""; }; E7DE8C91E01DA1613F5EC7CD66F28061 /* FIRInstanceIDCheckinPreferences_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinPreferences_Private.h; path = Firebase/InstanceID/FIRInstanceIDCheckinPreferences_Private.h; sourceTree = ""; }; - E7E54C339F5B0A1E7A94E3A2661EFD17 /* RootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RootView.m; path = ios/RootView.m; sourceTree = ""; }; - E7F656B514DB7C390BE8A946BEF153A9 /* LICENSE.txt */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.txt; sourceTree = ""; }; E818294C08CF5776BB1D71226C8C1B0A /* SDImageCachesManagerOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManagerOperation.m; path = SDWebImage/Private/SDImageCachesManagerOperation.m; sourceTree = ""; }; E82A30AEF74EE71AF0B62661B8B26951 /* GULLoggerCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerCodes.h; path = GoogleUtilities/Common/GULLoggerCodes.h; sourceTree = ""; }; - E82B7D1C30D1AEB3E504A3713A5D962B /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; - E83456EAECC433866101BCF8436F8600 /* REAFunctionNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAFunctionNode.m; sourceTree = ""; }; E843DB2D9152A6891CEC690C8919CC3A /* GDTCORUploader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploader.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORUploader.h; sourceTree = ""; }; - E8961112A6754761DB791C0ABFFEAEDD /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; - E8A0264BD294739E1BB1C2D47520BB86 /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; - E8FFCBFFB676EA7DA34B1A9054586EC1 /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; - E903A9F81509DB31EB1F37B4AF99BAEB /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - E94E82CA6CBE7E903DB83CDF94E22AAC /* RCTConvert+ART.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+ART.h"; path = "ios/RCTConvert+ART.h"; sourceTree = ""; }; - E94F324617435A6F3AE226340AC96FAE /* QBSlomoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBSlomoIconView.m; path = ios/QBImagePicker/QBImagePicker/QBSlomoIconView.m; sourceTree = ""; }; - E96F58AD23FA16CC8D06419570E1E52F /* RNFirebaseFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseFunctions.h; sourceTree = ""; }; + E847FBA812E94CC9BCCD9EE428CC1966 /* TurboModuleBinding.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleBinding.cpp; path = turbomodule/core/TurboModuleBinding.cpp; sourceTree = ""; }; + E866CECE6F9A3676B266DA1070DF8A37 /* EXWebBrowser.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.xcconfig; sourceTree = ""; }; + E879EE624715C69DD9F0F4E2CE434B74 /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; + E88C45E4936F0D384CC06AC38B3C065C /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; + E8AEA7B9442431BEAC08800C2EBDF01E /* RNBackgroundTimer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBackgroundTimer.m; path = ios/RNBackgroundTimer.m; sourceTree = ""; }; + E8BD3D4427BD842D570DD8DC37853DEA /* notificationsEvents.md */ = {isa = PBXFileReference; includeInIndex = 1; name = notificationsEvents.md; path = docs/notificationsEvents.md; sourceTree = ""; }; + E8CD09B1F03524B84AE162118F5DD20C /* RCTVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideoManager.m; path = ios/Video/RCTVideoManager.m; sourceTree = ""; }; + E9744C64B98B75CFF9A97A36FC9187F1 /* EXImageLoader-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXImageLoader-prefix.pch"; sourceTree = ""; }; E97C6B62E60E3076A98791068DE7D7C1 /* FIRInstanceIDKeychain.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDKeychain.m; path = Firebase/InstanceID/FIRInstanceIDKeychain.m; sourceTree = ""; }; - E9DD91D01681C27C1CCA91964189CBC3 /* UMConstantsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.xcconfig; sourceTree = ""; }; - E9EC10322167045A8F30D69DE3F0EC78 /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; + E99246ECA2FF3A52EF5E264B6D7ABC84 /* QBVideoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.h; sourceTree = ""; }; E9FEBF5B13B80FBCD53AF5D844C38822 /* SDAssociatedObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAssociatedObject.m; path = SDWebImage/Private/SDAssociatedObject.m; sourceTree = ""; }; - EA06FB90254188CC7BD42C9ED915003F /* RNFetchBlobConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNFetchBlobConst.m; path = ios/RNFetchBlobConst.m; sourceTree = ""; }; - EA217BFC56D7D63C24A2E2EFD8B69C20 /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.h; sourceTree = ""; }; + EA1E9A14E80735BFE4C7521D136DC165 /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; EA3786891CC282557AB2EF14638CDE2D /* filter_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = filter_enc.c; path = src/enc/filter_enc.c; sourceTree = ""; }; EA3905F7E6892A7956DD8078E9E87116 /* SDWebImageDownloaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderConfig.h; path = SDWebImage/Core/SDWebImageDownloaderConfig.h; sourceTree = ""; }; - EA59CDB4F40FC74738755F21FD9179AF /* ARTShape.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTShape.m; path = ios/ARTShape.m; sourceTree = ""; }; + EA39A846885AEDDA4978D47BBBC488C4 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; EAB62C963029E8092CA65348E89AD1C6 /* common_sse2.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = common_sse2.h; path = src/dsp/common_sse2.h; sourceTree = ""; }; - EAD19C805AA13087D4CB613CEB7207D7 /* LICENCE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENCE; sourceTree = ""; }; - EAD97441CC320A33DF4D6CF5244D8890 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - EB02E1D6B07453B5F6ED0EBFD6E676A5 /* REATransitionValues.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = REATransitionValues.h; sourceTree = ""; }; - EB1063DE45A52A4A4BC6F0E3D4C90CDC /* RNFirebaseAdMob.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMob.m; sourceTree = ""; }; - EB10853BBA6FD236AA44C5772B7ECC42 /* RNCCameraRollManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCCameraRollManager.h; path = ios/RNCCameraRollManager.h; sourceTree = ""; }; + EAC3D0BCF30C8AE869CCC160C96A4108 /* BSG_KSFileUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSFileUtils.h; sourceTree = ""; }; + EAC91A933451B8E0BD44C846366D89C1 /* TurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModule.h; path = turbomodule/core/TurboModule.h; sourceTree = ""; }; + EACBACF9153DD3E5D782F861B1761ED0 /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobManager.mm; sourceTree = ""; }; + EADCFA69EBD77D5207AA83AC8FD11C6F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + EB13EAAC29F39342E66D644585186CD7 /* RNCCameraRollManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCCameraRollManager.h; path = ios/RNCCameraRollManager.h; sourceTree = ""; }; EB3D678D3F78C857A36FCEE91C3A72E5 /* FIRInstanceIDDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDDefines.h; path = Firebase/InstanceID/FIRInstanceIDDefines.h; sourceTree = ""; }; - EB476B4FF06F149CDC7E60CA6FA4B4B6 /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; - EB5684495A6F8B21DC40DE6D45F5775C /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; - EB570AFE3807B1510AAFAA576444577D /* BSG_KSSystemCapabilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSSystemCapabilities.h; sourceTree = ""; }; EB58C1A1A2B45B20B44F908DC5FFD1D5 /* rescaler_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_mips32.c; path = src/dsp/rescaler_mips32.c; sourceTree = ""; }; - EB6168ABE2CE62305490CA4BD7049283 /* Bitfield.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bitfield.h; path = yoga/Bitfield.h; sourceTree = ""; }; + EB63F685143CFE850F245E806125F4AE /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; EB70BE00723008AAD156EB27A07FE171 /* FIRInstallationsErrorUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstallationsErrorUtil.h; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.h; sourceTree = ""; }; - EB7EB013F833B355FD0244A8EA7E1E9B /* AudioRecorderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AudioRecorderManager.h; path = ios/AudioRecorderManager.h; sourceTree = ""; }; - EC14FEAF264818E7E570224ACC8BFD4D /* RCTConvert+FFFastImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+FFFastImage.h"; path = "ios/FastImage/RCTConvert+FFFastImage.h"; sourceTree = ""; }; - EC5FE22EE3F05BCC7AB588F5B43EF411 /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = Instance.cpp; sourceTree = ""; }; - EC88000ED677B260937D884184B39666 /* React-RCTText.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.xcconfig"; sourceTree = ""; }; - EC8A0114499BD3AA4D7BFD2A78FA01A3 /* RNFetchBlobNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFetchBlobNetwork.h; path = ios/RNFetchBlobNetwork.h; sourceTree = ""; }; + EB72252CAC0049312C0A632E2F8F719B /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingView.h; sourceTree = ""; }; + EB7D50EFBEB2E508AF716F3712D90713 /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; + EB94F93D00DB0189F3ED90E4609092F9 /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; + EBB697DB9411C56639A4EEA0CD6D9933 /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; + EBEDD9F09018A3CB9E1B5918F5653262 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + EC00180B78B1F10FA9BAA45677C192B6 /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = ""; }; + EC174511251D6DA7612CA7306DB50846 /* 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; }; + EC1E6F6BD46D3034BC7755AEA1502E5F /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = ""; }; + EC3C0204BB6B6C009CA6714C0402304B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + ECC314D558F5DF672D18C790519C8D94 /* KeyboardTrackingViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = KeyboardTrackingViewManager.h; path = lib/KeyboardTrackingViewManager.h; sourceTree = ""; }; ECF6CDD59A57C47D27B4C64E3C83F6EB /* SDImageGIFCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGIFCoder.h; path = SDWebImage/Core/SDImageGIFCoder.h; sourceTree = ""; }; ECFF7646CDA1C9BC7B92C2364D35EB4F /* SDAnimatedImageRep.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageRep.m; path = SDWebImage/Core/SDAnimatedImageRep.m; sourceTree = ""; }; ED1E3FC0DC90F4A787472917BFB6B235 /* libEXFileSystem.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXFileSystem.a; path = libEXFileSystem.a; sourceTree = BUILT_PRODUCTS_DIR; }; - ED3B096CC0BA80651C28D1350889123B /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + ED2B0EF803D68091C2A97BE33361B636 /* RNDateTimePicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDateTimePicker.xcconfig; sourceTree = ""; }; + ED51C0ACBD2A3F1EE152AAFEDCDCE3AD /* QBAssetsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetsViewController.m; path = ios/QBImagePicker/QBImagePicker/QBAssetsViewController.m; sourceTree = ""; }; ED5D4ABF81DB0F6F91E1A25F93EE1DEB /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = SDWebImage/Core/SDWebImageDownloader.m; sourceTree = ""; }; - ED798D51043B425B8A8DAECA50899214 /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; - ED82E9BE7377A40C6A4CBA6B7667F7E1 /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = ""; }; - ED8946A6BA821202B3368BB71A8AA182 /* QBImagePicker.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = QBImagePicker.storyboard; path = ios/QBImagePicker/QBImagePicker/QBImagePicker.storyboard; sourceTree = ""; }; - EDD351E252D6E2DCABF20169A03E57AA /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; - EDE20208E9FEAB94B7ACC8BAB763D758 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; - EDF8EDC8A430227FDC0B35718C308F93 /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-windows.cpp"; sourceTree = ""; }; + ED6418C05DC7F19AB106263F7C32FCC6 /* BSG_KSCrashSentry.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSCrashSentry.c; sourceTree = ""; }; + EDA960B488DC6DD0DC8848BF6E76941F /* RNNotificationCenterListener.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotificationCenterListener.m; path = RNNotifications/RNNotificationCenterListener.m; sourceTree = ""; }; + EDBFA5777814B21574051F46F39A63C7 /* BSG_KSCrashState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashState.m; sourceTree = ""; }; + EDEDC37F633DC4E7C3D71348613CEFDA /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; EE1AB32C49A2A285235B4FDC69A39BAC /* FIRInstallationsStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsStore.m; path = FirebaseInstallations/Source/Library/InstallationsStore/FIRInstallationsStore.m; sourceTree = ""; }; - EEBA21C2ABED57C6474F653A70AC35DE /* UMAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppLoaderProvider.m; path = UMAppLoader/UMAppLoaderProvider.m; sourceTree = ""; }; + EE4BB4E7E0A00A40A77D9D5C97FE5D0F /* BugsnagKSCrashSysInfoParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagKSCrashSysInfoParser.h; sourceTree = ""; }; + EE56065787BBC3451B22B3A0C59BC47D /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; + EE97AB3236145B08630BE08BD485A445 /* react-native-slider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-slider-prefix.pch"; sourceTree = ""; }; + EE9AA28534499BF21627F666995F05AD /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = ""; }; EEC39363574592DDD2C4DE7211730B12 /* SDImageFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFrame.m; path = SDWebImage/Core/SDImageFrame.m; sourceTree = ""; }; + EED0607F4BFC943666CFC8386F9377F4 /* RCTDevLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingView.m; sourceTree = ""; }; + EED3DB3971808F087853A4962A6A9391 /* react-native-background-timer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-background-timer-dummy.m"; sourceTree = ""; }; EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTImage.a"; path = "libReact-RCTImage.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - EEE5683F002CA0CA3896C2CBEA6F79C5 /* TurboModuleUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleUtils.cpp; path = turbomodule/core/TurboModuleUtils.cpp; sourceTree = ""; }; + EEDE915C22C65B42CE4277C418DB3213 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; EEE7EDE32D47E34C402A333EA97DECAB /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = src/glog/logging.h; sourceTree = ""; }; - EEF05BEAD756F0B2BA71E8B39C067F78 /* RNSScreenStackHeaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStackHeaderConfig.m; path = ios/RNSScreenStackHeaderConfig.m; sourceTree = ""; }; - EEF472EFFFC67AB1A9C798AF6E7D9B7F /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; + EF106A6DD349A9D728B07E4FF7D0B6FC /* UMSensorsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.xcconfig; sourceTree = ""; }; EF173724C22DB7D2C3F88CAA10675F80 /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "SDWebImage/Core/UIImage+MultiFormat.h"; sourceTree = ""; }; + EF1B8A56E41BE51A02DB11D725652A30 /* BugsnagUser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagUser.m; sourceTree = ""; }; + EF2C901FE1223174D8B3A6746858D656 /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; EF4EB3533CCB7A84BFF17BE881F535D0 /* FBLPromiseError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromiseError.h; path = Sources/FBLPromises/include/FBLPromiseError.h; sourceTree = ""; }; - EF8CA3F3380206E36F78E2DADFF25213 /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXAV/EXAudioRecordingPermissionRequester.h; sourceTree = ""; }; - EF922E575D5906A5203BE5B1A83E0ED0 /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; - EF9D16860EB5FA761348FDB4DC91DBAF /* RCTLinkingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLinkingManager.m; sourceTree = ""; }; - EFAA389BF7DCB78B851D88EE621C0B5D /* BSG_KSCrashSentry_Signal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashSentry_Signal.h; sourceTree = ""; }; - EFC4985609864B233AA0967A35A7475E /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; - EFCD11E09BDF9F2E4535BF198733FE66 /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = ""; }; - EFE28B08DDD3051D4C21D10B1530AB83 /* RNGestureHandler.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNGestureHandler.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - F0086E0F907C2CAC679FA269843490E6 /* RNCAppearanceProviderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCAppearanceProviderManager.h; path = ios/Appearance/RNCAppearanceProviderManager.h; sourceTree = ""; }; - F02634E51831E5B3FD5A787D5BB2BF15 /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = ""; }; + EF70D54EF4C3182ABD88763F3D049CE7 /* BSG_KSCrashDoctor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashDoctor.h; sourceTree = ""; }; + EF788968BF757270E8F0956A01A609CE /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; + EF91A2BB1EDA2CD251578C0B4ABE65DE /* RNSScreenStack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenStack.h; path = ios/RNSScreenStack.h; sourceTree = ""; }; + EFC5A84423AE386178E1FB69D79B7D14 /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = ""; }; + EFD192F604D03272854B5E351BFAC8FD /* RNFirebaseUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebaseUtil.h; path = RNFirebase/RNFirebaseUtil.h; sourceTree = ""; }; + EFFE34F8E17395B29CF1438DC93C6FEC /* BugsnagApiClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagApiClient.m; sourceTree = ""; }; + F0035AD75AF409EED99CE638FCD79F36 /* RNNotifications.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNotifications.m; path = RNNotifications/RNNotifications.m; sourceTree = ""; }; F02ACAE8DEE115DBBC18C44F0AE2128C /* quant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = quant.h; path = src/dsp/quant.h; sourceTree = ""; }; - F066D29AC5292924001F77DF2C215838 /* RCTAppState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAppState.m; sourceTree = ""; }; + F05DDA788AC42546B5D27BCCA0222EBE /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; + F072948F3FB48D4D7040B7F5699DDE2B /* ARTTextFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTTextFrame.h; path = ios/ARTTextFrame.h; sourceTree = ""; }; F08B0F9A4D8A738B0F5EF58D5545D0A9 /* UIImage+ForceDecode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ForceDecode.h"; path = "SDWebImage/Core/UIImage+ForceDecode.h"; sourceTree = ""; }; - F08F8876D360987112249A47F58AACD3 /* RNPinchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNPinchHandler.m; sourceTree = ""; }; + F08C8E9ABDB624DB4767FBBFB966F840 /* RNGestureHandlerModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNGestureHandlerModule.h; path = ios/RNGestureHandlerModule.h; sourceTree = ""; }; F09D66808FCE05691A438366BC25B746 /* SDWebImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImage-dummy.m"; sourceTree = ""; }; + F0B2FB09F82C24D3863A03DC1D759793 /* RNUserDefaults.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNUserDefaults.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + F11AF63AF8F5AE2ADB2930373146C586 /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; F12DAF7528A201C09ADE0D2FC9600260 /* GULLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULLogger.m; path = GoogleUtilities/Logger/GULLogger.m; sourceTree = ""; }; - F13D4DA071E13382EBB8FAACFBAB3167 /* ARTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ARTSurfaceView.h; path = ios/ARTSurfaceView.h; sourceTree = ""; }; - F14D8994925A0A0BEE1B08369B56247E /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; + F15541AFEE0AAB9CC4B33C8D9ACE40B8 /* BugsnagCollections.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagCollections.m; sourceTree = ""; }; F15A1B308313E7B51B2753B9D83EDFA5 /* SDImageWebPCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageWebPCoder.m; path = SDWebImageWebPCoder/Classes/SDImageWebPCoder.m; sourceTree = ""; }; - F161325166BAB0C362768E626AC7A17B /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; F17947A41DC67706AD2ADAD8C7C559C3 /* GULNetworkLoggerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkLoggerProtocol.h; path = GoogleUtilities/Network/Private/GULNetworkLoggerProtocol.h; sourceTree = ""; }; - F17A2E32705BC84AD814FD6ECD2D115D /* UMAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLoaderInterface.h; sourceTree = ""; }; + F19DB2FC51E9E061AF53B697805F90B2 /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; F1A4FFD0829F895C7CB4CE1DADA8C124 /* dec_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = dec_neon.c; path = src/dsp/dec_neon.c; sourceTree = ""; }; + F1AD8D4096824219D55A5025F4580AD7 /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; + F1AF26638D4F4A5094918242AACCFA05 /* BSGConnectivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSGConnectivity.h; sourceTree = ""; }; + F1B073762F60DDCC730CD28587773E11 /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = ""; }; F1B1144A35ACFEBD4E96E634A66733F6 /* SDWebImageWebPCoder-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImageWebPCoder-prefix.pch"; sourceTree = ""; }; F1D65D982EF85292BB9FDEA34BBE516E /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize.cc; path = src/symbolize.cc; sourceTree = ""; }; - F1F9A5AFD99CBEFAFB6673870EC2885C /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; - F23E3FEC63449DC8ED6AA3D91CEDDC77 /* RNNotificationsStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationsStore.h; path = RNNotifications/RNNotificationsStore.h; sourceTree = ""; }; - F24BC628BCF86EB456B021B4CC9BEDBC /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; - F2649FE73365ED79E64897C7FB24DD93 /* BugsnagCrashReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashReport.h; sourceTree = ""; }; + F1DD820E50ED7683D2682FC978902760 /* BSG_KSCrashReportStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_KSCrashReportStore.m; sourceTree = ""; }; + F1FCB8B8C78B3CC67C0B2905CCC4AAD7 /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; + F21B72296B3BE105A34CCE9096EE22C9 /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; + F2236443FB53942C9708DA1C715F30D0 /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; F2659EE472B6D6569574FAB9D3BCFB98 /* SDAsyncBlockOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAsyncBlockOperation.h; path = SDWebImage/Private/SDAsyncBlockOperation.h; sourceTree = ""; }; F26BB59FEC9CBF96A4426D94923EF71D /* SDImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoader.m; path = SDWebImage/Core/SDImageLoader.m; sourceTree = ""; }; - F2A1F3952414A47118BF180CB3526A97 /* EXVideoManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EXVideoManager.m; sourceTree = ""; }; - F2B2A1B43A483D6E4AEDD76F4C2712A5 /* UMPermissionsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.xcconfig; sourceTree = ""; }; - F2E3AA5EABABDF42ADB808D688164FA4 /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; + F2A0626FD5854C9AB571E75A278FE003 /* React-RCTNetwork.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.xcconfig"; sourceTree = ""; }; + F2B977120DCE58A53B2F07C61AF5CE2F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + F2CFFC3F749D96C2A9A33A5F128355F1 /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = ios/QBImagePicker/QBImagePicker/es.lproj; sourceTree = ""; }; F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsiexecutor.a"; path = "libReact-jsiexecutor.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - F319CA198824B225B3954A404F9BA23D /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; - F33070115C54647302E7B680A145468B /* react-native-keyboard-input-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-keyboard-input-dummy.m"; sourceTree = ""; }; - F344C77888A1036128EB010D9ED1C690 /* EXAV.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAV.xcconfig; sourceTree = ""; }; - F34FCA8A5A303D7FE703BC9FCE26A993 /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = ""; }; - F35F4E9F258606BF2BE22FDCAC2B7582 /* ARTRenderable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ARTRenderable.m; path = ios/ARTRenderable.m; sourceTree = ""; }; - F373098BBF8F71646B24E94909B78342 /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; - F373606318091C64D597999803ADB485 /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; + F3163268C537ADBAD8FD410E13BD2103 /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = Libraries/WebSocket/RCTWebSocketExecutor.h; sourceTree = ""; }; + F330BF2530869556DBD57DDFD63437EE /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; + F35E076CF529C953D063452BE7B556C9 /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; + F367B9EDD6B2025C9972D1F38FCEAC6C /* RNCSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSlider.m; path = ios/RNCSlider.m; sourceTree = ""; }; + F36BE07D7433CF6314EDF014BE65D359 /* QBCheckmarkView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBCheckmarkView.m; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.m; sourceTree = ""; }; + F39DA98B4560F63097808A59C778BF0F /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; F3AD925B23A79ECA6E6EBDF8DB7412D2 /* UIImage+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Transform.h"; path = "SDWebImage/Core/UIImage+Transform.h"; sourceTree = ""; }; F3C820FC2BBE1761DA1AA527AA0093BF /* FirebaseInstallations-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseInstallations-dummy.m"; sourceTree = ""; }; + F3CCB24FC34E85BE20A08461CEAC5964 /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; F3EA4E1C67B5BF8BD4E1E55A6409EB28 /* FIRInstanceIDAuthKeyChain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDAuthKeyChain.h; path = Firebase/InstanceID/FIRInstanceIDAuthKeyChain.h; sourceTree = ""; }; - F3F09E1E0D4A503E5A78EF430C3B3646 /* RCTVideoPlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVideoPlayerViewController.m; path = ios/Video/RCTVideoPlayerViewController.m; sourceTree = ""; }; - F40B009B8CEA51AFD8683830B1551BE1 /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; + F3F3FE84E33655DC802A375A4A3A2F47 /* RCTCustomKeyboardViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCustomKeyboardViewController.h; sourceTree = ""; }; F4110D159EB83763AAC648B1B81D2F9D /* bignum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bignum.h; path = "double-conversion/bignum.h"; sourceTree = ""; }; F41672D8B6EA45CF462409479614FB31 /* predictor_enc.c */ = {isa = PBXFileReference; includeInIndex = 1; name = predictor_enc.c; path = src/enc/predictor_enc.c; sourceTree = ""; }; - F41AA16F5D4130B8C097B07033C1EECE /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; - F430DE53B915A60E1FB00F0DE577F87A /* UMAppLoader.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMAppLoader.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - F43996E789C2F95C237FF3F6B4F319D0 /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTiming.h; sourceTree = ""; }; F43FC1D38479CA8483FA503030EE4B5B /* FIRErrors.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRErrors.m; path = FirebaseCore/Sources/FIRErrors.m; sourceTree = ""; }; - F4581140717803888E5C440CE18E3EEA /* RCTConvertHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvertHelpers.h; sourceTree = ""; }; - F47313816C0E531155F60FD26CB42BA0 /* ReactNativeShareExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeShareExtension.m; path = ios/ReactNativeShareExtension.m; sourceTree = ""; }; + F44D5DE9F47CC610A0799CDC1E8F49F8 /* ReactCommon-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-prefix.pch"; sourceTree = ""; }; + F49BE03F87BDF1DAC772E82BCB319DCA /* UMAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLoaderInterface.h; sourceTree = ""; }; F4B0846CC9420B2A99D2842B5596A174 /* GDTCOREvent_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCOREvent_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCOREvent_Private.h; sourceTree = ""; }; - F4C72F4244A39F9FF5BB8BEFA9B1BF44 /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; + F4B6286766BAB16F75C8F3961268387E /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; + F4BB57F2C8342D0890921AD00DE04C23 /* RNBootSplash.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBootSplash.m; path = ios/RNBootSplash.m; sourceTree = ""; }; + F4C8A918CFE8CFB9403313034C194463 /* RCTTypedModuleConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTypedModuleConstants.h; sourceTree = ""; }; F4EB52F7237332185617C32F718E1270 /* color_cache_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = color_cache_utils.c; path = src/utils/color_cache_utils.c; sourceTree = ""; }; + F4F59E818975B0DAF1677936CC7928F8 /* EXImageLoader.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXImageLoader.xcconfig; sourceTree = ""; }; + F50C39B607D9C89E5365FAE973EEFBFB /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; + F524D386BD08B9CEE9E5CAC22FFEFE24 /* RNFirebaseAdMobRewardedVideo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseAdMobRewardedVideo.m; sourceTree = ""; }; + F526CECC51F92CB747322256AE7477A6 /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; F55052F42574B7D52A6BA105DCE2F19E /* GDTCORUploadCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORUploadCoordinator.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORUploadCoordinator.h; sourceTree = ""; }; - F558B400852AC6D2D3D27FC665C63C18 /* RNUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNUserDefaults.m; path = ios/RNUserDefaults.m; sourceTree = ""; }; - F55F61BA61E17B03C7DE7BB3DD03F64F /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = ""; }; F581E835D4B745A1D287B2D9FAFABD0D /* FBLPromises.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLPromises.h; path = Sources/FBLPromises/include/FBLPromises.h; sourceTree = ""; }; - F5A2C611FB137F0645124C37EAF1D3E9 /* BugsnagKSCrashSysInfoParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagKSCrashSysInfoParser.m; sourceTree = ""; }; - F5BF7947C5E5872211B056BE23B79E74 /* REATransitionAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransitionAnimation.m; sourceTree = ""; }; - F5C0C0B46851D473AF9561319EE2CB79 /* TurboCxxModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboCxxModule.cpp; path = turbomodule/core/TurboCxxModule.cpp; sourceTree = ""; }; + F593B54165E01747415919096244018D /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = ""; }; + F5A72941FF0DBBF5D8FCA1F794225C4C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + F5F3B97417BD3C97C6BBFD6BDC54FED8 /* BugsnagHandledState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagHandledState.m; sourceTree = ""; }; + F5F63BA013C595EAD453A39C343F921C /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; F603F708AE1BF751B3ACE89E154E4673 /* FBLPromise+Then.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FBLPromise+Then.h"; path = "Sources/FBLPromises/include/FBLPromise+Then.h"; sourceTree = ""; }; - F60E2EF468D037CB0D942D8EBA189471 /* BSGSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSGSerialization.m; sourceTree = ""; }; F62A51F0D87C21CBDCC1B8756AE451C6 /* nanopb-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "nanopb-dummy.m"; sourceTree = ""; }; - F6627C545F0044B75E15296F257929F5 /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = ""; }; - F67D7AFF559B16B61F8BA8EBD50F0484 /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; - F69D004EB967D4DF426BDE52D155C572 /* BSG_KSFileUtils.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSFileUtils.c; sourceTree = ""; }; - F6FBBE3D5E15F36C5BA91A0CFBA40A42 /* BugsnagBreadcrumb.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagBreadcrumb.m; sourceTree = ""; }; + F689FE1EE0C527B721E002B987BAD52C /* react-native-cameraroll-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-cameraroll-dummy.m"; sourceTree = ""; }; + F6B99648326FDB329C014550E639277A /* Bugsnag.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Bugsnag.m; sourceTree = ""; }; + F6CB564AE5D839003189C16F3289EEF1 /* React-RCTVibration.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.xcconfig"; sourceTree = ""; }; + F6DD803CEEF3E5ED10A5840760D5E1C5 /* REAValueNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REAValueNode.m; sourceTree = ""; }; + F7168D4E11BDF82C884D85A8BB9E8421 /* RNFirebase.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFirebase.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; F7181E6712382186FEFE1FAEE124DC30 /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = SDWebImage/Core/SDWebImagePrefetcher.m; sourceTree = ""; }; + F71EB3ED435BE62A03FB8BE9A69A5F5F /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.h; sourceTree = ""; }; F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTBlob.a"; path = "libReact-RCTBlob.a"; sourceTree = BUILT_PRODUCTS_DIR; }; F72625A8093D89ACAEF9ACBC3883C014 /* fast-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fast-dtoa.cc"; path = "double-conversion/fast-dtoa.cc"; sourceTree = ""; }; - F7564569153B3646AE14B6629780102C /* QBVideoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIconView.h; path = ios/QBImagePicker/QBImagePicker/QBVideoIconView.h; sourceTree = ""; }; + F75A97E72944AAAD3BFFC5CCB7806BB7 /* React-RCTText.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.xcconfig"; sourceTree = ""; }; + F75B10ADD795D175038A5C942CC2F902 /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; + F75CC06C0F97AC2F75B76FDB40EFFA9D /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStatusBarManager.h; sourceTree = ""; }; F78C3AEA250BDD82BE7FE666904B87A3 /* DoubleConversion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DoubleConversion-dummy.m"; sourceTree = ""; }; F790E8CC5AC5310B53CA380DA817176B /* ieee.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ieee.h; path = "double-conversion/ieee.h"; sourceTree = ""; }; - F806F944CE3B9A32EB5B7E6CA8300D2C /* RNFastImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNFastImage-prefix.pch"; sourceTree = ""; }; - F826F239F1818333D62B2F541F75E4C6 /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; - F8301A0F6A92FF3E7FBDCFC398D25ABB /* RNRootViewGestureRecognizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRootViewGestureRecognizer.h; path = ios/RNRootViewGestureRecognizer.h; sourceTree = ""; }; - F84633D6A322186A6EC2522B0C53D5BA /* BSG_KSDynamicLinker.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSDynamicLinker.c; sourceTree = ""; }; + F824E024621647C5329420E194FC7C22 /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; + F84D927CDF596173B9BCA45A39ABE347 /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = ""; }; + F85392B2599302F91F4B0D19284BA676 /* react-native-video.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-video.xcconfig"; sourceTree = ""; }; + F85D6B2F3D53D8555287EE94A251903F /* RNFirebaseFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNFirebaseFunctions.m; sourceTree = ""; }; F87F6A22FB4F600954FB2663E53340C6 /* SDImageIOCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOCoder.m; path = SDWebImage/Core/SDImageIOCoder.m; sourceTree = ""; }; - F8B47F1CD100FCBC1313C955EA345AEB /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = ""; }; - F8D25CB766616C651F32FBDCF84AEEE4 /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; - F8F3511A7A0CDB5CD0A574DA1AAA97D1 /* FFFastImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FFFastImageSource.m; path = ios/FastImage/FFFastImageSource.m; sourceTree = ""; }; + F881CC99AF63CFBF850897A4D0123EC2 /* RCTConvert+RNNotifications.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+RNNotifications.h"; path = "RNNotifications/RCTConvert+RNNotifications.h"; sourceTree = ""; }; + F8963C48B4C9E71258D0BCE42665AC26 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; + F897C4400531D40230442A47E1DC1972 /* 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; }; + F8B4A74169F9588A6545B52CDB6A092D /* RNDocumentPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDocumentPicker.h; path = ios/RNDocumentPicker/RNDocumentPicker.h; sourceTree = ""; }; + F8F38AFD3B266BA2D4AEBDA526734BCC /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; + F9092F343B1335E2E42BE8DD93B7ABF6 /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = ""; }; + F9325A0ED5CAF49D74FE46655BD88863 /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; F934561A4844BCB1A5D2C72516F4A72A /* NSData+ImageContentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+ImageContentType.m"; path = "SDWebImage/Core/NSData+ImageContentType.m"; sourceTree = ""; }; F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRCTTypeSafety.a; path = libRCTTypeSafety.a; sourceTree = BUILT_PRODUCTS_DIR; }; - F9DF1E342E98C711D63EE7113CD4DE7D /* JSDeltaBundleClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSDeltaBundleClient.h; sourceTree = ""; }; + F96477C90288FED4C886718B8328F74C /* RNCWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWebViewManager.m; path = ios/RNCWebViewManager.m; sourceTree = ""; }; + F98E9A2244FBE47544AD9A5D8A263A1D /* BSG_RFC3339DateTool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BSG_RFC3339DateTool.m; sourceTree = ""; }; + F9BCF129B5681ADA1FABF4465D5F7084 /* RCTStatusBarManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStatusBarManager.m; sourceTree = ""; }; + F9C8922FC2D0B6600C814C1B3382B23F /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; + F9ECBE21F9340188A655F5682239E588 /* ARTRadialGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTRadialGradient.m; sourceTree = ""; }; F9FDF1E88D043740EACFF1DC73E36B23 /* FIRDiagnosticsData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDiagnosticsData.h; path = FirebaseCore/Sources/Private/FIRDiagnosticsData.h; sourceTree = ""; }; - FA041417DFAF6513DCFA0ABCFD7F2129 /* RNImageCropPicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.xcconfig; sourceTree = ""; }; - FA0DD548DE56BA239C0A46C2BE7642D6 /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; FA2193D233F784FDA8D14E5ED56629C0 /* Pods-RocketChatRN-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RocketChatRN-frameworks.sh"; sourceTree = ""; }; FA26B5A8A32F2F522F09863C5C0477C0 /* GoogleDataTransportCCTSupport.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleDataTransportCCTSupport.xcconfig; sourceTree = ""; }; - FA49BCFA23CB06D68B401F3F82DE2353 /* RNRootView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNRootView-dummy.m"; sourceTree = ""; }; + FA31819E9AE01BFDEA17BCABC8327379 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; + FA31E7A7AB0C7A25E10AC0266F01FFDF /* EXAV.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAV.m; path = EXAV/EXAV.m; sourceTree = ""; }; + FA3FAD6F5216E43A3167EBEBE8B8167B /* RCTKeyCommandsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTKeyCommandsManager.m; path = ios/KeyCommands/RCTKeyCommandsManager.m; sourceTree = ""; }; FA4ECAC99B83A66CECD026177446CB77 /* SDWebImageOptionsProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOptionsProcessor.h; path = SDWebImage/Core/SDWebImageOptionsProcessor.h; sourceTree = ""; }; - FA5E06582BE3DC32D7AF5953A9CF4512 /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; + FA5AEFCC8F782FF9FBAC5916C7863513 /* UIView+FindUIViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+FindUIViewController.h"; path = "ios/Video/UIView+FindUIViewController.h"; sourceTree = ""; }; + FA5F8B27C3393ECAFC57D32F193C67B1 /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; FA6C315437C3214205593E74AB412E48 /* FIRVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVersion.m; path = FirebaseCore/Sources/FIRVersion.m; sourceTree = ""; }; - FA6D8039A197ABD63DAD0EA99338AD29 /* BugsnagMetaData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BugsnagMetaData.m; sourceTree = ""; }; - FA6E41E23B34CFFF4C7E7BA11E408967 /* react-native-background-timer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-background-timer-dummy.m"; sourceTree = ""; }; - FA8ABBEA1E93CE562E48D920956FD8E3 /* RNBackgroundTimer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNBackgroundTimer.m; path = ios/RNBackgroundTimer.m; sourceTree = ""; }; - FAA144BA59878EE8DD881DBDD712FEAA /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - FAD2F71B23C0274678FD7F4994680EA9 /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; + FACDEE6EE892C8AD2C3883084880CC3C /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; FAEB584D2FCC43846A157044BC9D5E46 /* yuv_neon.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_neon.c; path = src/dsp/yuv_neon.c; sourceTree = ""; }; - FB0466ADC87C26343FE7AE73E674521A /* RCTConvert+REATransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+REATransition.m"; sourceTree = ""; }; - FB59BD2F76D819846E10393D518459F6 /* BSG_KSCrashReportFilterCompletion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BSG_KSCrashReportFilterCompletion.h; sourceTree = ""; }; - FB640FAAD52F0D73311260D733A9F50B /* RNUserDefaults.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNUserDefaults.xcconfig; sourceTree = ""; }; - FB82D4881857C78D4F580048CDB64972 /* RCTSourceCode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSourceCode.m; sourceTree = ""; }; + FAF68036D1CCEC3D01E8537FEC9697AB /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = Instance.cpp; sourceTree = ""; }; + FB1F2A873B83D185B95AD54D4488C69F /* EXLocalAuthentication.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocalAuthentication.m; path = EXLocalAuthentication/EXLocalAuthentication.m; sourceTree = ""; }; + FB2115D629A9747CDEF3713B6841D0F2 /* Ionicons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = Ionicons.ttf; path = Fonts/Ionicons.ttf; sourceTree = ""; }; + FB30A0C1F84B37E7A63836AD635BF79E /* React-cxxreact.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.xcconfig"; sourceTree = ""; }; + FB336E236A070DCDE8ACF59ED7B49D2E /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = ios/QBImagePicker/QBImagePicker/ja.lproj; sourceTree = ""; }; + FB5163CC84095AD8ACF8C608B1977B90 /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; FBB3943BA57703F03AC1AE6E9180EC2B /* FIRInstanceIDLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDLogger.h; path = Firebase/InstanceID/FIRInstanceIDLogger.h; sourceTree = ""; }; - FBBB6EEEBE7AC41A3555F9B18167F6CD /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; - FBD303282921ED94222CED8173EB6121 /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; + FBBA4243BD0169C8F395341965625008 /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = ""; }; + FBF562C3060334988DA10DB6D86B54E2 /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; + FC106E9BE9BF1893772A66FAF3F9D3C8 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; FC39B30F26E84F6B31EE5DC99AA7A735 /* FIRInstallationsErrorUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstallationsErrorUtil.m; path = FirebaseInstallations/Source/Library/Errors/FIRInstallationsErrorUtil.m; sourceTree = ""; }; FC4D1271006F3F19FD1F32ED18916996 /* SDImageHEICCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoder.h; path = SDWebImage/Core/SDImageHEICCoder.h; sourceTree = ""; }; + FC5E2D8319B283B8962747D1ED57C037 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = ios/QBImagePicker/QBImagePicker/en.lproj; sourceTree = ""; }; + FC6ADFB46F1C49C39B89A1605D84EF32 /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; + FC7349EEC7FB241A0DBF3CD9AA3FE736 /* RNGestureHandlerRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerRegistry.m; path = ios/RNGestureHandlerRegistry.m; sourceTree = ""; }; FC7479F169BDFA83A763E71935B39C0A /* rescaler_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = rescaler_utils.c; path = src/utils/rescaler_utils.c; sourceTree = ""; }; FCB6EDCCFB847FE622558CA7FACF0C21 /* FIRAnalyticsConnector.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FIRAnalyticsConnector.framework; path = Frameworks/FIRAnalyticsConnector.framework; sourceTree = ""; }; - FCDA7192A03D16F7CD1D5DB0E827BA04 /* QBImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBImagePickerController.h; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.h; sourceTree = ""; }; - FCEC38F8421233C14D48F446A407222B /* React-Core.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.xcconfig"; sourceTree = ""; }; - FCEEFA2D1D9902927071C8FBAA81460E /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; + FCC93B91F207812C7C1D44FB69C95083 /* EXImageLoader-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXImageLoader-dummy.m"; sourceTree = ""; }; + FCD33AC7A683628CABF9B4DE61ECAC31 /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; FCF61D9B2B75054A9A3185DDC609B7FF /* libSDWebImageWebPCoder.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libSDWebImageWebPCoder.a; path = libSDWebImageWebPCoder.a; sourceTree = BUILT_PRODUCTS_DIR; }; - FD0131611CE63C525179341D549052EB /* BSG_KSSignalInfo.c */ = {isa = PBXFileReference; includeInIndex = 1; path = BSG_KSSignalInfo.c; sourceTree = ""; }; FD022A7C3D909D8519F310D4392F2421 /* alphai_dec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = alphai_dec.h; path = src/dec/alphai_dec.h; sourceTree = ""; }; - FD1D39BC3FB463B61BE62887185FD727 /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; - FD39BEAA0C9C24C04CD7EF232446E9DE /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; - FD45C83428345C00F5023AA9C5BF666B /* ReactNativeART-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeART-dummy.m"; sourceTree = ""; }; FD463EFB922CF38263587F78A3E403E1 /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = FirebaseCore/Sources/Private/FIRComponentType.h; sourceTree = ""; }; - FD50D6AB7F115CD02425C3732120EE43 /* REATransformNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REATransformNode.m; sourceTree = ""; }; - FD5655BD93B9D77FEF9EFEE3EE93F3A6 /* BugsnagReactNative-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BugsnagReactNative-prefix.pch"; sourceTree = ""; }; - FDB10C3A017B3DFF534B9D8ADD932C16 /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevMenu.h; sourceTree = ""; }; - FDE9126A93A984EF18E41B9D0692BFBC /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; - FDFF3C5DAABF31BF9C9877B8AA180EBA /* RCTConvert+UIBackgroundFetchResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+UIBackgroundFetchResult.h"; sourceTree = ""; }; - FE01A817AF12C8D716A411A94FF9CEF5 /* LNInterpolation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LNInterpolation.h; sourceTree = ""; }; + FD58DB39F9A32D84F2801237B4423F13 /* REACondNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = REACondNode.m; sourceTree = ""; }; + FD6A7F7AF7A06D9D2D5EBC4E87A4E5DB /* QBImagePickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBImagePickerController.m; path = ios/QBImagePicker/QBImagePicker/QBImagePickerController.m; sourceTree = ""; }; + FDAF171CD6AD6E3563BCE2211C0F9FA2 /* RNNotificationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNotificationUtils.h; path = RNNotifications/RNNotificationUtils.h; sourceTree = ""; }; + FDB6F03379BB5DCC38B9907F97598F3E /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = ""; }; + FDD189A000A0EF9993C53FEEE2AF81FD /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; + FDDC908E683D379AE84D6E426DB81D17 /* RNFastImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNFastImage.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + FDDFA76BAC2F0F134DB4AD9EA37146E8 /* react-native-cameraroll-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-cameraroll-prefix.pch"; sourceTree = ""; }; + FE024E817AC1A13A002CF2102FBF3444 /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; + FE1964BB79974C13D7002EC611C003A2 /* RNFirebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNFirebase.h; path = RNFirebase/RNFirebase.h; sourceTree = ""; }; FE1CC5E059EA91AFC5ABF8BF527E9F10 /* huffman_utils.c */ = {isa = PBXFileReference; includeInIndex = 1; name = huffman_utils.c; path = src/utils/huffman_utils.c; sourceTree = ""; }; - FE22CAD0C10E2197AB90FCECDE48AD6F /* RNJitsiMeetViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNJitsiMeetViewManager.m; path = ios/RNJitsiMeetViewManager.m; sourceTree = ""; }; - FE2CA91659F87D0CA70D59B77940C1B7 /* RCTStatusBarManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStatusBarManager.m; sourceTree = ""; }; - FE36001D8E29C20BD2F0EF8388F1D719 /* RNFirebaseInstanceId.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFirebaseInstanceId.h; sourceTree = ""; }; - FE44415B2EA0C3B7EF3C39C4BD78AD6C /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = ""; }; - FE527001EC2F2CCA758ED3F7856D747B /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; - FE54087BE46CA64232A2F8C9CA43E859 /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; - FE6970F79EEA18E8655491063AC68EBB /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = SimpleLineIcons.ttf; path = Fonts/SimpleLineIcons.ttf; sourceTree = ""; }; + FE36AD354A26A507F517A0A4F4B1692A /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; + FE5E3DDE6DD52E7DD9A1126EAF36F66E /* RNPushKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNPushKit.h; path = RNNotifications/RNPushKit.h; sourceTree = ""; }; + FE682E6879BA8154495887920D01926F /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.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; }; - FE997B88F2CDCED8F816B2BBDD413FC7 /* react-native-slider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-slider.xcconfig"; sourceTree = ""; }; FE99DA2A671583AFDB9A25490E656721 /* FBLPromiseError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBLPromiseError.m; path = Sources/FBLPromises/FBLPromiseError.m; sourceTree = ""; }; - FECC64914591B823F88D64281B8C448E /* QBCheckmarkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBCheckmarkView.h; path = ios/QBImagePicker/QBImagePicker/QBCheckmarkView.h; sourceTree = ""; }; + FED0982B6F4929D35EDF03B04F6BCE1F /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = ""; }; FED3E487A355D9CE1B0445AF9E4FA899 /* GDTCORAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORAssert.h; path = GoogleDataTransport/GDTCORLibrary/Public/GDTCORAssert.h; sourceTree = ""; }; - FEEC298910EC23DF638A069E787F9F14 /* ARTShapeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ARTShapeManager.m; sourceTree = ""; }; FF00CDB7A8232AE4158B172CB16D57C2 /* animi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = animi.h; path = src/mux/animi.h; sourceTree = ""; }; - FF2FAA6E172C596B5567EA8AC6FC6A63 /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = ""; }; - FF3B4CF63FA866DA003B4BB5AE662AA8 /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; - FF3D3189034C9738319262D6183EC713 /* 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; }; + FF24D5393A4E5062742F0844057E3418 /* RNDateTimePicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDateTimePicker-prefix.pch"; sourceTree = ""; }; + FF2D5D8CC1056BBA90C406A003EF23EE /* BugsnagCrashSentry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BugsnagCrashSentry.h; sourceTree = ""; }; + FF3804F6E5B0A5D91DBA8A993D10FB6A /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspectorDevServerHelper.mm; sourceTree = ""; }; + FF47DDBF0E22453293ECB197BA2FC0C5 /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = ""; }; FF4A1A447F74EECB8C2AC14492FA6CA0 /* GDTCORReachability_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GDTCORReachability_Private.h; path = GoogleDataTransport/GDTCORLibrary/Private/GDTCORReachability_Private.h; sourceTree = ""; }; FF92B16CAA4A7AFB4FC58207B113E26A /* yuv_mips32.c */ = {isa = PBXFileReference; includeInIndex = 1; name = yuv_mips32.c; path = src/dsp/yuv_mips32.c; sourceTree = ""; }; - FFBE366BE491287C13480544CDF01F43 /* UMTaskManagerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.xcconfig; sourceTree = ""; }; + FFD0AEBB89BB36C053458AF452310619 /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; FFE34689D2E3DE37AC652BA9C6743AD3 /* FIRHeartbeatInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRHeartbeatInfo.m; path = FirebaseCore/Sources/FIRHeartbeatInfo.m; sourceTree = ""; }; /* End PBXFileReference section */ @@ -6780,13 +6811,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 209A305BF84067D6B0C97551AAECEE5B /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 21D6E00098A7CB90C0BA7E45C04305D5 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -7095,6 +7119,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + B6B295ECFF8B0B341BF334FEE8E81B65 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; B7B1FB20892F62F4621A9DC6EE73C7A3 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -7277,31 +7308,33 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + FFD53F02DE6776C8D6ECBFC967292969 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 00F55DC35114C7D7D2CF782C61A48436 /* Pod */ = { + 00D96BEE3FA814BC5DFC2C42D8607C95 /* Support Files */ = { isa = PBXGroup; children = ( - 4A6E490E7D23FE4702816503C7B1A0B9 /* LICENSE */, - 7EB33457377218882E985272151211DA /* react-native-keyboard-input.podspec */, - C4AAEC6AF84E482663BD55BB28C83C26 /* README.md */, + 5E6658E4489794B6871AB115234109D0 /* react-native-keyboard-tracking-view.xcconfig */, + 029605E4F75D599083442F50C89433FC /* react-native-keyboard-tracking-view-dummy.m */, + 274083A057DB57EAE21BA7522994583D /* react-native-keyboard-tracking-view-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-keyboard-tracking-view"; sourceTree = ""; }; - 0108BE42D9C315ECAB63835298547D11 /* EXConstants */ = { + 011563D36C5AE7076FD2BDDBB3FD0610 /* Pod */ = { isa = PBXGroup; children = ( - B1D848DB6A5AD8268BAB056A588CBF24 /* EXConstants.h */, - 67E4993CF7899F2EA58E49E1EA4F9C7F /* EXConstants.m */, - 2D7000D26ADA09093218DE8116F46D82 /* EXConstantsService.h */, - 977FEB663707366C327C47CC27CDA8C7 /* EXConstantsService.m */, - BF3427921F7C07DEFE41B3CC80B4ED1D /* Pod */, - 03336C25D335BB67084C1F9B2F959832 /* Support Files */, + C6A939BA0F9D37FB4EF4843C9BDD1A17 /* UMAppLoader.podspec */, ); - name = EXConstants; - path = "../../node_modules/expo-constants/ios"; + name = Pod; sourceTree = ""; }; 014C12EE5AF00EF9920FD4EE73C3B7A9 /* NSData+zlib */ = { @@ -7362,34 +7395,61 @@ path = FirebaseCore; sourceTree = ""; }; - 03336C25D335BB67084C1F9B2F959832 /* Support Files */ = { + 01C7302D0ED672161686C8416B303BED /* Pod */ = { isa = PBXGroup; children = ( - 2572341F607B3FA647DECA06B7E4D625 /* EXConstants.xcconfig */, - BBFCB5E60AC63130656AA75C26A0AA98 /* EXConstants-dummy.m */, - 663177FC853546862F39259A139D0EC0 /* EXConstants-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXConstants"; - sourceTree = ""; - }; - 038B7759D16622B2EAF884C5E723B119 /* Support Files */ = { - isa = PBXGroup; - children = ( - 68210CC2ED4C6F498EA4DAAC3D560975 /* UMFaceDetectorInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; - sourceTree = ""; - }; - 03F78F2C0926E8002C0CCD14B6881AF6 /* Pod */ = { - isa = PBXGroup; - children = ( - 5643253F7ED7DBBE32B50F6720A83922 /* FBLazyVector.podspec */, + 8480EABCD5953D075B72DDA610CCB1C3 /* LICENSE */, + 4755639FE46A04DEDDB05CF7A694FE83 /* README.md */, + 75DB16D82F7593F2F8F2D87BDDC52B4E /* RNVectorIcons.podspec */, ); name = Pod; sourceTree = ""; }; + 0204F8EA7BF28F4CDE8FD3E6B827969C /* ios */ = { + isa = PBXGroup; + children = ( + 8DD126C0D073D3C5398EF812500A915B /* RCTTurboModule.h */, + 3DE1E6EB37A7568CECB81081794A3F18 /* RCTTurboModule.mm */, + 93E0A184E9DA535352EF48AF9C5EBF68 /* RCTTurboModuleManager.h */, + 1DD923C6F64649147DDB235950480E46 /* RCTTurboModuleManager.mm */, + ); + name = ios; + path = ios; + sourceTree = ""; + }; + 0277853A137F34F9C5C0831B3D50330F /* Pod */ = { + isa = PBXGroup; + children = ( + 3F7EFB01B72D715F81A11B15CC580F24 /* UMConstantsInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 035311CECB99E4F29445B1FE7AE0FFC9 /* Support Files */ = { + isa = PBXGroup; + children = ( + 34D25768B4EDCBE8AD32CF4F46796704 /* react-native-notifications.xcconfig */, + 83E049A998106BC1D48E224B840B4E17 /* react-native-notifications-dummy.m */, + 94C76B3BA4849C297A83C046F72B0584 /* react-native-notifications-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-notifications"; + sourceTree = ""; + }; + 03E7D96C0B8726614C4C38EE7E118169 /* react-native-slider */ = { + isa = PBXGroup; + children = ( + CF81CBD085AB92693642D6E6BC5FD9EE /* RNCSlider.h */, + F367B9EDD6B2025C9972D1F38FCEAC6C /* RNCSlider.m */, + 2326D21F65C132C6B573D2F986450639 /* RNCSliderManager.h */, + 0630350963F5CC0D94D065864C0C43AF /* RNCSliderManager.m */, + 732DAC917BF654B9AE7754EABC05C472 /* Pod */, + 17792359A39239CE7610A06C93D24844 /* Support Files */, + ); + name = "react-native-slider"; + path = "../../node_modules/@react-native-community/slider"; + sourceTree = ""; + }; 043F146E221D020B79B780B0AA0BA24D /* GoogleUtilities */ = { isa = PBXGroup; children = ( @@ -7407,188 +7467,81 @@ path = GoogleUtilities; sourceTree = ""; }; - 04CBC310A139227D52BFCB6C65576A06 /* KeyCommands */ = { + 06DA4245F4026EFCD52E35238DDAB908 /* FBLazyVector */ = { isa = PBXGroup; children = ( - 75C00F147A90C528C89CF4C55C3B7E47 /* RCTKeyCommandConstants.h */, - 4B71D632E9BFB739138DDB7552F5C4ED /* RCTKeyCommandConstants.m */, - 03D2EC049AA7AA9388E7BE1D539DDC8A /* RCTKeyCommandsManager.h */, - A54A2C874DBDF53D30E7B00C51E872E6 /* RCTKeyCommandsManager.m */, - 13848E846864BF0A1551D42632F75376 /* Pod */, - 2B9A9703A1B7C417A884092F45C17062 /* Support Files */, + 0D3425F077BBD8F4E0203BAAC9D87879 /* FBLazyIterator.h */, + BB0569876AE1A1CCE44FAD816F996875 /* FBLazyVector.h */, + 7BA28E9429A276129A054FF44198416A /* Pod */, + D4FDB6459CDA592A6EA166545D9D82C1 /* Support Files */, ); - name = KeyCommands; - path = "../../node_modules/react-native-keycommands"; + name = FBLazyVector; + path = "../../node_modules/react-native/Libraries/FBLazyVector"; sourceTree = ""; }; - 04EBDB7FE2BA2CF97DDAD1DCBC419C4C /* Pod */ = { + 06F116E1BD272BD0E252E25498153A8A /* Pod */ = { isa = PBXGroup; children = ( - 9DA067396E70678CC62C010DF21ABF88 /* React-cxxreact.podspec */, + 852065F2CC1E88EB2D6A90A39EFBFCEE /* LICENSE */, + A22F94C05440702EAEA8551097983106 /* react-native-background-timer.podspec */, + E3B9AC74E5B90C3FC6DDCFF3A42F0DE5 /* README.md */, ); name = Pod; sourceTree = ""; }; - 0519BCF2CC425E73BBFC88DDBD46E891 /* instanceid */ = { + 073E4DD5DD409A658DE618555EF0D736 /* turbomodule */ = { isa = PBXGroup; children = ( - FE36001D8E29C20BD2F0EF8388F1D719 /* RNFirebaseInstanceId.h */, - 866ADD8883AD84B5DB130DEA1F2DAADE /* RNFirebaseInstanceId.m */, + E538D4FDC6999A30DA004E57B587F5E3 /* core */, ); - name = instanceid; - path = RNFirebase/instanceid; + name = turbomodule; sourceTree = ""; }; - 05284A9D524DADB48163C3176DCF6738 /* Support Files */ = { + 080326E9162A227D73472C5A1BF8E438 /* Support Files */ = { isa = PBXGroup; children = ( - 07E63C29FE4669ACECF77D183070A956 /* RCTTypeSafety.xcconfig */, - BD9BB7CAAB97EC50B163F88F0959E1C5 /* RCTTypeSafety-dummy.m */, - 0572B4EB9F4F75A40B37AA4D6D5EA83D /* RCTTypeSafety-prefix.pch */, + 42E629407F5F9986664769B85BDE758C /* RNFastImage.xcconfig */, + 923936132C5FF045A354B7B75A74E01D /* RNFastImage-dummy.m */, + 8DBF610409B21DC9EF67D81A4DBDBC6A /* RNFastImage-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/RCTTypeSafety"; + path = "../../ios/Pods/Target Support Files/RNFastImage"; sourceTree = ""; }; - 0555E870410312281AA809A216972B28 /* Reporting */ = { + 08F3E939EAA8D9D6CB3414A748368A0C /* Support Files */ = { isa = PBXGroup; children = ( - EFB4C0E900E6E484AEAB8ACC2FA45DBD /* Filters */, - ); - name = Reporting; - path = Reporting; - sourceTree = ""; - }; - 05AA7D63524C780F8D1CCDBE5A692543 /* UMPermissionsInterface */ = { - isa = PBXGroup; - children = ( - 1A46A1EA62BE263FB54EF47F2F178E26 /* UMPermissionsInterface.h */, - 67591D72716A6D2B030010BEEFABDD20 /* UMPermissionsMethodsDelegate.h */, - 47AB5F1B3F88C7C9CEA2079AE84B6160 /* UMPermissionsMethodsDelegate.m */, - AFB186041139443697595C938D376E59 /* UMUserNotificationCenterProxyInterface.h */, - 7FE4CE3CD20F1BD4D370CF78388CD2A3 /* Pod */, - 09C9FD66AD17F302A8B6D59A4772A004 /* Support Files */, - ); - name = UMPermissionsInterface; - path = "../../node_modules/unimodules-permissions-interface/ios"; - sourceTree = ""; - }; - 05F36E9E3633506313AD21BF14F2FFE1 /* LNInterpolation */ = { - isa = PBXGroup; - children = ( - 8008B5C7C293AD72B6A749C3E088EA53 /* Color+Interpolation.h */, - B3D82DD98071E79274A3019802A60E37 /* Color+Interpolation.m */, - 46966B32B9B5CCB0A50F9C507E414FEE /* LNAnimator.h */, - BF8CBE83E30879887DB3CF9E8377D2A3 /* LNAnimator.m */, - CD0DCBF9B0CF8C7D468B1236B3A03BB6 /* LNInterpolable.h */, - B75027B3D631BBE631033FCE88791895 /* LNInterpolable.m */, - FE01A817AF12C8D716A411A94FF9CEF5 /* LNInterpolation.h */, - 04758008ADD0BC76EE636BDA8FCEE11E /* NSValue+Interpolation.h */, - ); - name = LNInterpolation; - path = lib/ios/LNInterpolation; - sourceTree = ""; - }; - 062B03BD8A0EE929780442DBF221B7D2 /* Singleline */ = { - isa = PBXGroup; - children = ( - 17B79ED9D31C625708EBCDCECF41D213 /* RCTSinglelineTextInputView.h */, - 860C87FEF5C62CB1C641767D3D32105A /* RCTSinglelineTextInputViewManager.h */, - FD39BEAA0C9C24C04CD7EF232446E9DE /* RCTUITextField.h */, - ); - name = Singleline; - path = Singleline; - sourceTree = ""; - }; - 06355F065818ABD12CBB4F37791ADED7 /* UMFontInterface */ = { - isa = PBXGroup; - children = ( - E4EC7D40A947B771E7D48FF7146A8F4A /* UMFontManagerInterface.h */, - C5B2DD665C499EAED2754CDDD7C983D0 /* UMFontProcessorInterface.h */, - 8ADA8B4CB606289EF9C789BAEAEEDD3F /* UMFontScalerInterface.h */, - 521BB2D5E0F2863E5E6C5398FA87E31E /* UMFontScalersManagerInterface.h */, - CAD3AD004E8A62A680BA555CC76ADA79 /* Pod */, - 9D2BC5367D11C623B7A7CC1EEB3764F1 /* Support Files */, - ); - name = UMFontInterface; - path = "../../node_modules/unimodules-font-interface/ios"; - sourceTree = ""; - }; - 0980D52EB3205083BC6C9AFC082407F1 /* CxxUtils */ = { - isa = PBXGroup; - children = ( - 990864F692682DB3E444C12A8510DF88 /* RCTFollyConvert.h */, - A084251F44171146FE7CC4E3973E0896 /* RCTFollyConvert.mm */, - ); - name = CxxUtils; - path = React/CxxUtils; - sourceTree = ""; - }; - 09C9FD66AD17F302A8B6D59A4772A004 /* Support Files */ = { - isa = PBXGroup; - children = ( - F2B2A1B43A483D6E4AEDD76F4C2712A5 /* UMPermissionsInterface.xcconfig */, - DB1581503FD52F37AC9575366D47D3DE /* UMPermissionsInterface-dummy.m */, - C2645E5006C70D6B624147C383C5DD7D /* UMPermissionsInterface-prefix.pch */, + 759D90D1019D505AD70BE871F8950D2B /* ReactCommon.xcconfig */, + D237A584B9F9D09B744C5B9A291ED87F /* ReactCommon-dummy.m */, + F44D5DE9F47CC610A0799CDC1E8F49F8 /* ReactCommon-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; + path = "../../../ios/Pods/Target Support Files/ReactCommon"; sourceTree = ""; }; - 0A30D3C6A0F222E474D2865155DF04AD /* RawText */ = { + 09F11580B1F970138A816DD42C753E8E /* RawText */ = { isa = PBXGroup; children = ( - 05B1E533FC7DC6FD39092E4978318E1A /* RCTRawTextShadowView.m */, - F40B009B8CEA51AFD8683830B1551BE1 /* RCTRawTextViewManager.m */, + 6721B45513882BF506BDB6A743EF761F /* RCTRawTextShadowView.m */, + 82451E45D911AAD9D3D2D625AD21505B /* RCTRawTextViewManager.m */, ); name = RawText; path = RawText; sourceTree = ""; }; - 0A512C0C912127EAB4B3483C8E814737 /* Nodes */ = { + 0A3E08B3A084D45CA8AF3B79FEBFF8C3 /* UMReactNativeAdapter */ = { isa = PBXGroup; children = ( - 78A3BCA8761ECE399D0A651FD7544CDD /* RCTAdditionAnimatedNode.m */, - 262B0316A2D988E70A636C50AF446192 /* RCTAnimatedNode.m */, - 40FC5E306ABABA27B01035E205968CA8 /* RCTDiffClampAnimatedNode.m */, - 484B1A9BB8E3EDB0B68036F60782DB89 /* RCTDivisionAnimatedNode.m */, - E9EC10322167045A8F30D69DE3F0EC78 /* RCTInterpolationAnimatedNode.m */, - 579D581C9B4770A71C03452C80A3F9C7 /* RCTModuloAnimatedNode.m */, - 58B882052DCBD50DA678B25F6F262911 /* RCTMultiplicationAnimatedNode.m */, - 3CB51127FF6C0976D95599F103AD29CA /* RCTPropsAnimatedNode.m */, - A70F77CBF361A7F8726BDF350E3BC69B /* RCTStyleAnimatedNode.m */, - 2293149BED2F89D52C9CA71F462B9D70 /* RCTSubtractionAnimatedNode.m */, - 4EF2041609FEE8332151E60184ABDACE /* RCTTrackingAnimatedNode.m */, - 58E333E7BC1658F3FCDB19F8D52409AD /* RCTTransformAnimatedNode.m */, - EB5684495A6F8B21DC40DE6D45F5775C /* RCTValueAnimatedNode.m */, + 7D10630D29AFCDED6505AC01F612060B /* UMBridgeModule.h */, + A9EE28D5510AFD24F5A4E92922F72A9D /* Pod */, + AAC4B0A2C757525970DB19C0391A29CF /* Services */, + 81188818AA0A0B032566FB0CED8C0C05 /* Support Files */, + D5656FDA6FD66D5606FAF2B5A9F9824E /* UMModuleRegistryAdapter */, + 2C55E145DD9CE644968F4515E9F4EA17 /* UMNativeModulesProxy */, + DDF5F20BC9738C8599221D84B8F0C10B /* UMViewManagerAdapter */, ); - name = Nodes; - path = Nodes; - sourceTree = ""; - }; - 0AB32250CC0FF1EB2EA732B71106E069 /* Support Files */ = { - isa = PBXGroup; - children = ( - 2D70BAEE4F12958BC061A7CFE3DEF4B7 /* React-RCTSettings.xcconfig */, - 15B2FB55546B58F6FC0E141AAB476DEA /* React-RCTSettings-dummy.m */, - B81C124EE9C0D6157ED947AA568C3E8C /* React-RCTSettings-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTSettings"; - sourceTree = ""; - }; - 0B29B022FC7343A88C6F63FF24ACC458 /* UMModuleRegistryAdapter */ = { - isa = PBXGroup; - children = ( - 2FE1D8F88AA14DB45E011BA7F577D0DB /* UMModuleRegistryAdapter.h */, - B4E7A8B4EF084DEB4E3DBB9421DF309E /* UMModuleRegistryAdapter.m */, - 9F0B55389BBCE3DC517D5A3A2ECFFBF5 /* UMModuleRegistryHolderReactModule.h */, - 876BB29C527125661AD20D22BE844A7D /* UMModuleRegistryHolderReactModule.m */, - 7F3ADF9C76F2B35E241D0673AC307509 /* UMViewManagerAdapterClassesRegistry.h */, - D98357BE6E255740903B14E91A93835B /* UMViewManagerAdapterClassesRegistry.m */, - ); - name = UMModuleRegistryAdapter; - path = UMReactNativeAdapter/UMModuleRegistryAdapter; + name = UMReactNativeAdapter; + path = "../../node_modules/@unimodules/react-native-adapter/ios"; sourceTree = ""; }; 0B306EB60859A04AF7CB557F7C204072 /* nanopb */ = { @@ -7609,67 +7562,80 @@ path = nanopb; sourceTree = ""; }; - 0BCC0173E4430421EB892B3223624CAB /* RNGestureHandler */ = { + 0B454300BFDB7ADC3D5E4D6701B3B593 /* Support Files */ = { isa = PBXGroup; children = ( - AD9FBA4B78EF69235DD6D73B54188C83 /* RNGestureHandler.h */, - 44EE8E6F45961F400E818F1780116AB7 /* RNGestureHandler.m */, - 6D70EC68436BCAFD870998C26D22668D /* RNGestureHandlerButton.h */, - 134737EAD8237E8D08ECB9ED16EB2E1F /* RNGestureHandlerButton.m */, - 61EB1258716B8DFD1A247EF4CE6BEB72 /* RNGestureHandlerDirection.h */, - 300582BDD4E0D559A2CE123B7583EB2F /* RNGestureHandlerEvents.h */, - 857BD78B074C625BC77FD4BDC49254F1 /* RNGestureHandlerEvents.m */, - 064E53E98DD836B5F60958B76A781812 /* RNGestureHandlerManager.h */, - CE9AE7FF8E58CF83EA0A6D584CD74613 /* RNGestureHandlerManager.m */, - 13FC8FAFD490E87CCFC0834A8B362450 /* RNGestureHandlerModule.h */, - 8E3EEFACE8AF7F4F9675941712ED3112 /* RNGestureHandlerModule.m */, - A0441F83EA88D5BC4EA94D4DC5961DDE /* RNGestureHandlerRegistry.h */, - 7377EDAD93DD9230D8AE5DCD1AE71EA6 /* RNGestureHandlerRegistry.m */, - AA6AABAC22A2C9E92D9FDC47AE29EF1B /* RNGestureHandlerState.h */, - F8301A0F6A92FF3E7FBDCFC398D25ABB /* RNRootViewGestureRecognizer.h */, - 94B487F259C39A019C26E498C77F346A /* RNRootViewGestureRecognizer.m */, - 997FBCD8BA4E893331F3CE04C6A71953 /* Handlers */, - B8662F96699262D7CDE400929D0F2EFD /* Pod */, - 3F91460DEF84E7B3506F93406EB64C9F /* Support Files */, + 2BEA966F870B42067C20AF302F59BCAD /* React-RCTAnimation.xcconfig */, + 78B21926C799D90FF38F3C01B49421DC /* React-RCTAnimation-dummy.m */, + F593B54165E01747415919096244018D /* React-RCTAnimation-prefix.pch */, ); - name = RNGestureHandler; - path = "../../node_modules/react-native-gesture-handler"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTAnimation"; sourceTree = ""; }; - 0C4E5B60EEA29CC3C72E554E753FDE08 /* Text */ = { + 0BC7458E471671745D749CEDDC1AAA49 /* Source */ = { isa = PBXGroup; children = ( - 84ED2683F6DA3A2351D5771E9A1DCB47 /* NSTextStorage+FontScaling.m */, - 9B2D64547DAA0DB27D79EDCA28E88DB4 /* RCTTextShadowView.m */, - 75F81FBE7F9056B29EB03FEAEDB2E39A /* RCTTextView.m */, - 3D448E23AE03762C59E62FEE30B234CF /* RCTTextViewManager.m */, + DF78D4F2DFA4FE1826958AA01886153F /* KSCrash */, ); - name = Text; - path = Text; + name = Source; + path = Source; sourceTree = ""; }; - 0D757575D006C36AF5CA1329845EEDF9 /* RCTNetworkHeaders */ = { + 0D0AD3655418022438CEF1B152B5381E /* EXAV */ = { isa = PBXGroup; children = ( - 59C082FCEABEBA37724CCF76C16DECE1 /* RCTDataRequestHandler.h */, - E8FFCBFFB676EA7DA34B1A9054586EC1 /* RCTFileRequestHandler.h */, - 0F66C4D688719C36A136311FAE73BF2F /* RCTHTTPRequestHandler.h */, - A0969EF9EEFF594E26EF1F633AD89612 /* RCTNetInfo.h */, - 8E7258DE9C05C4BAE7DD514FD591319E /* RCTNetworking.h */, - 06A53493AE9D625B0FCD7CED36565037 /* RCTNetworkTask.h */, + C759BECA96DBE8903C63C266DAEE490D /* EXAudioRecordingPermissionRequester.h */, + CD3BFC7884A73E8842C521A4FC73D14C /* EXAudioRecordingPermissionRequester.m */, + 83FA84340E3EE860FF6AE948F657555C /* EXAudioSessionManager.h */, + E78BB7DD764E162B6A016C59A4F38920 /* EXAudioSessionManager.m */, + D8F9BA04E20185B2AE77BF40BA62A7E8 /* EXAV.h */, + FA31E7A7AB0C7A25E10AC0266F01FFDF /* EXAV.m */, + 06A23A775D0C745D7DE8C3DDEC5797F7 /* EXAVObject.h */, + BDBB11DCB79434FB7CF2C3941984DB0E /* EXAVPlayerData.h */, + 1AADD43B283931056291E3578A535816 /* EXAVPlayerData.m */, + 144D6C8A5025F257DC007BD5977E0B5A /* Pod */, + B9F5D049D13D4CF55A254856B69E82C8 /* Support Files */, + 3A54A43E35FAC881086B302605819C14 /* Video */, + ); + name = EXAV; + path = "../../node_modules/expo-av/ios"; + sourceTree = ""; + }; + 0D76D3132CA1E2C3BDBD2B0E7FE81270 /* RCTNetworkHeaders */ = { + isa = PBXGroup; + children = ( + 9766B809AC1E5C70E1EF8A7B6FB8914A /* RCTDataRequestHandler.h */, + 8F66E7205BB7E21813556AB6A7D50114 /* RCTFileRequestHandler.h */, + 705CCE9E05509627FF89A09250AE4165 /* RCTHTTPRequestHandler.h */, + AFAAD27A524D6E425C12216C7F486100 /* RCTNetInfo.h */, + B32D5B813D502A8FD58C0B0A8966E345 /* RCTNetworking.h */, + 600667F42973CEECCEE935951B13F5DD /* RCTNetworkTask.h */, ); name = RCTNetworkHeaders; sourceTree = ""; }; - 0DAD9F1268C0D710813F1691F8503CDF /* Support Files */ = { + 0DC838F3F3ED8AA4D2A5789BCA8B9AA8 /* Support Files */ = { isa = PBXGroup; children = ( - CD3B1E4836C2B5451865F6CBA58759A1 /* react-native-cameraroll.xcconfig */, - 40C3D9CD1DE46BB7625268A30775B549 /* react-native-cameraroll-dummy.m */, - BFA7CD588CFF3BE372A07F620989FC01 /* react-native-cameraroll-prefix.pch */, + D879E3AFB811F795F505E30DA3F55296 /* RCTTypeSafety.xcconfig */, + 26E43B346470D073A3946E6E3CE86745 /* RCTTypeSafety-dummy.m */, + 2AF2154BB868D31113AA5DBFC0490F1B /* RCTTypeSafety-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/react-native-cameraroll"; + path = "../../../../ios/Pods/Target Support Files/RCTTypeSafety"; + sourceTree = ""; + }; + 0E7C726891F7E52D63E98B208261E36F /* React-jsinspector */ = { + isa = PBXGroup; + children = ( + 924751E7D1039F4FB0EDC9094378B4BF /* InspectorInterfaces.cpp */, + B24AA181DDDACF562563B87E0E060460 /* InspectorInterfaces.h */, + 7C37218A8059CA8EC3EE33A1EAF18B86 /* Pod */, + 5002B09A7C6F3CECBD1866A6EE26C271 /* Support Files */, + ); + name = "React-jsinspector"; + path = "../../node_modules/react-native/ReactCommon/jsinspector"; sourceTree = ""; }; 0EB22BBFAB12DE43BF0B817235CAED5A /* GoogleDataTransport */ = { @@ -7724,26 +7690,15 @@ path = GoogleDataTransport; sourceTree = ""; }; - 10706D9F20449B801120AB8C1CF549BB /* Surface */ = { + 10370B45AC99A668C3F2518C9359639F /* Support Files */ = { isa = PBXGroup; children = ( - 69AF57D8E15BF741474E5EDAD33E1515 /* RCTSurface.h */, - 31B96A5F8F286666D7FBC7677AB25372 /* RCTSurface.mm */, - 040AE7C4C5960E5068564B1669AC7E23 /* RCTSurfaceDelegate.h */, - 1DB3A55DA2EE23AA22896E1AAC35CE39 /* RCTSurfaceRootShadowView.h */, - E3BC9591E6454450B9E4A075832684B4 /* RCTSurfaceRootShadowView.m */, - 47509D15028B1CA058D32CA13B8666FB /* RCTSurfaceRootShadowViewDelegate.h */, - 7F7FAF4767F2073315B68AA2ACF9D43F /* RCTSurfaceRootView.h */, - C09B08B9F9590C063A274292A00ED08A /* RCTSurfaceRootView.mm */, - 11149B0B1D22FEDD1C67330D28A66FB5 /* RCTSurfaceStage.h */, - 246F9D8018A006460594F30A65BFF960 /* RCTSurfaceStage.m */, - 042BD1F843AF0B4A4B0B1CF490C929B6 /* RCTSurfaceView.h */, - 1BC427201794367BD329171E92CA414C /* RCTSurfaceView.mm */, - 92991E50D3464427C3917E08D7A6B7F7 /* RCTSurfaceView+Internal.h */, - 79F5501C66460D5A5B0C41CD2329C92D /* SurfaceHostingView */, + 2A41668B7A227780F09DE51D11387E2B /* UMPermissionsInterface.xcconfig */, + 296ED7582318BBF5FB39B24E3E2A0470 /* UMPermissionsInterface-dummy.m */, + 4AE4B069B3436F7C889EFE20F0684128 /* UMPermissionsInterface-prefix.pch */, ); - name = Surface; - path = Surface; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; sourceTree = ""; }; 10D07FABCF69DD0EE97B5E881DE54D1F /* Environment */ = { @@ -7769,6 +7724,18 @@ path = "../Target Support Files/PromisesObjC"; sourceTree = ""; }; + 11C372AE7D76F21C17C5164D78F75EB1 /* RNRootView */ = { + isa = PBXGroup; + children = ( + 35F0BA05BEECBF2107FEA371E9D74683 /* RootView.h */, + 6D1B26716E0444055D19F8BE193F51AD /* RootView.m */, + DBB6767F634D140A8B2B723353E7299E /* Pod */, + DDD2D92B40A00B4FEA77410C5F4356E9 /* Support Files */, + ); + name = RNRootView; + path = "../../node_modules/rn-root-view"; + sourceTree = ""; + }; 11D3F6AF03D8A3626A7FD39925D9BB19 /* webp */ = { isa = PBXGroup; children = ( @@ -7924,119 +7891,50 @@ name = webp; sourceTree = ""; }; - 11EAAA87E41718DFE4B6CF0164C9C043 /* EXFileSystem */ = { + 123B8222D9E0AABD1CBFE27A180152AA /* BaseText */ = { isa = PBXGroup; children = ( - ACD2F3F414E96D13C35322EF4AE69D91 /* EXDownloadDelegate.h */, - B1B7A66CA40B037C34377CACAECC1D55 /* EXDownloadDelegate.m */, - 42BFE991830D7F84E916413983023C1D /* EXFilePermissionModule.h */, - B0FFA6C80F8A67966392DB73CE915CCC /* EXFilePermissionModule.m */, - 3D5FB42ADEAA4E9B94CDE9C1D07EEB21 /* EXFileSystem.h */, - 6F0C3E5F49ADE324BFA3AEB74AA646D0 /* EXFileSystem.m */, - 297CEC882720276F40987482F9ECE587 /* EXFileSystemAssetLibraryHandler.h */, - FBD303282921ED94222CED8173EB6121 /* EXFileSystemAssetLibraryHandler.m */, - E31BAB82E514EC52EC442F809703ABE4 /* EXFileSystemLocalFileHandler.h */, - D4D3E4C632A4B02346E1FCF568BC9511 /* EXFileSystemLocalFileHandler.m */, - 2C0FDDCA0EDAB645B567525657900B48 /* Pod */, - 67EC2A4C501AE8F3AF020AA7EB4D9AE4 /* Support Files */, + 5E9B9CADDD9A79257A18CB6FF68785E0 /* RCTBaseTextShadowView.m */, + FDD189A000A0EF9993C53FEEE2AF81FD /* RCTBaseTextViewManager.m */, ); - name = EXFileSystem; - path = "../../node_modules/expo-file-system/ios"; + name = BaseText; + path = BaseText; sourceTree = ""; }; - 120449DC76C4BA02CB26007CA203CA08 /* Modules */ = { + 1253B43AD4B219811D516CD43567CB45 /* Support Files */ = { isa = PBXGroup; children = ( - 21FD64ECA5043E71869A816326A90245 /* RCTAccessibilityManager.h */, - 685CC9ED7AA857F8F83C5CE07C555EE5 /* RCTAccessibilityManager.m */, - 493B0A519C945C32863CCC3752FB6F29 /* RCTAlertManager.h */, - 22B34F12C3336D3E628AAEBD664D5DC4 /* RCTAlertManager.m */, - 303DE418C5DFB23A4BD54D9484505CE8 /* RCTAppState.h */, - F066D29AC5292924001F77DF2C215838 /* RCTAppState.m */, - 1906556C45AB84FAE5BA371126C72B3B /* RCTAsyncLocalStorage.h */, - 2B926F3CE50538B2642D217F1B08F0FF /* RCTAsyncLocalStorage.m */, - 21DF6D72948E115B6A80FA386B080004 /* RCTClipboard.h */, - 37D411FC895F637092612CAA667C9BA8 /* RCTClipboard.m */, - 23B6D424AE8030B661B6ACEC3201FD55 /* RCTDeviceInfo.h */, - 9E7A416F75D848938F7E26374B24D1B1 /* RCTDeviceInfo.m */, - DCA36AA1CA0B92BA681E7562A9AB8210 /* RCTDevSettings.h */, - 9AFB4B5E87A09ABC0522AEC0E59E56E1 /* RCTDevSettings.mm */, - 32359779BFF3D480C74A6490AAE408E4 /* RCTEventEmitter.h */, - DB72DE39D34AA04FAB7559A9059240F1 /* RCTEventEmitter.m */, - 01D1031E2444DF454E531A9DC65702B7 /* RCTI18nManager.h */, - 83882F5B7809A24B561A246EDBFD3F52 /* RCTI18nManager.m */, - 8C217182A631F4DEB8799FFDF7CFBBA2 /* RCTI18nUtil.h */, - 79290D430AEE27ED0F3A2ADD6900A403 /* RCTI18nUtil.m */, - 890E89C000ECD7E2BA73CA6DA84913D5 /* RCTKeyboardObserver.h */, - B925713E8B07BC43A6B251B538AD3EA9 /* RCTKeyboardObserver.m */, - 02B75C8F90265EEBA66E0C8EE71B6B25 /* RCTLayoutAnimation.h */, - ED798D51043B425B8A8DAECA50899214 /* RCTLayoutAnimation.m */, - E82B7D1C30D1AEB3E504A3713A5D962B /* RCTLayoutAnimationGroup.h */, - 6522F588FD87E22B716396B0BB2FCC23 /* RCTLayoutAnimationGroup.m */, - CEFD06A3C0255C0DD7E540F9AD5E5E2B /* RCTRedBox.h */, - 33730729FF01A3597D03942C649B47AF /* RCTRedBox.m */, - F41AA16F5D4130B8C097B07033C1EECE /* RCTRedBoxExtraDataViewController.h */, - E75A7D5A4539B2E0537A5A61616245AB /* RCTRedBoxExtraDataViewController.m */, - 58016F2081EF1C207B2899B6AED25B75 /* RCTSourceCode.h */, - FB82D4881857C78D4F580048CDB64972 /* RCTSourceCode.m */, - DE49638ADFC5C297F8F611DD713D98D5 /* RCTStatusBarManager.h */, - FE2CA91659F87D0CA70D59B77940C1B7 /* RCTStatusBarManager.m */, - EA217BFC56D7D63C24A2E2EFD8B69C20 /* RCTSurfacePresenterStub.h */, - 3C7816C48F52BFEBC58707E468ECDB58 /* RCTSurfacePresenterStub.m */, - F43996E789C2F95C237FF3F6B4F319D0 /* RCTTiming.h */, - 1ACF8AC78298B41C94A8D5D65AAFE144 /* RCTTiming.m */, - 46FDA105CF97FF6CDA83F151FAE0A177 /* RCTUIManager.h */, - 7E2A53CB11727F0EB1B2BBB80114F6A7 /* RCTUIManager.m */, - 25AF19ED10701324D121CDC03B977D52 /* RCTUIManagerObserverCoordinator.h */, - CCBC60AE51C7D42660263B60D020BCE6 /* RCTUIManagerObserverCoordinator.mm */, - 0D9CE7D0FA1F5BD8EE21C37BD6C1D84D /* RCTUIManagerUtils.h */, - 595749AF0F0544A02F47ECF6633DA760 /* RCTUIManagerUtils.m */, + E37FA286A65A13B6EACE4F2949703FCF /* RCTRequired.xcconfig */, ); - name = Modules; - path = React/Modules; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/RCTRequired"; sourceTree = ""; }; - 128DD2D6777086DF355C7A302067952B /* Pod */ = { + 13D0150FB6F1AFFECBEEE74FB1EF69F5 /* Pod */ = { isa = PBXGroup; children = ( - B70675BF0C1999E6AEA7FB2565BD14B1 /* RCTRequired.podspec */, + 28D8934171C9DF01D91B4902E9616958 /* UMSensorsInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 1301928DEE837520A9DEDBAC7CFCBD2D /* Pod */ = { + 144D6C8A5025F257DC007BD5977E0B5A /* Pod */ = { isa = PBXGroup; children = ( - 4996AD4BD0A44C3FF79F68CA398753DB /* android_date.png */, - DB303D5D25308219FA52586D746000CB /* android_time.png */, - E5BC043446381F3ACBB8C03306F65C02 /* ios_date.png */, - 8D04867868C5AB54EB9E1751823E27A9 /* ios_time.png */, - 6BC377C2410078E21BC7A222BBC7FA10 /* LICENSE.md */, - 0FC60135AD706121FC84515E79346E05 /* README.md */, - 7CFC9E19A8DF78DB1D83D66B5CFB2A5B /* RNDateTimePicker.podspec */, + DE76A96D81633774F56F33EE3C612B6A /* EXAV.podspec */, ); name = Pod; sourceTree = ""; }; - 130CAD7A6F67969E41965F3A6A54A816 /* UMBarCodeScannerInterface */ = { + 15788066B0B236881C557818E710856F /* Support Files */ = { isa = PBXGroup; children = ( - A0D3AC405D78D292A38020CE430D431F /* UMBarCodeScannerInterface.h */, - 28DAE90048BA78A30F300F63FB365F48 /* UMBarCodeScannerProviderInterface.h */, - DCC3BE31FD5DDBB073F9D01EE4C7AA92 /* Pod */, - 81FC0AFBFD957FEFD16E02FD14046D89 /* Support Files */, + 325E42DDCF9C6C3954ED8A465D38C362 /* BugsnagReactNative.xcconfig */, + D8806E6C372CF900927E6CE9A7101DAB /* BugsnagReactNative-dummy.m */, + 3461E0B242016ACE7B2764548891EC32 /* BugsnagReactNative-prefix.pch */, ); - name = UMBarCodeScannerInterface; - path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; - sourceTree = ""; - }; - 13848E846864BF0A1551D42632F75376 /* Pod */ = { - isa = PBXGroup; - children = ( - 082D69279D22CB77C22AE6C1AC9A531A /* KeyCommands.podspec */, - 0EF0FE62DAB45ACD6147B1C7764C1870 /* README.md */, - ); - name = Pod; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/BugsnagReactNative"; sourceTree = ""; }; 15A7F9318FA0157E39897677596C6638 /* Frameworks */ = { @@ -8048,152 +7946,93 @@ name = Frameworks; sourceTree = ""; }; - 15CEE78E3FCAEDC7C07E9349C8F8A604 /* Support Files */ = { + 15BAE439160F6831E0700FC9268F6B90 /* event */ = { isa = PBXGroup; children = ( - EC88000ED677B260937D884184B39666 /* React-RCTText.xcconfig */, - 96A7EAC83659ECF44DB12C551B618B3A /* React-RCTText-dummy.m */, - 6CFDF7B2EFA01E25A3EF28BDD79B27B9 /* React-RCTText-prefix.pch */, + B38A62D77E3510713ED69055527540B0 /* event.cpp */, + FBBA4243BD0169C8F395341965625008 /* event.h */, + ); + name = event; + path = yoga/event; + sourceTree = ""; + }; + 15C35EE578FECE5642F4801D79B8FD3B /* RCTBlobHeaders */ = { + isa = PBXGroup; + children = ( + FBF562C3060334988DA10DB6D86B54E2 /* RCTBlobManager.h */, + A37B85ACEC04F42234F39F36922AF4DF /* RCTFileReaderModule.h */, + ); + name = RCTBlobHeaders; + sourceTree = ""; + }; + 16A8E7E73DC968A6084B1CC63E8D9EA4 /* ReactNativeART */ = { + isa = PBXGroup; + children = ( + 4A71F41A03D4C4E9AEB5A2AF289501D8 /* ARTCGFloatArray.h */, + 863DB1AE51C0BA4A1D3DF938568E6C9C /* ARTContainer.h */, + 6600B3ECE4A9A1F4D25396A83C32C3DD /* ARTGroup.h */, + DDC6F67C2DD59A6AD926936B059FB771 /* ARTGroup.m */, + BB1D0FEDBCF1E8FB20711DA061393254 /* ARTNode.h */, + D48621AC50DC4D30040BB50CD2442F17 /* ARTNode.m */, + 67840563043AA82F17D29A652FA22AB6 /* ARTRenderable.h */, + DB5FE450AAB53AADE884BA269A897227 /* ARTRenderable.m */, + B85468D6D253824D2ADD8B2A0CB3AA2C /* ARTShape.h */, + C6CB42DCB25CE96E7B610081A0C9032A /* ARTShape.m */, + C7FD02188CDAF5EB23CBB76EED51035B /* ARTSurfaceView.h */, + 54DAD86D8E7F2D57156D4FEA78F677AE /* ARTSurfaceView.m */, + DE641A302A8646320DAC48CE6E849B7F /* ARTText.h */, + C49D225F6CF89085189D3E1775CD8333 /* ARTText.m */, + F072948F3FB48D4D7040B7F5699DDE2B /* ARTTextFrame.h */, + B1852732427A5BFF71AFCD908B912F49 /* RCTConvert+ART.h */, + 3D67570D241C8BD96DF9CB19D2E70141 /* RCTConvert+ART.m */, + 242EDB61C27A554614CD0A8BFC66C9BD /* Brushes */, + A8226C44832FF0067C03330C984E644A /* Pod */, + F1BDB9B9D34F3B7FE27B9A8AC02719FD /* Support Files */, + F34ACEB766383EDB5038DABE8BCDB9A1 /* ViewManagers */, + ); + name = ReactNativeART; + path = "../../node_modules/@react-native-community/art"; + sourceTree = ""; + }; + 172890F8F0175FAF1FD29B3C52C16897 /* Singleline */ = { + isa = PBXGroup; + children = ( + 493FAAFD3937E8A839C0988482F7CEB9 /* RCTSinglelineTextInputView.h */, + 290DB13BE039EA3C352747F78BAADE99 /* RCTSinglelineTextInputViewManager.h */, + B5D0F0CB7563A5D8E055CE05B4F8A3A2 /* RCTUITextField.h */, + ); + name = Singleline; + path = Singleline; + sourceTree = ""; + }; + 17792359A39239CE7610A06C93D24844 /* Support Files */ = { + isa = PBXGroup; + children = ( + 2615D87890C398C541274B84091F4118 /* react-native-slider.xcconfig */, + D814C2EE03734CB4327B241BBB99174D /* react-native-slider-dummy.m */, + EE97AB3236145B08630BE08BD485A445 /* react-native-slider-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTText"; + path = "../../../ios/Pods/Target Support Files/react-native-slider"; sourceTree = ""; }; - 15EAA0500F8FA4E659850C96E8AB29CF /* Support Files */ = { + 17C4F089BDEDD5172F5587141F514CA7 /* Protocols */ = { isa = PBXGroup; children = ( - FB640FAAD52F0D73311260D733A9F50B /* RNUserDefaults.xcconfig */, - 7A3D1F7342DC265DEEA84026C599DFFD /* RNUserDefaults-dummy.m */, - 8E5DB3686CB781FC5DC68AA80E5C8551 /* RNUserDefaults-prefix.pch */, + 25A03F3B74F4B37CA6245315F4B8E7EF /* UMAppLifecycleListener.h */, + 62D1CDB94E5DC720C62258096FB8F188 /* UMAppLifecycleService.h */, + 110F5F208B1277BEBFCEDFFA467DE235 /* UMEventEmitter.h */, + 3AF7A5FFD96AE3C7E2610CCA4A7EAB54 /* UMEventEmitterService.h */, + 06AF9DEAB18ECA63C1C7E00A032CB825 /* UMInternalModule.h */, + B316EE8749A03932D358C95F9114570E /* UMJavaScriptContextProvider.h */, + 131D3902D9352C048A30423FCBF0B8FA /* UMKernelService.h */, + 656E117710D129BCC5F46D0693DF9AB1 /* UMLogHandler.h */, + EE9AA28534499BF21627F666995F05AD /* UMModuleRegistryConsumer.h */, + 5D4F3FD31ED29FABC56321FF1335434E /* UMUIManager.h */, + 400A33EAC15BABDBC9CFAAD979540190 /* UMUtilitiesInterface.h */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNUserDefaults"; - sourceTree = ""; - }; - 16A6F3810248B27816437689C7C6326A /* Development Pods */ = { - isa = PBXGroup; - children = ( - 55B5CEDBFB7117FA376E40105BCF53D7 /* BugsnagReactNative */, - A68B918FDF7156DE9B52F25B4ECDC865 /* EXAV */, - 0108BE42D9C315ECAB63835298547D11 /* EXConstants */, - 11EAAA87E41718DFE4B6CF0164C9C043 /* EXFileSystem */, - E2638C4C8232FBC21CE1A3A927F549F9 /* EXHaptics */, - 41C3B9396417F6A1E6E68304BCCD3F0E /* EXImageLoader */, - 28800169CD9A92F8E41AD4458A8F0FC2 /* EXPermissions */, - 62916AFA60BAF874F6A800F5566DB96F /* EXWebBrowser */, - EFBE5272DEFA0428BE885E8F99347C8C /* FBLazyVector */, - 360AE81287D3EBA338AE9F59AD732DA0 /* FBReactNativeSpec */, - 04CBC310A139227D52BFCB6C65576A06 /* KeyCommands */, - 4FB810FC2F017135FBAF3988AE05DFFA /* RCTRequired */, - C8BBA0A4DB504250596CC0740851129C /* RCTTypeSafety */, - 32DC5CD6B229780D847112C3F7542DB9 /* React */, - A8F11DA5FD09758723E1142FEF85DB69 /* React-Core */, - AD8D59B618E20E1C04B73AB391C9E42F /* React-CoreModules */, - 3A02010AD738A739F4D275977A080054 /* React-cxxreact */, - A5D3C5912FC95990E4865544214A5913 /* React-jsi */, - 5AA4F83C3B26B5E88EA9E88EF991211B /* React-jsiexecutor */, - 4E31E797FBD9329A909D8A4378957BBE /* React-jsinspector */, - 6B3CEA8C692A92B152389EE02BCF46F8 /* react-native-appearance */, - DAB1CF041C820DE3237FFE1686177AD0 /* react-native-background-timer */, - 8049403D83EDC28AF39918F44671FFFC /* react-native-cameraroll */, - F0D360AB29FF2F5D9F4B632A80C12DBD /* react-native-document-picker */, - E6232848F442A4C9CF61E282C47025D9 /* react-native-jitsi-meet */, - EB103920D7DC3D9456A43D6DF561F8B8 /* react-native-keyboard-input */, - CB5CA4EA181D9A264B64167A936A5B3F /* react-native-keyboard-tracking-view */, - 567C7523CE5382909882005212C0063C /* react-native-notifications */, - 731CCA533413486A5017C5F45348BE34 /* react-native-orientation-locker */, - BF0227FF44857CC3FEF39A64B3576681 /* react-native-slider */, - 5A3EC5726BBAABF42B30F1723FC6208D /* react-native-video */, - 58ADE114FA6ABC790B3BFB17D498C95A /* react-native-webview */, - CE101CD00A95257BD400A64EEF14DC78 /* React-RCTActionSheet */, - DB26E59726A435D9A76DD48EEAD12366 /* React-RCTAnimation */, - A8495183D521095FB5AD07803F03194A /* React-RCTBlob */, - 31CB5F4B66D91F41B2DA9CA1B304337C /* React-RCTImage */, - 49A77384F0151373CA63A75E115C79DE /* React-RCTLinking */, - AEC2091BFDCE204886DE9120B26F30FA /* React-RCTNetwork */, - 56E15B5F6BD3219FD92BE57B7C4B6EA3 /* React-RCTSettings */, - A2FB0CE39C25D5B14C2A122CEEE49CEA /* React-RCTText */, - 8EBA10E27A934BAE7C8A29230A6FC712 /* React-RCTVibration */, - 306A16E61001A426BD78733258B36081 /* ReactCommon */, - 356E0EAD8D47470C42CF7A7D9229B767 /* ReactNativeART */, - CA05C6D130127E0746BAFC89E13ECE9F /* rn-extensions-share */, - 85D426E43C4EC03F441D348E488B4C77 /* rn-fetch-blob */, - 16DF81B0B8EE12CE107E09D6A52F0512 /* RNAudio */, - 6753863660C71B22647DE0F2F4A593B8 /* RNBootSplash */, - 4E2FB2A4FEFEB4319ACC41DA8088174E /* RNDateTimePicker */, - 56E1E2DA6CE6249086F5F7A37C910F7A /* RNDeviceInfo */, - B23D620BDA6334266A94D11DD64A3215 /* RNFastImage */, - B6FFCE5824FDD0AB5EDF222D3A5FE0DA /* RNFirebase */, - 0BCC0173E4430421EB892B3223624CAB /* RNGestureHandler */, - B2A26CD551E54C2C1813EFEAD961CD08 /* RNImageCropPicker */, - B6C27CF08DCFF69E58AB487E22C1195A /* RNLocalize */, - 4C99D70073FB6572E6AA632F7958A0A2 /* RNReanimated */, - F9A9CF467616B1789A8A909A17424316 /* RNRootView */, - 9560E2C255ED145E1B385B858A2B164A /* RNScreens */, - 2E46B32DD4A513888C80BA25BE6248BC /* RNUserDefaults */, - 4658FC56C3540475120CDC0D241AB42A /* RNVectorIcons */, - 9467732B6D0470FF20E9677C6DACC57F /* UMAppLoader */, - 130CAD7A6F67969E41965F3A6A54A816 /* UMBarCodeScannerInterface */, - 7D2CA84B05017CF0684C4FFFFDBBA5FF /* UMCameraInterface */, - 5A71022217CC14D973B86FBB3CB9935A /* UMConstantsInterface */, - D6C056C6BABAC6C5F11B88DBD1A2EAD7 /* UMCore */, - E3E2677B2BC7E28F47C971DBBC28A51F /* UMFaceDetectorInterface */, - E5BE9F8EB1758CF789FC8C532161AE71 /* UMFileSystemInterface */, - 06355F065818ABD12CBB4F37791ADED7 /* UMFontInterface */, - 47C18A4D3F3892D7F5A6E628066B206C /* UMImageLoaderInterface */, - 05AA7D63524C780F8D1CCDBE5A692543 /* UMPermissionsInterface */, - C77A78A8DC8B9F942CCE56285011EC28 /* UMReactNativeAdapter */, - AF0501B9ADCB974172C7AAA504AA2D7F /* UMSensorsInterface */, - 906D040FAF8C08FE23CCFBFAFDB1A790 /* UMTaskManagerInterface */, - 49BAED67B08EDC28239F6FEB60B3719F /* Yoga */, - ); - name = "Development Pods"; - sourceTree = ""; - }; - 16DF81B0B8EE12CE107E09D6A52F0512 /* RNAudio */ = { - isa = PBXGroup; - children = ( - EB7EB013F833B355FD0244A8EA7E1E9B /* AudioRecorderManager.h */, - 2A5FA4F553903242373D9D4AA2A1E8ED /* AudioRecorderManager.m */, - C1480F45EB7E3E22CC87E2AABA76A0DC /* Pod */, - DD9C029B884FD5F8796318956E82AB48 /* Support Files */, - ); - name = RNAudio; - path = "../../node_modules/react-native-audio"; - sourceTree = ""; - }; - 17B06DDAE6B75DE38B753171CB1A1379 /* Recording */ = { - isa = PBXGroup; - children = ( - 42B001A0487F7CBEC445D4245BD51B07 /* BSG_KSCrash.h */, - A359FDA218BBB85A1EE5CE72F7EE5C58 /* BSG_KSCrash.m */, - 107135BEBA6EA7330C01077FA39CD6DF /* BSG_KSCrashAdvanced.h */, - 6FE59B916214115894E2C40051662512 /* BSG_KSCrashC.c */, - C7697D177A9AC5B3305785040048B838 /* BSG_KSCrashC.h */, - BEB35DCAFD0EC01BAA2869190E84779E /* BSG_KSCrashContext.h */, - 58E58CB3CE5773B6B498DDE3F5159735 /* BSG_KSCrashDoctor.h */, - BE3BFBECD1E15553378524DA541FB1BF /* BSG_KSCrashDoctor.m */, - AA9EFF9E1F58142D75197642E0C42041 /* BSG_KSCrashIdentifier.h */, - 967FA1A50F500261410AB58054ED1F4F /* BSG_KSCrashIdentifier.m */, - 3998B4CB5D7BE16B616E7C240476509E /* BSG_KSCrashReport.c */, - 07E0234DD7051C7D65C2E4D36FFF87BF /* BSG_KSCrashReport.h */, - BDB51361ADC5F8786F4F64E304B59085 /* BSG_KSCrashReportFields.h */, - C7D7B4FBE8105B8A8F9749C0DE0CC4E1 /* BSG_KSCrashReportStore.h */, - 43F71913AE130ACD0E258AA4A470CC39 /* BSG_KSCrashReportStore.m */, - 2627A03E2AAC96EF0E84BD19FC590BF9 /* BSG_KSCrashReportVersion.h */, - B6FCCC857829E3AADFB1FD2840A10FC9 /* BSG_KSCrashState.h */, - 57FF5C5617AFBBBF704DAFD06A05E61B /* BSG_KSCrashState.m */, - D62F461D0DA61C54FD998895AF0D8F29 /* BSG_KSCrashType.c */, - 1FAD805A430894F1296F6BEC00C7A1C6 /* BSG_KSCrashType.h */, - EB570AFE3807B1510AAFAA576444577D /* BSG_KSSystemCapabilities.h */, - E6C09F8FC9C3A48D2F39D3D394130EC3 /* BSG_KSSystemInfo.h */, - 4B6DB6D0D19BC30059D5D4512C8DAFF9 /* BSG_KSSystemInfo.m */, - D9A54AB4A1997122697189E04B718260 /* BSG_KSSystemInfoC.h */, - CA133D8A948994865AC442C0F0E0668F /* Sentry */, - DF8CBA8FF9838D3E7588105895DB22E7 /* Tools */, - ); - name = Recording; - path = Recording; + name = Protocols; + path = UMCore/Protocols; sourceTree = ""; }; 18149080C63A878FBB6D5866B0791E49 /* Support Files */ = { @@ -8254,39 +8093,71 @@ path = PromisesObjC; sourceTree = ""; }; - 18BF3F5DEE8B435133269D8696BA18EF /* Source */ = { + 1A18EAD319B798576B97B9678EDB2C85 /* config */ = { isa = PBXGroup; children = ( - 5ECC8E71E66CC6121EEFCCC459142B79 /* KSCrash */, + 13F2CD272CBA0C054B3D23053F74F0C0 /* RNFirebaseRemoteConfig.h */, + 1A6893A7A9B3D5FFC6BCCD9C7FA26417 /* RNFirebaseRemoteConfig.m */, ); - name = Source; - path = Source; + name = config; + path = RNFirebase/config; sourceTree = ""; }; - 198989861E3A46A532780C47C718A1BB /* RCTTextHeaders */ = { + 1A8CD8524066A5579B3037885D94597C /* Pod */ = { isa = PBXGroup; children = ( - E58A1CD42F0356C6697E2AC06FEA30E6 /* RCTConvert+Text.h */, - 71F3CA809072964CCC65C1EF386C65F7 /* RCTTextAttributes.h */, - 426717A30224C3E0314EC82D0C8ABDA4 /* RCTTextTransform.h */, - 7719E5A0BEAB7225A153F3938E38DA4D /* BaseText */, - AD85E3CC465B636DD729EBA6D7AFC85D /* RawText */, - 99370FA83969D3CC02D4E1D0894B1592 /* Text */, - EF02899F83ADD13A5C348C8C6AF0E22B /* TextInput */, - F4A28F4E353E86E13C4118229003C594 /* VirtualText */, + F7168D4E11BDF82C884D85A8BB9E8421 /* RNFirebase.podspec */, ); - name = RCTTextHeaders; + name = Pod; sourceTree = ""; }; - 1BD7AB1C10E6FB8F4D7E137FB3209C57 /* Support Files */ = { + 1AD3B7EBD0036F9F4B8506B7411EA899 /* platform */ = { isa = PBXGroup; children = ( - 01544C0A323FB8C35DFBB477A1FE6428 /* React-jsi.xcconfig */, - DF8CBF4E8847D9B5DCD9C9911BB18CE1 /* React-jsi-dummy.m */, - 88CAABA969389C2E6347DEA781571EE7 /* React-jsi-prefix.pch */, + 0204F8EA7BF28F4CDE8FD3E6B827969C /* ios */, + ); + name = platform; + path = turbomodule/core/platform; + sourceTree = ""; + }; + 1C118C0AD2AA27A1B2AC457C83678C7F /* Pod */ = { + isa = PBXGroup; + children = ( + 3D20059EEE08E4D54BE32164C0A68AE0 /* RCTTypeSafety.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 1D74E790D372881F6319E2F127C46A54 /* Pod */ = { + isa = PBXGroup; + children = ( + C2A1342C45B8106215565D675029B241 /* LICENSE */, + 975ECB2D29AFDE497BDE8DA25F81351C /* README.md */, + 1FE28A98EA9AA962C02DDA276010F12A /* RNBootSplash.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 1EAA8D6BA2392DF7CFDA17F0A2AA645E /* Support Files */ = { + isa = PBXGroup; + children = ( + F4F59E818975B0DAF1677936CC7928F8 /* EXImageLoader.xcconfig */, + FCC93B91F207812C7C1D44FB69C95083 /* EXImageLoader-dummy.m */, + E9744C64B98B75CFF9A97A36FC9187F1 /* EXImageLoader-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsi"; + path = "../../../ios/Pods/Target Support Files/EXImageLoader"; + sourceTree = ""; + }; + 1EBAC964314CB542BDFBB1408A0EC70B /* react-native-video */ = { + isa = PBXGroup; + children = ( + D170E80B182EC1326B18C57A13ED2FED /* Pod */, + 3B311F4CE755B72FEF8DBB4C8CDD2559 /* Support Files */, + 92126A89C3B77666F06E0C70D9787A3A /* Video */, + ); + name = "react-native-video"; + path = "../../node_modules/react-native-video"; sourceTree = ""; }; 1F7EC6C11018294EBF40CA4AAD13152A /* FirebaseInstanceID */ = { @@ -8356,135 +8227,45 @@ path = FirebaseInstanceID; sourceTree = ""; }; - 20061CC3B252E8B2B100A20BE2A2DA84 /* Interfaces */ = { + 1F8DC336A1373E5960838643116CCA93 /* Pod */ = { isa = PBXGroup; children = ( - F17A2E32705BC84AD814FD6ECD2D115D /* UMAppLoaderInterface.h */, - 180207D5E7C1DB8FC8ABD08CD4D5FAA3 /* UMAppRecordInterface.h */, - ); - name = Interfaces; - path = UMAppLoader/Interfaces; - sourceTree = ""; - }; - 202477105C56BF03B3D9CC1885D5A0AA /* Support Files */ = { - isa = PBXGroup; - children = ( - 9F0D389ACAFD22E926E943101A0A259D /* UMAppLoader.xcconfig */, - 6531AD763044370F6EA7D5EC3E63C94A /* UMAppLoader-dummy.m */, - BCD608DDFD5C535FD5785D87369EF7F3 /* UMAppLoader-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMAppLoader"; - sourceTree = ""; - }; - 204E97715CEA215ABFE6E1BB7D3916AB /* core */ = { - isa = PBXGroup; - children = ( - C38DADA01589641F9B17088966CE9D3F /* LongLivedObject.cpp */, - A083A60E952FD6845E06C3B5AB4F25ED /* LongLivedObject.h */, - F5C0C0B46851D473AF9561319EE2CB79 /* TurboCxxModule.cpp */, - 088B3B353DE06ECB638B9C33B6563F45 /* TurboCxxModule.h */, - 6F59D85A8A002DE35AC8727160034612 /* TurboModule.cpp */, - CBAB3B1471E3F94BCD38750784E669F6 /* TurboModule.h */, - 3F6B55E3590A31D0796E2F6D82597EEC /* TurboModuleBinding.cpp */, - 4DCC9BD55EA7962FA78BF642B58866F6 /* TurboModuleBinding.h */, - EEE5683F002CA0CA3896C2CBEA6F79C5 /* TurboModuleUtils.cpp */, - 86D53305FF3FD3D6376F9DD250DC82EA /* TurboModuleUtils.h */, - 565FA81F8EC7C40B0BA96DD0DAE5D2B7 /* platform */, - ); - name = core; - sourceTree = ""; - }; - 2051A4A0C13C98C781BE0FD4281E279F /* crashlytics */ = { - isa = PBXGroup; - children = ( - 59FDCB7424AA5FAA3D4FB6C98D2EE3C2 /* RNFirebaseCrashlytics.h */, - 3EBF48C9031FDA0CBFCC41EB218C1371 /* RNFirebaseCrashlytics.m */, - ); - name = crashlytics; - path = crashlytics; - sourceTree = ""; - }; - 20E5CBEC5A58F3C029655E9A71DFCF76 /* Resources */ = { - isa = PBXGroup; - children = ( - 3980D6B93CD85765ECEA7CB4F162B932 /* de.lproj */, - 2B226E0039F6FC461896FA197B68FF24 /* en.lproj */, - 030383C37C015A0A7495A41108ED8282 /* es.lproj */, - 6554F5D74748C27365568140A4796FA9 /* fr.lproj */, - 7C87A67899A617619D2A1D2147AADDB0 /* ja.lproj */, - 10F8A885C4E82BDA4D26FA34B581D952 /* pl.lproj */, - ED8946A6BA821202B3368BB71A8AA182 /* QBImagePicker.storyboard */, - 7F5F07B6674B84204E253987EF689317 /* zh-Hans.lproj */, - ); - name = Resources; - sourceTree = ""; - }; - 211C0741BED3F03865B0961057975542 /* Pod */ = { - isa = PBXGroup; - children = ( - 707D0D272153A825CD59045DA35C2C21 /* EXPermissions.podspec */, + DA9D022F2DDEB875D1ED5D8A5472F02A /* FBReactNativeSpec.podspec */, ); name = Pod; sourceTree = ""; }; - 212073D35CA92162FD7BA2F8B6E4A2B3 /* Source */ = { + 1F9E65A79F95D4FF6189EFD3AAF437FE /* Pod */ = { isa = PBXGroup; children = ( - 351D66D4F8597363DC1C83566AC8460D /* BSG_KSCrashReportWriter.h */, - C4C82D0794DA98040D5A7DCF691567B8 /* BSGConnectivity.h */, - 7B0A720A2FDE5662184F8E086778982D /* BSGConnectivity.m */, - 8659CD9676701F05C5E73AD43A3F580C /* BSGOutOfMemoryWatchdog.h */, - A6B893252A3E1D280DFDFA2CADD8EB30 /* BSGOutOfMemoryWatchdog.m */, - 540B7ED49A5F3F474F0EBACB3DB2446F /* BSGSerialization.h */, - F60E2EF468D037CB0D942D8EBA189471 /* BSGSerialization.m */, - 38AF223B6C2A7948451309ED536B110C /* Bugsnag.h */, - 31B6D24AA10E41A54BB260C04EB641B0 /* Bugsnag.m */, - 893BE71D8F29B67C196B9A779D9B622E /* BugsnagApiClient.h */, - BA4535A50B3AB47322F5447F92AF1689 /* BugsnagApiClient.m */, - D27306986FC5408AC3FEF9F3D00DF96F /* BugsnagBreadcrumb.h */, - F6FBBE3D5E15F36C5BA91A0CFBA40A42 /* BugsnagBreadcrumb.m */, - 777EB941848EB1D684C8CAEC37FBA39C /* BugsnagCollections.h */, - BA2876B6CECEBADC043329575B142A92 /* BugsnagCollections.m */, - 1A795E8D890C786E5FE7EF3B02A93904 /* BugsnagConfiguration.h */, - 5550131458830597A2D600CED021A4CA /* BugsnagConfiguration.m */, - F2649FE73365ED79E64897C7FB24DD93 /* BugsnagCrashReport.h */, - A8A1EF5AA6F5AB825D6721E345CD4D02 /* BugsnagCrashReport.m */, - A04EBFCE94F34A2DE815C6C732E0A763 /* BugsnagCrashSentry.h */, - B22482A857E4CE1F9EC4A91267459DEE /* BugsnagCrashSentry.m */, - AEC5798F259B20AF35F1CD204E5E88D1 /* BugsnagErrorReportApiClient.h */, - C5A4190ED83DB8EAE5795F16E262F348 /* BugsnagErrorReportApiClient.m */, - 7FC3B607140F53423F46D748AB0779C7 /* BugsnagFileStore.h */, - 13D15DAB3C5711DFB7C6B3F1F3166E3E /* BugsnagFileStore.m */, - 24D838D0CDBA90432CA9CB4B6F72CEE9 /* BugsnagHandledState.h */, - 410D6867C29D9F4F2585F6E3E6E4DB52 /* BugsnagHandledState.m */, - 17AB5796AE998CF0E3852DAD5AE4AD04 /* BugsnagKeys.h */, - 85ACC6FC263C769CD048E0E6F8D3BA1B /* BugsnagKSCrashSysInfoParser.h */, - F5A2C611FB137F0645124C37EAF1D3E9 /* BugsnagKSCrashSysInfoParser.m */, - 32D1E4560424ED1477C0C2DFEBD939FC /* BugsnagLogger.h */, - E0DBF0B6EA978E1A081F305745A17E7E /* BugsnagMetaData.h */, - FA6D8039A197ABD63DAD0EA99338AD29 /* BugsnagMetaData.m */, - A6ADF59D1C982FA1E0C05A534D0328D6 /* BugsnagNotifier.h */, - 7649CA0397FB5C42BEA02341EA1C199A /* BugsnagNotifier.m */, - 1008C6A52CFF0FCD4F3F4A73DE63755C /* BugsnagSession.h */, - 5314314BDD42B0A1926D5A66C9B59D99 /* BugsnagSession.m */, - 36344A43FF1BCC39C2B7467B3E7EF95F /* BugsnagSessionFileStore.h */, - 6932F20496C83361F27869BCFF8CA021 /* BugsnagSessionFileStore.m */, - B12EE8602A823E14F0D9E8BA32311AA1 /* BugsnagSessionTracker.h */, - 0EA1D090A682A9E2453410A8C657DBBD /* BugsnagSessionTracker.m */, - AAB1736337E11BB29D3ECDF0F8A97C9A /* BugsnagSessionTrackingApiClient.h */, - 57CEEFF52ED51FCCADD3C8279135E603 /* BugsnagSessionTrackingApiClient.m */, - 94F7CCF3B0B5DC48EA13397ECEEA57AC /* BugsnagSessionTrackingPayload.h */, - 37621F2F3B0BD572AD1150B50770284B /* BugsnagSessionTrackingPayload.m */, - 8F88B876C5405EBA02F0267913352F6F /* BugsnagSink.h */, - DBFFACBDF7FCBBA514D0A627D020879F /* BugsnagSink.m */, - 38A49AE2DBA5F87E93363A96C360CB02 /* BugsnagUser.h */, - 70533C394B7A6E044FCBDB9D4D35FCBD /* BugsnagUser.m */, - B8ADFC3CD709A9C5292EE0E5EAD33C55 /* Private.h */, - 6B16435F71849EA7B8ADBCE5B2A47061 /* KSCrash */, + 812B0BB7777DCECA0F21F0A430AE6208 /* LICENSE */, + 83B8DD6EDF80109F4E5C34CA5722D5F2 /* README.md */, + FACDEE6EE892C8AD2C3883084880CC3C /* RNScreens.podspec */, ); - name = Source; - path = Source; + name = Pod; + sourceTree = ""; + }; + 207F66EE9B0DFCE4CAF9DD3E91371E64 /* Support Files */ = { + isa = PBXGroup; + children = ( + 6178BBA9B9B9A78E0C232275C315D603 /* rn-fetch-blob.xcconfig */, + 9901BACE3A1530200B9D29B6C2010ED3 /* rn-fetch-blob-dummy.m */, + 4565A49262584DD8D25283A67864D489 /* rn-fetch-blob-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/rn-fetch-blob"; + sourceTree = ""; + }; + 216861150F80218EB8A430B06D640529 /* RNLocalize */ = { + isa = PBXGroup; + children = ( + 92D3A2C71CB1459A2CE0C33710DEA4CD /* RNLocalize.h */, + A40DDBDE75B76EE4C97C4876D85175B1 /* RNLocalize.m */, + 9F62BF7599A73E242E75EFE67CF89AC0 /* Pod */, + 2C45F107BCD64872F0256D897B5B94B5 /* Support Files */, + ); + name = RNLocalize; + path = "../../node_modules/react-native-localize"; sourceTree = ""; }; 216ED3B7178698D2741E65F697E7BD7F /* Support Files */ = { @@ -8497,43 +8278,71 @@ path = "../Target Support Files/GoogleDataTransport"; sourceTree = ""; }; - 217CB0F2EE2A538F02B80A5C1ABED914 /* Pod */ = { + 218477F23FA810D68B35E0DF533922A3 /* LNInterpolation */ = { isa = PBXGroup; children = ( - 2EE9CF790A9ADBFF0498C17858DEEDDA /* FBReactNativeSpec.podspec */, + 37DADD1FD92C1F8887236BEF67D91AAD /* Color+Interpolation.h */, + A6455A15BAAEE82FD4F76D0D75A99C21 /* Color+Interpolation.m */, + C1FCBE451CF25A5140A2A3847F531E84 /* LNAnimator.h */, + A6B3BE6B96843EC4E2C030914285AAE3 /* LNAnimator.m */, + 4772B7623E21753987A7130E8621862E /* LNInterpolable.h */, + C972750A84A0F589238CF3C40CA01ACC /* LNInterpolable.m */, + 31C12D553C2C6EBEDD958013FD380CD3 /* LNInterpolation.h */, + 8BAF5B2F52394878A35B02A802913F95 /* NSValue+Interpolation.h */, ); - name = Pod; + name = LNInterpolation; + path = lib/ios/LNInterpolation; sourceTree = ""; }; - 23AE92A2D0CB07FD71099B5E472CC1EC /* UserNotification */ = { + 218CB7070D9FD14B6C24CA8B191610B1 /* auth */ = { isa = PBXGroup; children = ( - A5C5AA0F62E63156EFCEC5C452B46EE3 /* EXUserNotificationPermissionRequester.h */, - 6100746B256DDD1521CB49EBC2877F8A /* EXUserNotificationPermissionRequester.m */, + 392498665B438714F134FCBC21214666 /* RNFirebaseAuth.h */, + D514EDE68ECD59E03F9C6FB34661F168 /* RNFirebaseAuth.m */, ); - name = UserNotification; - path = UserNotification; + name = auth; + path = RNFirebase/auth; sourceTree = ""; }; - 24278B3338F91956F9A83861F54C84B7 /* VirtualText */ = { + 238B28F479949ED98B0EC82115122286 /* Support Files */ = { isa = PBXGroup; children = ( - 3308A989CAB251872CD91C4A505B2DEC /* RCTVirtualTextShadowView.m */, - 6BD60FBE2B26A28936FC126532D2A021 /* RCTVirtualTextViewManager.m */, - ); - name = VirtualText; - path = VirtualText; - sourceTree = ""; - }; - 242BF93B4CFE0CDA8E392EAB25C532E3 /* Support Files */ = { - isa = PBXGroup; - children = ( - 214CA21F2AC56EEC639D761AD723F840 /* RNDeviceInfo.xcconfig */, - 9271E0A545759858345B56CF01EE6EA1 /* RNDeviceInfo-dummy.m */, - 300C6A4D1BBCB38BF5D8267485A49497 /* RNDeviceInfo-prefix.pch */, + 21AC208C4538DED1D54AB4C102653BF0 /* React-RCTSettings.xcconfig */, + 6720C13989FF0300B3BD20734475DF23 /* React-RCTSettings-dummy.m */, + EFC5A84423AE386178E1FB69D79B7D14 /* React-RCTSettings-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; + path = "../../../../ios/Pods/Target Support Files/React-RCTSettings"; + sourceTree = ""; + }; + 242EDB61C27A554614CD0A8BFC66C9BD /* Brushes */ = { + isa = PBXGroup; + children = ( + 87E3B4E6F8DFCC3B1564EE5A6BC8A35E /* ARTBrush.h */, + 71BEB9E31A700E806EFB7FEC98C34B4E /* ARTBrush.m */, + 31238A8B7C9D38F8ABB58C56ED0A8793 /* ARTLinearGradient.h */, + A8B5C306DE7AF28132B3BAD6F0B04749 /* ARTLinearGradient.m */, + 2606CCA8EA3FA4E2E33F4F7F9C664DB0 /* ARTPattern.h */, + 0AF4CA0BA956D4476ADBBF1B6E4E78FA /* ARTPattern.m */, + 25B095623B50426CB11A2B72D32E2E19 /* ARTRadialGradient.h */, + F9ECBE21F9340188A655F5682239E588 /* ARTRadialGradient.m */, + 39E2BF8E4BE4C32B9113556EDECA42ED /* ARTSolidColor.h */, + 13D918F729CF132872915DE76691DF4A /* ARTSolidColor.m */, + ); + name = Brushes; + path = ios/Brushes; + sourceTree = ""; + }; + 247345CA84B10AA5E3AB4E69734A154A /* UMFaceDetectorInterface */ = { + isa = PBXGroup; + children = ( + 205E767FB5F6715EED16BB215A7201AC /* UMFaceDetectorManager.h */, + D4ADE3AF72632200C53653677BCCBAC0 /* UMFaceDetectorManagerProvider.h */, + 25A211078C866549828916BE5B704D14 /* Pod */, + EC216FA997440897912EB514820B2C70 /* Support Files */, + ); + name = UMFaceDetectorInterface; + path = "../../node_modules/unimodules-face-detector-interface/ios"; sourceTree = ""; }; 248C867CFC61347DCAF2D42E96528B93 /* SDWebImageWebPCoder */ = { @@ -8550,38 +8359,22 @@ path = SDWebImageWebPCoder; sourceTree = ""; }; - 275BCA3B036E61742C28AEF972887AF7 /* Support Files */ = { + 2531E5D9CF65C3CF26047BD34D009716 /* Text */ = { isa = PBXGroup; children = ( - F344C77888A1036128EB010D9ED1C690 /* EXAV.xcconfig */, - E477D2DCF178AD8A0A119CC11BB83614 /* EXAV-dummy.m */, - 1CD089F13B48D7E942A6D84764685919 /* EXAV-prefix.pch */, + A595B6DD138E016E5D80F615167C7FCB /* NSTextStorage+FontScaling.h */, + DC23F2A6776968AC25F6B3A06A87CADB /* RCTTextShadowView.h */, + 4C12EFD3064A699FE323604CCC14F491 /* RCTTextView.h */, + D89E2A740EBF31F6D63E4CD54C4BD4BB /* RCTTextViewManager.h */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXAV"; + name = Text; + path = Libraries/Text/Text; sourceTree = ""; }; - 28800169CD9A92F8E41AD4458A8F0FC2 /* EXPermissions */ = { + 25A211078C866549828916BE5B704D14 /* Pod */ = { isa = PBXGroup; children = ( - 105733A577C33B0FCA5F228D1857F8B3 /* EXPermissions.h */, - 8CB4C02603D2011C4D066FD3AECECFDE /* EXPermissions.m */, - 9A6F770FE653E870011DD1968291836D /* EXReactNativeUserNotificationCenterProxy.h */, - F1F9A5AFD99CBEFAFB6673870EC2885C /* EXReactNativeUserNotificationCenterProxy.m */, - 211C0741BED3F03865B0961057975542 /* Pod */, - AA50523176CC36493EC84FFAC0338782 /* Requesters */, - CF566FC0E705CCBA15E8DB8DCD6A8774 /* Support Files */, - ); - name = EXPermissions; - path = "../../node_modules/expo-permissions/ios"; - sourceTree = ""; - }; - 28A9789EE40C028D291A793ECA1A54C5 /* Pod */ = { - isa = PBXGroup; - children = ( - 19EAD0A7D0A89E6E974F94A58960B4A0 /* BugsnagReactNative.podspec */, - E7F656B514DB7C390BE8A946BEF153A9 /* LICENSE.txt */, - 846620E44D21F4B9A266E9D5CD9861EB /* README.md */, + 8480EE856E141386167B4E150CB46136 /* UMFaceDetectorInterface.podspec */, ); name = Pod; sourceTree = ""; @@ -8594,6 +8387,20 @@ name = Frameworks; sourceTree = ""; }; + 29CB50E8CC69F4BB4048F2BB2B2F3823 /* KeyCommands */ = { + isa = PBXGroup; + children = ( + 0E93ECCDA1756C61A19DA411120DAAB7 /* RCTKeyCommandConstants.h */, + D87D4BF4E569C615C848E73CD7326793 /* RCTKeyCommandConstants.m */, + 636F31DA774BEA7BE943A8E6CCC0CFF0 /* RCTKeyCommandsManager.h */, + FA3FAD6F5216E43A3167EBEBE8B8167B /* RCTKeyCommandsManager.m */, + 7DA4A09401387DA68FD6AB3169D95BD9 /* Pod */, + 38D26E7BBE632D361CCBEEBB4E672A29 /* Support Files */, + ); + name = KeyCommands; + path = "../../node_modules/react-native-keycommands"; + sourceTree = ""; + }; 29CCB6618EF5BA556C5A34E647C5F5A3 /* FirebaseCoreDiagnostics */ = { isa = PBXGroup; children = ( @@ -8606,53 +8413,68 @@ path = FirebaseCoreDiagnostics; sourceTree = ""; }; - 2AC45BD752DA6E4A77E0156237932918 /* Support Files */ = { + 29F0C9EB17758698AAC12E60C5866873 /* Text */ = { isa = PBXGroup; children = ( - 603E4CF0D2EF1B7DE6BDB26D017CD438 /* RCTRequired.xcconfig */, + C9E77FEC3EF67F96CC4AC77AB9D73516 /* NSTextStorage+FontScaling.m */, + 33AFE038D4008021778FB31EC6A6EFA1 /* RCTTextShadowView.m */, + 4EA63B128144C476191A9774005959AD /* RCTTextView.m */, + 627C072D1242A8741EB84490641B4EEE /* RCTTextViewManager.m */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/RCTRequired"; + name = Text; + path = Text; sourceTree = ""; }; - 2B3C0E93F7CFB8EC50757684B60B6226 /* Support Files */ = { + 2A70AF40947C85640A0CF21C0EA2B6A8 /* Support Files */ = { isa = PBXGroup; children = ( - 73D013982DDC79D1EF058C324B1AD36F /* RNDateTimePicker.xcconfig */, - 59947BF24339E1CBDD34504FA9DD939A /* RNDateTimePicker-dummy.m */, - A1F11FDF3DFB206288228C9489CB4E24 /* RNDateTimePicker-prefix.pch */, + 80D020E86A3DB547A971CA1B20F7E6C7 /* react-native-appearance.xcconfig */, + 0B67E23A4D5E5329C0527C804BD3134E /* react-native-appearance-dummy.m */, + 9BAD19431865B16792B25375CC234813 /* react-native-appearance-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNDateTimePicker"; + path = "../../ios/Pods/Target Support Files/react-native-appearance"; sourceTree = ""; }; - 2B9A9703A1B7C417A884092F45C17062 /* Support Files */ = { + 2B20EFB79432F08207A0BC2109EE1EBB /* Pod */ = { isa = PBXGroup; children = ( - 687B021CBCA2D118D572F00E2FD2B142 /* KeyCommands.xcconfig */, - 8EA4BAF13052EDA8C425D31E6EB4660B /* KeyCommands-dummy.m */, - 5C6058ACA1A680E9176A03B2EB312883 /* KeyCommands-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/KeyCommands"; - sourceTree = ""; - }; - 2BC9C0EA39B307AE236CBF24C3473C4E /* Pod */ = { - isa = PBXGroup; - children = ( - 285A9AAD35E70F3027ED026EAA8B7417 /* UMCameraInterface.podspec */, + EC174511251D6DA7612CA7306DB50846 /* React-RCTSettings.podspec */, ); name = Pod; sourceTree = ""; }; - 2C0FDDCA0EDAB645B567525657900B48 /* Pod */ = { + 2B7ED1B7786AE1885AA5E2948D2A9F21 /* Pod */ = { isa = PBXGroup; children = ( - C163B02F714E794BE7DAA2AE95177498 /* EXFileSystem.podspec */, + CD38BB8B156132FBFC0DEDF194BCF83E /* LICENSE */, + 627B45BC8931FFF3C3C6BE50940ACACE /* react-native-webview.podspec */, + F5A72941FF0DBBF5D8FCA1F794225C4C /* README.md */, ); name = Pod; sourceTree = ""; }; + 2C45F107BCD64872F0256D897B5B94B5 /* Support Files */ = { + isa = PBXGroup; + children = ( + 0F218E27E1059AFDA5D2F6B49784ED27 /* RNLocalize.xcconfig */, + DC92164D6BFC49E2D478426F521D30FE /* RNLocalize-dummy.m */, + CF229B1B9CD2988E2210AC5E3867FE44 /* RNLocalize-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNLocalize"; + sourceTree = ""; + }; + 2C55E145DD9CE644968F4515E9F4EA17 /* UMNativeModulesProxy */ = { + isa = PBXGroup; + children = ( + D6CCC3839226668399756AA19C5F9EB5 /* UMNativeModulesProxy.h */, + 6400266D477D2FA1A5BD7E46E08C1FC8 /* UMNativeModulesProxy.m */, + ); + name = UMNativeModulesProxy; + path = UMReactNativeAdapter/UMNativeModulesProxy; + sourceTree = ""; + }; 2CFB22E97429F69EF0B16000B9744E75 /* Support Files */ = { isa = PBXGroup; children = ( @@ -8662,203 +8484,151 @@ path = "../Target Support Files/FirebaseAnalytics"; sourceTree = ""; }; - 2D15A88F8C4F9A95B7399F85BEDE6B00 /* BaseText */ = { + 2DD1AED08B9659E6582CEAF0363779D2 /* SurfaceHostingView */ = { isa = PBXGroup; children = ( - 02B273A00658D942D23E36B021688801 /* RCTBaseTextShadowView.m */, - 7F0F2422DAB94714E0307472B654BBFF /* RCTBaseTextViewManager.m */, + 5FF6EEDD41B74C067D234D6C305BFF65 /* RCTSurfaceHostingProxyRootView.h */, + 2323F367B32053EA27F9D766634A5DDB /* RCTSurfaceHostingProxyRootView.mm */, + 357FF7EA38456A76C452E63689055EDB /* RCTSurfaceHostingView.h */, + FC106E9BE9BF1893772A66FAF3F9D3C8 /* RCTSurfaceHostingView.mm */, + 3B598E756408A131151E0D606053991B /* RCTSurfaceSizeMeasureMode.h */, + 2DB4C4BAA0A3E960224AD870D1692FE5 /* RCTSurfaceSizeMeasureMode.mm */, ); - name = BaseText; - path = BaseText; + name = SurfaceHostingView; + path = SurfaceHostingView; sourceTree = ""; }; - 2D35A121CBB241C9C2D917767EE033D3 /* Pod */ = { + 2E25BD9D4FCAAE923B7BFF6C6A7D6DD2 /* React-RCTLinking */ = { isa = PBXGroup; children = ( - 5112ECAF952BAC08C07A7E6342C9D4C9 /* react-native-keyboard-tracking-view.podspec */, + 04B0350A98F7FD6735CBAA7A93BD01B1 /* RCTLinkingManager.m */, + 2E3A1ADED02F8CF37B5D424C86DE171D /* Pod */, + DBDFDE81C85A3EF35AEE1191D1DD2FD2 /* Support Files */, + ); + name = "React-RCTLinking"; + path = "../../node_modules/react-native/Libraries/LinkingIOS"; + sourceTree = ""; + }; + 2E3A1ADED02F8CF37B5D424C86DE171D /* Pod */ = { + isa = PBXGroup; + children = ( + 2C907D36037903303ECD9829DB8495BC /* React-RCTLinking.podspec */, ); name = Pod; sourceTree = ""; }; - 2E46B32DD4A513888C80BA25BE6248BC /* RNUserDefaults */ = { + 2F640704C6B238FFAD7855CF187FE578 /* Drivers */ = { isa = PBXGroup; children = ( - B731E1D065FE038F0659D216D2F696DA /* RNUserDefaults.h */, - F558B400852AC6D2D3D27FC665C63C18 /* RNUserDefaults.m */, - F3D006C73416CC0FB96AB6C6D2716BC4 /* Pod */, - 15EAA0500F8FA4E659850C96E8AB29CF /* Support Files */, + 28200B7B2826E413420961FA86E7E2E9 /* RCTAnimationDriver.h */, + DC7329CA9428EC0F785B6A190B581E9E /* RCTDecayAnimation.h */, + 03D230A5DC176F0B184A61B8C98B6BEA /* RCTEventAnimation.h */, + 5FBB2E0D6185552EE63D91A0B3B7AD1F /* RCTFrameAnimation.h */, + B6983AF95B39257FA2BE471713F402B1 /* RCTSpringAnimation.h */, ); - name = RNUserDefaults; - path = "../../node_modules/rn-user-defaults"; + name = Drivers; + path = Libraries/NativeAnimation/Drivers; sourceTree = ""; }; - 306A16E61001A426BD78733258B36081 /* ReactCommon */ = { + 2F7690AE1FEF9B42F41E1F8F10D10735 /* React-cxxreact */ = { isa = PBXGroup; children = ( - 74EA806A637F908FCF9291CAAB2AC99B /* jscallinvoker */, - CE9F7508057A628A1ADD141C430033DA /* Support Files */, - 8963165DEE707C02723347653A333C92 /* turbomodule */, + A9503EF536E523F96203052014C6BAF4 /* CxxModule.h */, + 4AC0C7574DAE4ECE43B4A13EF75AECA8 /* CxxNativeModule.cpp */, + 12A16BBD093134117D9B4CFDF9359DDF /* CxxNativeModule.h */, + FAF68036D1CCEC3D01E8537FEC9697AB /* Instance.cpp */, + F71EB3ED435BE62A03FB8BE9A69A5F5F /* Instance.h */, + 04ED4DEE7B509B2575509E63CEB2B1AD /* JsArgumentHelpers.h */, + 82D163B62D58A7DAAC4F67FE5DB44B93 /* JsArgumentHelpers-inl.h */, + 07E5DA47E4212DB768DB092C518399AD /* JSBigString.cpp */, + C15DBBB908005ED013E5D85E2446096A /* JSBigString.h */, + 18A5FB31561943E51775DF6C2A709D19 /* JSBundleType.cpp */, + 7D7213217E40522F94758DC70EE7305B /* JSBundleType.h */, + 9A7AEBA9C7FF343E5421EF7F9BFCC694 /* JSDeltaBundleClient.cpp */, + AAE04C89918794FD8CEB73ED15E0C056 /* JSDeltaBundleClient.h */, + 9F11B9FBA50006F16241B643CC14A271 /* JSExecutor.cpp */, + 0F7B2000BE3105D55FDF862386C46774 /* JSExecutor.h */, + E5D773D06094FC95830D197D526EAF1C /* JSIndexedRAMBundle.cpp */, + 8A532F8903DFA43FF342F2EB8E9AF675 /* JSIndexedRAMBundle.h */, + 041AE7063506BA408912E1C0DC8B5B9F /* JSModulesUnbundle.h */, + 6248DF6E2A2A11CDEAEB601763176F59 /* MessageQueueThread.h */, + 0840CE117A17CF8930BBBD11D54CBF22 /* MethodCall.cpp */, + 356A307C6ABF12EF11CA33E44EACF4E6 /* MethodCall.h */, + B3961133E9C62549A0F7C125B3EEF7E6 /* ModuleRegistry.cpp */, + 30B150C99EB1AAE67D345BC94069538D /* ModuleRegistry.h */, + CCDB866E2441C8D4C615934AE96E2B37 /* NativeModule.h */, + 6570BEC05AF52AE575BFE1F10E1D6275 /* NativeToJsBridge.cpp */, + B57D43FA12903105F3A9F573F3EE96A9 /* NativeToJsBridge.h */, + 09FEF9981606134C65ADBEB0FB57B17E /* RAMBundleRegistry.cpp */, + EC00180B78B1F10FA9BAA45677C192B6 /* RAMBundleRegistry.h */, + 11C69D513A3C6989D4E6AD2745DE7E66 /* ReactMarker.cpp */, + 8AEEFA27BA1AF4F108E5CAD8B09C5DD8 /* ReactMarker.h */, + 7A4F18BCCD035A3DB966FB44364322BC /* RecoverableError.h */, + 4873C107DBE9F26AECC09318A8B12A9A /* SharedProxyCxxModule.h */, + F84D927CDF596173B9BCA45A39ABE347 /* SystraceSection.h */, + 6EE080B27C2F0BC39CC6F791380A9695 /* Pod */, + 4008E5145C352361130CF003129A6EEC /* Support Files */, ); - name = ReactCommon; - path = "../../node_modules/react-native/ReactCommon"; + name = "React-cxxreact"; + path = "../../node_modules/react-native/ReactCommon/cxxreact"; sourceTree = ""; }; - 31CB5F4B66D91F41B2DA9CA1B304337C /* React-RCTImage */ = { + 2F7A2F7E340E5890C8E1047645B4F7D4 /* messaging */ = { isa = PBXGroup; children = ( - B3690FB9D860840F6DDEEC034869D8BB /* RCTAnimatedImage.m */, - A4CE0674C2BBE6BF5B371ADA74A89652 /* RCTGIFImageDecoder.m */, - E1A49906A4E8D2A3DFE6B2A1C271E1B5 /* RCTImageBlurUtils.m */, - B9E241B8F182966DB6257F6EF2DF8C42 /* RCTImageCache.m */, - F8B47F1CD100FCBC1313C955EA345AEB /* RCTImageShadowView.m */, - E1761FC1DF3FDB6F1A4BDA9991658594 /* RCTImageUtils.m */, - 2AB0418E50954F2E1D6D7095C7BDA27E /* RCTImageView.m */, - BE8A10F3D934DBDC54D658272AD09D02 /* RCTImageViewManager.m */, - 0502C86B7DF4B00EAC6505457E2B31C3 /* RCTLocalAssetImageLoader.m */, - 59EDFA1DDF3AB506E9CA0987364C519E /* RCTResizeMode.m */, - C406F62897E13D577293695761AE8DE0 /* RCTUIImageViewAnimated.m */, - D7B44D3D9B49DB52A88C11F3186D7602 /* Pod */, - F6D16938707E0C0317B1C93417D0B379 /* Support Files */, + C3893067B4ECFFA8C4C9CC8A8D5966EE /* RNFirebaseMessaging.h */, + 54E3C1C3BCCE56C706BFA114BE0B4287 /* RNFirebaseMessaging.m */, ); - name = "React-RCTImage"; - path = "../../node_modules/react-native/Libraries/Image"; + name = messaging; + path = RNFirebase/messaging; sourceTree = ""; }; - 327A45E579E228BF7D3E29B5469C07EB /* Resources */ = { + 3082259E58863D9403713AD11984680B /* Support Files */ = { isa = PBXGroup; children = ( - 924344F52B4EC1586BD1212D4914D95A /* AntDesign.ttf */, - 376E2492A6E30A8650B86803CFA6BC3B /* Entypo.ttf */, - 6F2A067300BE713EFB9E56F58CAE3B7F /* EvilIcons.ttf */, - BF2ADC54D7E69F18667C6518600088E6 /* Feather.ttf */, - 0702B34AA844C30524B48B62B561BBFF /* FontAwesome.ttf */, - B39F3EA908B56EC99DADCAF4C1732564 /* FontAwesome5_Brands.ttf */, - 1896FB286AEDFDC36F923C5189F92ED2 /* FontAwesome5_Regular.ttf */, - 17AEC5962AB5EECFDE2DE32EE6922DEA /* FontAwesome5_Solid.ttf */, - 2F5E45CAFDD0B5413DE5BF9DF491186F /* Fontisto.ttf */, - 110113E7E10CA709CFBB74056A2731E4 /* Foundation.ttf */, - 1313C8CC89483B18E4E5DE62B296F5FF /* Ionicons.ttf */, - 101F9C70AAA1F7A8A54A50C4F4168F78 /* MaterialCommunityIcons.ttf */, - 62EFAE213B7B1E2D9B0E4CD14C348334 /* MaterialIcons.ttf */, - CB34542CC2217E0DE014FFD843D671F0 /* Octicons.ttf */, - FE6970F79EEA18E8655491063AC68EBB /* SimpleLineIcons.ttf */, - 02BCE96DAA4141BCC0FA88CBC7F36DF2 /* Zocial.ttf */, + 0CF4A6E68D0685DE586ED50622C61AB0 /* UMBarCodeScannerInterface.xcconfig */, ); - name = Resources; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; sourceTree = ""; }; - 32B79062C33B9FFF81C2970C819626DC /* Views */ = { + 30F75404939D1A08E87AF042E94679A4 /* UMFontInterface */ = { isa = PBXGroup; children = ( - F4C72F4244A39F9FF5BB8BEFA9B1BF44 /* RCTActivityIndicatorView.h */, - 2DACC85D8938DA90A1AF8939908B569A /* RCTActivityIndicatorView.m */, - FBBB6EEEBE7AC41A3555F9B18167F6CD /* RCTActivityIndicatorViewManager.h */, - 3797855F893F6A103D159850627A8C6F /* RCTActivityIndicatorViewManager.m */, - 18C92882E94F93D5A0FAA6D08847E13B /* RCTAnimationType.h */, - C68ECA5B63E304503C023340DB7662D7 /* RCTAutoInsetsProtocol.h */, - C19448AA604F055B80D33BAE242AE46E /* RCTBorderDrawing.h */, - 8A91EB71EA653428485E5466E2CBB8D2 /* RCTBorderDrawing.m */, - A13E80AE6A729D77A5B03D2453A07BFF /* RCTBorderStyle.h */, - 6CC59D62E3FE164D603346C4D814CA99 /* RCTComponent.h */, - EDE20208E9FEAB94B7ACC8BAB763D758 /* RCTComponentData.h */, - 0C9EA76FCBB390F7393463F23865DB10 /* RCTComponentData.m */, - FA0DD548DE56BA239C0A46C2BE7642D6 /* RCTConvert+CoreLocation.h */, - E1E048D0144BD5C2DA458D7E1603D34B /* RCTConvert+CoreLocation.m */, - 05C5F05F167A7407E3BC0A5C60D195CF /* RCTConvert+Transform.h */, - CA805E6377693E69ED26C02F8719CBA6 /* RCTConvert+Transform.m */, - 50E3E3361D76E10FF66B5EDF3675DEAC /* RCTDatePicker.h */, - ADE4BB14EF822D38A1B0B6893FC53797 /* RCTDatePicker.m */, - 5052E068A4355F42522D18101FD6C7DE /* RCTDatePickerManager.h */, - 0A7FAA47021000A0AE68D49BDAFB6229 /* RCTDatePickerManager.m */, - BE6361C2C7231939D52869D9648726BE /* RCTFont.h */, - 4D3E918D7884C7CFB182073D63C6B574 /* RCTFont.mm */, - 2C865AE8C6D07D3F5C9D9F79772C2663 /* RCTLayout.h */, - 651B081AAA996E059BAFD533EF0B1B68 /* RCTLayout.m */, - C564AA6335B6EBC9C23AFBD015DF763D /* RCTMaskedView.h */, - 097FE086579CAB093DD5BDC17FD6AFC0 /* RCTMaskedView.m */, - 7C52FC60F3FA4DB1E06A485159C8226F /* RCTMaskedViewManager.h */, - 4B81D570093AB1CAEBE5C3DF7023DF5B /* RCTMaskedViewManager.m */, - 4E11454A993825D86B3E0E01F922AE39 /* RCTModalHostView.h */, - 94DE77592004DF1F7B50325C773C9EC3 /* RCTModalHostView.m */, - 08408B034BD4895C8154293305785149 /* RCTModalHostViewController.h */, - 96CE6B0ECBD3204E0C50C074AE3C78E6 /* RCTModalHostViewController.m */, - EF922E575D5906A5203BE5B1A83E0ED0 /* RCTModalHostViewManager.h */, - FE54087BE46CA64232A2F8C9CA43E859 /* RCTModalHostViewManager.m */, - 017C43B026CB04C1EF78BFBE3ECC4F37 /* RCTModalManager.h */, - 6140E340775F0F13F7E2A6E9282B98D8 /* RCTModalManager.m */, - 7310E9459A1058540B7F1B3D743A662C /* RCTPicker.h */, - 2ABC4B4056075957F83785B658032BEF /* RCTPicker.m */, - F319CA198824B225B3954A404F9BA23D /* RCTPickerManager.h */, - A27E79EFF089B11810B130154DDF2756 /* RCTPickerManager.m */, - 7D1FE3F14A74BC1C3E1C6D3007D6703E /* RCTPointerEvents.h */, - 91D818B559C21A0B677C6ED9ABF5F156 /* RCTProgressViewManager.h */, - 19BC37419BDC3327F6A7C33802840939 /* RCTProgressViewManager.m */, - 7F24CA04296687DC525C19E3508E7361 /* RCTRefreshControl.h */, - A4C26C6A086FE97D34ECA021258C2368 /* RCTRefreshControl.m */, - 04EA1C75A760C09973E3167EFE3E6935 /* RCTRefreshControlManager.h */, - 0E2698DAF3341F1E37B670A4511D03E2 /* RCTRefreshControlManager.m */, - 38841A260D87D469AFF933377CD8A7BC /* RCTRootShadowView.h */, - 01CF4554E741926D31EF30679F8D8CC7 /* RCTRootShadowView.m */, - 91A9F86D9F4B6D78014A5ADCA5CABB6E /* RCTSegmentedControl.h */, - B16F257C57E497257669CC76BA07B225 /* RCTSegmentedControl.m */, - E24183C28FE5CE42D1500250E20C5090 /* RCTSegmentedControlManager.h */, - 5BAD23D7E9A015D36D9070DC74C9C9EB /* RCTSegmentedControlManager.m */, - 078DCD749D06FF25398DB212FE097A6D /* RCTShadowView.h */, - E7B9FBD172851AA60C3C6FB07E8E68C5 /* RCTShadowView.m */, - AC93F64C4FF795DA7D71958ED0C0C12C /* RCTShadowView+Internal.h */, - A8CCE3A8FF1C2BB3A9A71D15A2E11C73 /* RCTShadowView+Internal.m */, - 152D99BDB721B1EAE79C96126E72B1BD /* RCTShadowView+Layout.h */, - 27C8EB49CC4CD3F84FECC6E661B1CA25 /* RCTShadowView+Layout.m */, - 4F3FBF733480DB3D4AD1299D8879BEA9 /* RCTSlider.h */, - FCEEFA2D1D9902927071C8FBAA81460E /* RCTSlider.m */, - 46B968E1FEFB521DD402C79813D222DA /* RCTSliderManager.h */, - AA61D2586DEC3E69D8458995082E1EB2 /* RCTSliderManager.m */, - 92FBB8099801A27BF1A4141AEA1489F7 /* RCTSwitch.h */, - 2D92E5E61F73843DFCCD1398180E0905 /* RCTSwitch.m */, - 8058A6BEC15AFD2FDA6968BF3CB977EA /* RCTSwitchManager.h */, - B69802FE5D6973E0F3F74B9BA5769C1E /* RCTSwitchManager.m */, - D659AF6E9E8DECF87C08F270451E7140 /* RCTTextDecorationLineType.h */, - FD1D39BC3FB463B61BE62887185FD727 /* RCTView.h */, - DCA6CC491564CE520978D54B064C768E /* RCTView.m */, - B9CEAB2F86E4F088A02274C1414DE8FB /* RCTViewManager.h */, - 3564FC971AD6DF377158066316CA3DCC /* RCTViewManager.m */, - 174297031D5D97064D38A19C7DC9241E /* RCTWrapperViewController.h */, - 450C7FC1ED58D6B2D79C7830A752045A /* RCTWrapperViewController.m */, - 2938D2A489876F5A5BFD04A997E25489 /* UIView+Private.h */, - F2E3AA5EABABDF42ADB808D688164FA4 /* UIView+React.h */, - C27EE54FAFD51156AAA2A03935FFA799 /* UIView+React.m */, - 80715483C02E66A5814CECF06BEF86ED /* SafeAreaView */, - DA06E77B58D875E7DB53E8AC8C4F1785 /* ScrollView */, + 2B0F6F88BD766B40D9610A5374CC36B9 /* UMFontManagerInterface.h */, + 55F88757732E7FE74C9DB1339A410111 /* UMFontProcessorInterface.h */, + 9FCD890FE514033649939E23DF34FCFD /* UMFontScalerInterface.h */, + 8E63DE5FDC61C58B3447DB0396BC3C73 /* UMFontScalersManagerInterface.h */, + F8D5524FB063092E3325F8D28B28D52C /* Pod */, + 879F3A9033ECD2468189DAE5BB980708 /* Support Files */, ); - name = Views; - path = React/Views; + name = UMFontInterface; + path = "../../node_modules/unimodules-font-interface/ios"; sourceTree = ""; }; - 32C750659D275C2C0EA7339F4B03568F /* Pod */ = { + 313A748AEB6B4934761E0630D7BC91AB /* Default */ = { isa = PBXGroup; children = ( - CD458EFC1C8BFCF2AB63643028A3E32B /* LICENSE */, - 4E5BC129DB64EED086B819DEB5381E20 /* README.md */, - 7BE7891622EB09188F2F7417F108A12E /* RNFastImage.podspec */, + E9F30F25519F63BF0442A29E1423FFF1 /* Base */, + 8C20CEE22212DDDE842C26FDE6ADA2CA /* CxxBridge */, + FC59B7331AE341F0413D952C9259C402 /* CxxModule */, + C3205B7DE975C5140E227DACC552CF13 /* CxxUtils */, + 8C7CBC84423331242D42A6B6FE6C9777 /* Modules */, + 65AE39EF8646DA1A7B47A88EE6DFFC39 /* Profiler */, + 6B7B99CB35929146A220D14D68A46DF8 /* UIUtils */, + 6EA4AC36E6CB3CDB7F0F7F660605D1F2 /* Views */, ); - name = Pod; + name = Default; sourceTree = ""; }; - 32DC5CD6B229780D847112C3F7542DB9 /* React */ = { + 33F151A6A4A0F23EE92B99FE2F728DA2 /* VirtualText */ = { isa = PBXGroup; children = ( - D7FC68902E3AF20B96F44A1BDDE4AC4B /* Pod */, - 9B11A30CDD5D16559F81BCF0B50C99C6 /* Support Files */, + 3ABB39A02D387C3BEF3101867418B280 /* RCTVirtualTextShadowView.m */, + C8648AE914FA3B915EDC121CDE3F064B /* RCTVirtualTextViewManager.m */, ); - name = React; - path = "../../node_modules/react-native"; - sourceTree = ""; - }; - 33C920AB4EFA98F45B36C2C56E20365F /* Core */ = { - isa = PBXGroup; - children = ( - ); - name = Core; + name = VirtualText; + path = VirtualText; sourceTree = ""; }; 343E456B2AB936C3DDC90D1F4B20237F /* MethodSwizzler */ = { @@ -8894,149 +8664,94 @@ path = GoogleDataTransportCCTSupport; sourceTree = ""; }; - 356E0EAD8D47470C42CF7A7D9229B767 /* ReactNativeART */ = { + 377C1100EC2B6658E5E10ED244F6F29F /* react-native-keyboard-tracking-view */ = { isa = PBXGroup; children = ( - BD120D0B9EBE42B9FF56074133CF8095 /* ARTCGFloatArray.h */, - BA926B243299D2DDF430FA7DAF44B8E4 /* ARTContainer.h */, - 3BD6BAC4386150AC14FC03B0107457F4 /* ARTGroup.h */, - 1C96B000DAA4B0A4667838AF4A0DDAE4 /* ARTGroup.m */, - 0E1D2D89644507DDB99C0775951349FF /* ARTNode.h */, - 231C432A3961BDFBCC43561A5EA4F36B /* ARTNode.m */, - C996A6E63A68DF84911C919C171BE0CD /* ARTRenderable.h */, - F35F4E9F258606BF2BE22FDCAC2B7582 /* ARTRenderable.m */, - A5ABA0E10FE37349D53EF47074C017B0 /* ARTShape.h */, - EA59CDB4F40FC74738755F21FD9179AF /* ARTShape.m */, - F13D4DA071E13382EBB8FAACFBAB3167 /* ARTSurfaceView.h */, - D88BB9068AAEF882200E06034A2E98B2 /* ARTSurfaceView.m */, - 4CF05A2DB5F2DEC85B564E1FEB48A628 /* ARTText.h */, - A41D14C41217E03108A1B9AEBB310195 /* ARTText.m */, - DFF2E2EE2AECC376D0B0D17D0A8DFAAE /* ARTTextFrame.h */, - E94E82CA6CBE7E903DB83CDF94E22AAC /* RCTConvert+ART.h */, - 2B5CA053F72DF799277DEF4F9F9FBA0B /* RCTConvert+ART.m */, - 6906A4F40DB505ECAA0367E6E007416A /* Brushes */, - 609FB34DDDF5CF79BA65BAD31BB598C9 /* Pod */, - D4F8640B351E2D6438C6AA86BBFAC73C /* Support Files */, - 4666F699424F757BC26401A6229C935E /* ViewManagers */, + ECC314D558F5DF672D18C790519C8D94 /* KeyboardTrackingViewManager.h */, + 639DAC10EE5EA1A619AB562FD75ED18C /* KeyboardTrackingViewManager.m */, + 89744B170298F75C90CAC39E6808A498 /* ObservingInputAccessoryView.h */, + 1CCDD0A69E45548748B1FAAF293AADFB /* ObservingInputAccessoryView.m */, + C7C0DDAD43DCB0C5B0E28964FBD037BE /* UIResponder+FirstResponder.h */, + 75E365638CA123FC673096D535EC8E84 /* UIResponder+FirstResponder.m */, + 7B89B65395E413FA150A2EA80A8B154D /* Pod */, + 00D96BEE3FA814BC5DFC2C42D8607C95 /* Support Files */, ); - name = ReactNativeART; - path = "../../node_modules/@react-native-community/art"; + name = "react-native-keyboard-tracking-view"; + path = "../../node_modules/react-native-keyboard-tracking-view"; sourceTree = ""; }; - 35B49F5FFE023F91B61C46A0A0677F32 /* database */ = { + 37E134DBFE626C2E55CDE1D3EE165A01 /* Support Files */ = { isa = PBXGroup; children = ( - 57DFB6CDC6D345A86EF6EEF8F5DEBC0C /* RNFirebaseDatabase.h */, - 44E7913A32231BD98F0E83771A5E6C3D /* RNFirebaseDatabase.m */, - AA3A9F0F068955AF9A1FE1F0F2362AF8 /* RNFirebaseDatabaseReference.h */, - 16BF078F3273F79017A1B52F7C67CDFF /* RNFirebaseDatabaseReference.m */, + EF106A6DD349A9D728B07E4FF7D0B6FC /* UMSensorsInterface.xcconfig */, ); - name = database; - path = RNFirebase/database; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; sourceTree = ""; }; - 360AE81287D3EBA338AE9F59AD732DA0 /* FBReactNativeSpec */ = { + 38D26E7BBE632D361CCBEEBB4E672A29 /* Support Files */ = { isa = PBXGroup; children = ( - 0D4454889C698F3EA7E727F1944FC804 /* FBReactNativeSpec.h */, - 95ABB6B55BA602D3BBBAD1058697200A /* FBReactNativeSpec-generated.mm */, - 217CB0F2EE2A538F02B80A5C1ABED914 /* Pod */, - D34B5D039091BF18908D5BC74A276D9C /* Support Files */, + 6B6F4AC2C5C639CD50BF159830CC8CFA /* KeyCommands.xcconfig */, + 01FB45C7FD3C9C71EE2326C6D2C35FB0 /* KeyCommands-dummy.m */, + 579DCA16DBC6E517F256C8FCF62D5C1A /* KeyCommands-prefix.pch */, ); - name = FBReactNativeSpec; - path = "../../node_modules/react-native/Libraries/FBReactNativeSpec"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/KeyCommands"; sourceTree = ""; }; - 36AA80E897BD7DF26103A90672B47221 /* Pod */ = { + 38E66E7C00D8504B205C563F363DD3DE /* React-RCTText */ = { isa = PBXGroup; children = ( - 06D3C4F743E3864073808EA43C339893 /* LICENSE */, - BF3BA0755C19E6724BC80C2500A6D7F0 /* react-native-background-timer.podspec */, - A70AB99DF5F586D96DF4D6112CEAF550 /* README.md */, + 3DDD0DEB64B160EAE167CD2F2BCCDAFF /* RCTConvert+Text.m */, + 2C33912CA546600E42493C322862CA45 /* RCTTextAttributes.m */, + 123B8222D9E0AABD1CBFE27A180152AA /* BaseText */, + CB57D8EDCFBC6E588ECFD35966437CF6 /* Pod */, + 09F11580B1F970138A816DD42C753E8E /* RawText */, + 68C31E9E200F9720B5B0A651EF94E5DF /* Support Files */, + 29F0C9EB17758698AAC12E60C5866873 /* Text */, + AB00C6C5CA12BF25D635208FFF45DC40 /* TextInput */, + 33F151A6A4A0F23EE92B99FE2F728DA2 /* VirtualText */, + ); + name = "React-RCTText"; + path = "../../node_modules/react-native/Libraries/Text"; + sourceTree = ""; + }; + 38E7DB5068ECD555A8C177F79ECD8392 /* Pod */ = { + isa = PBXGroup; + children = ( + 7789EFA9B0EDD2CF26FC3B1BD82EC15E /* React-Core.podspec */, ); name = Pod; sourceTree = ""; }; - 373A82580444DF233C34BD11E6B13AB9 /* Pod */ = { + 3A54A43E35FAC881086B302605819C14 /* Video */ = { isa = PBXGroup; children = ( - 86A314064C1A5221385BD439D2F48CDE /* React-RCTLinking.podspec */, + 3FF032A05D37EC27E5991CF4F8AB0560 /* EXVideoManager.h */, + E41F52520D62AC019BAB1E9EEB0AD7E9 /* EXVideoManager.m */, + A097391D91E9B6ABA1CECE20676B56E3 /* EXVideoPlayerViewController.h */, + 8120E4F98D1D00F4339976D8EDC1057F /* EXVideoPlayerViewController.m */, + 3098F19ED0FF9A0D33958CE009076ED2 /* EXVideoPlayerViewControllerDelegate.h */, + 20F168BF5FD0754BFE7FF0FDA8265702 /* EXVideoView.h */, + AFE2B58EC2E3690530A64E04F5FEA198 /* EXVideoView.m */, ); - name = Pod; + name = Video; + path = EXAV/Video; sourceTree = ""; }; - 379037E9B123FC6C1C797A394B608FBB /* RNFetchBlob */ = { + 3AD623D9DA1BAB6BC9895D4428C38246 /* firestore */ = { isa = PBXGroup; children = ( - A7B3FE351CD5D079D637B8BC7681CE5C /* RNFetchBlob.h */, - 57DF598250C2ABB82FB71706AB22D7FE /* RNFetchBlob.m */, + 60163513AA98DAFFBB8096351DCE81C1 /* RNFirebaseFirestore.h */, + E606ACB92B5C3B7E5141D49B128773C1 /* RNFirebaseFirestore.m */, + D21E43780BF3998101CB499FE552EEC7 /* RNFirebaseFirestoreCollectionReference.h */, + 516328D76CF735CAAC99DF79EEE52C05 /* RNFirebaseFirestoreCollectionReference.m */, + 8520D971696FEBF0477BBD6446C4D492 /* RNFirebaseFirestoreDocumentReference.h */, + 2F56A0807073424049DE488D5F256EDD /* RNFirebaseFirestoreDocumentReference.m */, ); - name = RNFetchBlob; - path = ios/RNFetchBlob; - sourceTree = ""; - }; - 37B2E7A72C315EFFCBE390FF0813F95B /* Multiline */ = { - isa = PBXGroup; - children = ( - 6C8E045F2FD5C7D631C293C0F73C0604 /* RCTMultilineTextInputView.h */, - 57EF022C73BD0F88A58907CD6F984194 /* RCTMultilineTextInputViewManager.h */, - 77F287F15F75C2EFD978EACE93861BD3 /* RCTUITextView.h */, - ); - name = Multiline; - path = Multiline; - sourceTree = ""; - }; - 38753B5D39666D18A3B6CAB0EEFD9A90 /* functions */ = { - isa = PBXGroup; - children = ( - E96F58AD23FA16CC8D06419570E1E52F /* RNFirebaseFunctions.h */, - AB085A3992ED4E69309C402C9B2F36FC /* RNFirebaseFunctions.m */, - ); - name = functions; - path = RNFirebase/functions; - sourceTree = ""; - }; - 3A02010AD738A739F4D275977A080054 /* React-cxxreact */ = { - isa = PBXGroup; - children = ( - 984EC3D8454467D54E7F433691CF8B2D /* CxxModule.h */, - A3CAFFB43F1526F1910D35006AEA64D4 /* CxxNativeModule.cpp */, - 51DF25480D7018A24CFA0835502A684C /* CxxNativeModule.h */, - EC5FE22EE3F05BCC7AB588F5B43EF411 /* Instance.cpp */, - 54D14A6AF913F814BE23D71D63984D29 /* Instance.h */, - 42365822458AAD28BC429F6D3DB3E7F9 /* JsArgumentHelpers.h */, - E20DF5FFBA43BBBC8DC829D1C5C88996 /* JsArgumentHelpers-inl.h */, - C82F5DA02C568BB4C4C5400DD44F5A00 /* JSBigString.cpp */, - 4E11CC26571EB421A596832D803E4ADB /* JSBigString.h */, - C65F164291E733597EFE8C5446CEB449 /* JSBundleType.cpp */, - 34B0035A78BDF37E294278080430ECD8 /* JSBundleType.h */, - 1C3340033258D820E2EB245BAFEB053D /* JSDeltaBundleClient.cpp */, - F9DF1E342E98C711D63EE7113CD4DE7D /* JSDeltaBundleClient.h */, - 346FBBEDAD78CD39B96FC164376DAFBB /* JSExecutor.cpp */, - 23AB78D14C1EC7321119A8EF4E9C9C57 /* JSExecutor.h */, - 0D1A6C113D375ECC144BAE47C35619DA /* JSIndexedRAMBundle.cpp */, - 6DA2677C9C7DAA16CFDB808FC14788B5 /* JSIndexedRAMBundle.h */, - 8B00F1FE3D135C9D9CB860A71ADD16CE /* JSModulesUnbundle.h */, - 1ADB7061909E39405AD4BD7B8428BCA7 /* MessageQueueThread.h */, - BCCEB59819C9E8AED019EAAA3C0CE568 /* MethodCall.cpp */, - B6FF46DC4869A47D4B1A79A2F7D9FCE1 /* MethodCall.h */, - 13951187B0C12BD8402BCA7CBA95D0A7 /* ModuleRegistry.cpp */, - 032D1211FB26C186977EF1BE4D4D822D /* ModuleRegistry.h */, - BFD250D0AFDA07A5E09D2F7A6DF2AB44 /* NativeModule.h */, - 1873AC74B9B05005FD4C78FB799A0829 /* NativeToJsBridge.cpp */, - BA75D4667D10405301A74A8CA846A155 /* NativeToJsBridge.h */, - 5D57B59194C2DF888C374F2572B6C4D7 /* RAMBundleRegistry.cpp */, - 987968DA8F1A1D930138205600AEF2C8 /* RAMBundleRegistry.h */, - 4B32D349C5AA80B4FB37C642080D45EC /* ReactMarker.cpp */, - BF271218309EEE07EE2F305F9BD4CA0C /* ReactMarker.h */, - 52C9EAE00168800C327A273E11C042D3 /* RecoverableError.h */, - 513BFD61BAE0700B6C2B906CA432038B /* SharedProxyCxxModule.h */, - 5258A7FE033C54F3D4FA34988E357BEC /* SystraceSection.h */, - 04EBDB7FE2BA2CF97DDAD1DCBC419C4C /* Pod */, - 90E40869C55D1CE3290FB28646FDCD05 /* Support Files */, - ); - name = "React-cxxreact"; - path = "../../node_modules/react-native/ReactCommon/cxxreact"; + name = firestore; + path = RNFirebase/firestore; sourceTree = ""; }; 3AFE7C92461044B160C47A6C0AAAB752 /* Support Files */ = { @@ -9049,70 +8764,59 @@ path = "../Target Support Files/FirebaseInstanceID"; sourceTree = ""; }; - 3B53C6832128DC3E51A58678AC5F2914 /* Pod */ = { + 3B311F4CE755B72FEF8DBB4C8CDD2559 /* Support Files */ = { isa = PBXGroup; children = ( - C526010A82F51F0160BEC5A43310ECB3 /* LICENSE */, - BF6063E7F3E500D9B6543D851D611C30 /* react-native-jitsi-meet.podspec */, - 4028A6CBC22733D1D11FC1C32AE533D4 /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 3CB461BA48012400D326A363B2C1853E /* Support Files */ = { - isa = PBXGroup; - children = ( - 1849DA14CADFB7DF37364ACEFA91166A /* EXWebBrowser.xcconfig */, - E01D4BBC06A8F671E048CD814EA1DAE6 /* EXWebBrowser-dummy.m */, - 9B52DF1CB1AA62488CE63C6CFB7851B6 /* EXWebBrowser-prefix.pch */, + F85392B2599302F91F4B0D19284BA676 /* react-native-video.xcconfig */, + 7B1E97A9F2C1BC67CEFC4ED914700AD2 /* react-native-video-dummy.m */, + 672A3A7FA491AC6968E21C58EC21FD21 /* react-native-video-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; + path = "../../ios/Pods/Target Support Files/react-native-video"; sourceTree = ""; }; - 3CD27FDEE527DCF039DB157BC84C390C /* QBImagePickerController */ = { + 3C323F0E225E5DB3AB4E1EDD64942BB1 /* RCTCustomInputController */ = { isa = PBXGroup; children = ( - 73EAEFEE2973DE2B608731E9FE3C8A25 /* QBAlbumCell.h */, - 8F8FE20DC1D5D221CB41328B3C377473 /* QBAlbumCell.m */, - 40553C8A6721563B46E7C276F586493F /* QBAlbumsViewController.h */, - 4DD8D3AF0A74340CC3014948BF74BBCE /* QBAlbumsViewController.m */, - 2D3735CCB8DA31F96E2BA25454CF400A /* QBAssetCell.h */, - 5E14416BDCED8734451ED493A72627EA /* QBAssetCell.m */, - C9A1BDEB848A1F99DCC1C09C349EC3D3 /* QBAssetsViewController.h */, - 30041F3D20F1C7B733ACFE6E47146E4B /* QBAssetsViewController.m */, - FECC64914591B823F88D64281B8C448E /* QBCheckmarkView.h */, - 0096C45B37BCEA61A77CC464024A90FC /* QBCheckmarkView.m */, - FCDA7192A03D16F7CD1D5DB0E827BA04 /* QBImagePickerController.h */, - 181A77A89D32902A302952F3FCF15AC5 /* QBImagePickerController.m */, - 3EA67F22BED9DF0E10C8FD51DFA3C479 /* QBSlomoIconView.h */, - E94F324617435A6F3AE226340AC96FAE /* QBSlomoIconView.m */, - F7564569153B3646AE14B6629780102C /* QBVideoIconView.h */, - 31645AE84C7DA065EB63BA5D17B21D67 /* QBVideoIconView.m */, - 233DAAE18AA7F64BDDA3527E2437B832 /* QBVideoIndicatorView.h */, - 4D944F127F84969A76D4F95459215595 /* QBVideoIndicatorView.m */, - 20E5CBEC5A58F3C029655E9A71DFCF76 /* Resources */, + C2E6C2B575F24F9FA7B0F2C3AAEA8577 /* RCTCustomInputController.h */, + E3AC30C12EC69BAE7FEB7BEBF749393F /* RCTCustomInputController.m */, + F3F3FE84E33655DC802A375A4A3A2F47 /* RCTCustomKeyboardViewController.h */, + 93397AD379506B0DFA85AB22E1858FC5 /* RCTCustomKeyboardViewController.m */, ); - name = QBImagePickerController; + name = RCTCustomInputController; + path = lib/ios/RCTCustomInputController; sourceTree = ""; }; - 3D14D9F1B6877C08054895DFD4020190 /* Support Files */ = { + 3C33563BD7AFAEF8D12B35A08AF8CAD7 /* fabric */ = { isa = PBXGroup; children = ( - 2CA3DDA588BBA33D185387C5D75150E9 /* react-native-jitsi-meet.xcconfig */, - 2EB64474F78A6BB6F97CC4740B32C7E6 /* react-native-jitsi-meet-dummy.m */, - 5F9A138C6ED0C4CDA42E8148027A6006 /* react-native-jitsi-meet-prefix.pch */, + 7C6F00A792B8D8F7E2EDA3CEAD517A3F /* crashlytics */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-jitsi-meet"; + name = fabric; + path = RNFirebase/fabric; sourceTree = ""; }; - 3DBD4B5C947FFC79481E65BC463B34B7 /* Pod */ = { + 3CE3C357B97965F1EB80E54CA3AE881C /* UMModuleRegistry */ = { isa = PBXGroup; children = ( - 45320D3EB3AD5EC8828DC640A339A32E /* React-RCTActionSheet.podspec */, + 714A238B856E4054872E1FD400E56ED0 /* UMModuleRegistry.h */, + 47EEF3AE669D34F0C6B77A1B1C77409D /* UMModuleRegistry.m */, + 78A184457F8555737983B26A11323CC5 /* UMModuleRegistryDelegate.h */, ); - name = Pod; + name = UMModuleRegistry; + path = UMCore/UMModuleRegistry; + sourceTree = ""; + }; + 3EBFCEBC1B23903E52896FD370724FC6 /* RCTAnimationHeaders */ = { + isa = PBXGroup; + children = ( + 4F1B903AFBB12AAE3480AA42378C8726 /* RCTAnimationUtils.h */, + F9C8922FC2D0B6600C814C1B3382B23F /* RCTNativeAnimatedModule.h */, + 6178ED33DD306879DAFA289C279D1721 /* RCTNativeAnimatedNodesManager.h */, + 2F640704C6B238FFAD7855CF187FE578 /* Drivers */, + 5D4663A395B20D33275C3A3D4C05A68D /* Nodes */, + ); + name = RCTAnimationHeaders; sourceTree = ""; }; 3F6F28E6BE7C21FFF5BEC8EA83FCA9A1 /* Resources */ = { @@ -9123,36 +8827,91 @@ name = Resources; sourceTree = ""; }; - 3F72673E0F3B5F7859176ABADED43CC0 /* Support Files */ = { + 4008E5145C352361130CF003129A6EEC /* Support Files */ = { isa = PBXGroup; children = ( - E9DD91D01681C27C1CCA91964189CBC3 /* UMConstantsInterface.xcconfig */, + FB30A0C1F84B37E7A63836AD635BF79E /* React-cxxreact.xcconfig */, + 4ECC8DCC2ABEC6C02D9002EA8DB15B51 /* React-cxxreact-dummy.m */, + 289C498A8DF4EC279311FDCAD80D1986 /* React-cxxreact-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; + path = "../../../../ios/Pods/Target Support Files/React-cxxreact"; sourceTree = ""; }; - 3F91460DEF84E7B3506F93406EB64C9F /* Support Files */ = { + 41AB71CF1960229EB3168DEC12D6D7A1 /* Pod */ = { isa = PBXGroup; children = ( - 211F772B93EC2A85C2C1F1AD2357F7B8 /* RNGestureHandler.xcconfig */, - 922FCA40A40F924C57AEC2FCA7D56714 /* RNGestureHandler-dummy.m */, - A07DF45037E3E9968E599E042DC22FB1 /* RNGestureHandler-prefix.pch */, + 3CDB31921DA1C96EA73DF664B097FDE4 /* React.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 41EAFE4A5D36EB625E314E306C1ED578 /* Support Files */ = { + isa = PBXGroup; + children = ( + 43815A8525F773276C57D3783821EC68 /* RNFirebase.xcconfig */, + 9A1D215EB5CC4FA8B549778DCF215A5C /* RNFirebase-dummy.m */, + C9E1D8E89A6E01CD8EDDC9390128E289 /* RNFirebase-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNGestureHandler"; + path = "../../../ios/Pods/Target Support Files/RNFirebase"; sourceTree = ""; }; - 41C3B9396417F6A1E6E68304BCCD3F0E /* EXImageLoader */ = { + 42AED56E50C010F8D77AA2DA49C14D2B /* Pod */ = { isa = PBXGroup; children = ( - B45903CF11C39B9FCE0E9E8ED5454364 /* EXImageLoader.h */, - 8DED22BF939C557A5B9E970225EDE32D /* EXImageLoader.m */, - D4531833B94DBC77CC0DC1B740F4EDD2 /* Pod */, - 95AFE9051BF9A54D6048FEE37B4A44E4 /* Support Files */, + CD96D51596543F25D4526773885A67DF /* UMFileSystemInterface.podspec */, ); - name = EXImageLoader; - path = "../../node_modules/expo-image-loader/ios"; + name = Pod; + sourceTree = ""; + }; + 42BFB295E0CF8B1595BA60D8B0DDBA0F /* EXHaptics */ = { + isa = PBXGroup; + children = ( + E12037BC069B82359BD9130847A65C00 /* EXHapticsModule.h */, + 86F3BA956CA2FFF9CD02935EAB9D2D39 /* EXHapticsModule.m */, + B93E696AD81C6E78001C38538C32EAB2 /* Pod */, + 58FB4F633D42A5FAC9B1A6C59C4C6970 /* Support Files */, + ); + name = EXHaptics; + path = "../../node_modules/expo-haptics/ios"; + sourceTree = ""; + }; + 43219D9397ABE3178694DBEC1762B03F /* Support Files */ = { + isa = PBXGroup; + children = ( + 93FAB1745DC86F18A7B2CF702DE72503 /* React.xcconfig */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/React"; + sourceTree = ""; + }; + 4327AF53E2632320858494B5B7CD605E /* Support Files */ = { + isa = PBXGroup; + children = ( + 929ADB4BD381ED2AA60F8FF8E7317730 /* UMImageLoaderInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; + sourceTree = ""; + }; + 433AAF23E6B69256BECA8C24F639F2F5 /* jsi */ = { + isa = PBXGroup; + children = ( + 9C4240233ECFEFFB1E31A2BDB0900128 /* decorator.h */, + EC1E6F6BD46D3034BC7755AEA1502E5F /* instrumentation.h */, + D29D20BFE80E1488AD42B308B8135E12 /* jsi.cpp */, + FE682E6879BA8154495887920D01926F /* jsi.h */, + 363F1EF00EC3F453493AAD41BD955E61 /* jsi-inl.h */, + 7D08DF9539848E8CAC7915FCD30C16E7 /* JSIDynamic.cpp */, + 87362BE98732F68528D90304A5C4E274 /* JSIDynamic.h */, + FDB6F03379BB5DCC38B9907F97598F3E /* jsilib.h */, + B62FD50583D50449408683A8512DD85D /* jsilib-posix.cpp */, + 315204E8FD52FE3A3515BE4EE234DEA1 /* jsilib-windows.cpp */, + CE73BF668DDC17C0757CADB4332DB252 /* threadsafe.h */, + ); + name = jsi; + path = jsi; sourceTree = ""; }; 43B8BB7576E1183520FEAE7BF9E22D8D /* Support Files */ = { @@ -9166,65 +8925,45 @@ path = "../Target Support Files/DoubleConversion"; sourceTree = ""; }; - 457B43472B59E8E46A8D4BABFE851266 /* RCTCustomInputController */ = { + 43CF339D7075F9E6CD613C86B905EECB /* instanceid */ = { isa = PBXGroup; children = ( - 3E5E117548E693E5E485250BC8BB48D8 /* RCTCustomInputController.h */, - 118FDB9E5AAE4B0F868A9FB23850B670 /* RCTCustomInputController.m */, - 7854E457877965E4AF2BD35C69EF71BC /* RCTCustomKeyboardViewController.h */, - 44BE015BEB9560624AB2F0EDA99AED32 /* RCTCustomKeyboardViewController.m */, + 0086AEEAD45DC59D6693CBD261CE72B5 /* RNFirebaseInstanceId.h */, + C45E958F1FD041D1C66D329032EC24E0 /* RNFirebaseInstanceId.m */, ); - name = RCTCustomInputController; - path = lib/ios/RCTCustomInputController; + name = instanceid; + path = RNFirebase/instanceid; sourceTree = ""; }; - 45EC0CFA5FCA1CEA49A4731C47E72215 /* Pod */ = { + 4462BEB6146565CEE5A20EA239657F9A /* RCTSettingsHeaders */ = { isa = PBXGroup; children = ( - ED3B096CC0BA80651C28D1350889123B /* UMConstantsInterface.podspec */, + 0797AE20CA374FA355E5FBE35EF12C88 /* RCTSettingsManager.h */, ); - name = Pod; + name = RCTSettingsHeaders; sourceTree = ""; }; - 46412BC9766E6F931595620D27AD2DF9 /* Pod */ = { + 4676890FEDBBEFAFF2DB105E012484D6 /* Support Files */ = { isa = PBXGroup; children = ( - 83CF519B4F2DA4AF6FC5D3B91D25B4A7 /* React-RCTSettings.podspec */, + 54E5BFB8C428641CEB02F8AEB19B9EFF /* RNDeviceInfo.xcconfig */, + A75A67682FD28D02E198C5940C1521C6 /* RNDeviceInfo-dummy.m */, + 182ED7904C3796A73CE77AB1D6112A6C /* RNDeviceInfo-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; sourceTree = ""; }; - 4658FC56C3540475120CDC0D241AB42A /* RNVectorIcons */ = { + 4690AAA8E351FE010BF9ADAE16FAA138 /* react-native-background-timer */ = { isa = PBXGroup; children = ( - 21D0078BE561313FE04B5DE40C8AD3B4 /* RNVectorIconsManager.h */, - 45CE8B37F73C35AD44948FA7205C0F4A /* RNVectorIconsManager.m */, - 9D1531AE4007A2A9148FB10841984118 /* Pod */, - 327A45E579E228BF7D3E29B5469C07EB /* Resources */, - B22FF4A473CD51DD3C31378A55968E47 /* Support Files */, + B79A67A682917EF788EB5DD261DEE70B /* RNBackgroundTimer.h */, + E8AEA7B9442431BEAC08800C2EBDF01E /* RNBackgroundTimer.m */, + 06F116E1BD272BD0E252E25498153A8A /* Pod */, + 57B0D03180988DC4C100962BCB3FEA22 /* Support Files */, ); - name = RNVectorIcons; - path = "../../node_modules/react-native-vector-icons"; - sourceTree = ""; - }; - 4666F699424F757BC26401A6229C935E /* ViewManagers */ = { - isa = PBXGroup; - children = ( - 2C49B46020A92385B1A4D715A276E946 /* ARTGroupManager.h */, - 96AA77E0285EDD12927EF15AB23471E4 /* ARTGroupManager.m */, - BD45415BD752013DA3245CAA4A136B95 /* ARTNodeManager.h */, - 097C8E97EDDEDDB179E18497993BF8AE /* ARTNodeManager.m */, - 4F93794CA851794BFAF1414185CB493E /* ARTRenderableManager.h */, - 4631337CD80EF607C5F83FA3455A02A9 /* ARTRenderableManager.m */, - A705E35F333CB64E04A16117FAD3D78E /* ARTShapeManager.h */, - FEEC298910EC23DF638A069E787F9F14 /* ARTShapeManager.m */, - 278B8218B421064466EA36AD04D44D68 /* ARTSurfaceViewManager.h */, - 4D33174AC8E0E43A147F33CBBD961C8F /* ARTSurfaceViewManager.m */, - 98761D46C834D39986CE5E71ADB846AF /* ARTTextManager.h */, - E72C9EF29F6A797469AE3146483A69C9 /* ARTTextManager.m */, - ); - name = ViewManagers; - path = ios/ViewManagers; + name = "react-native-background-timer"; + path = "../../node_modules/react-native-background-timer"; sourceTree = ""; }; 472D0655A441F438064A68603A68705A /* Support Files */ = { @@ -9238,39 +8977,29 @@ path = "../Target Support Files/RSKImageCropper"; sourceTree = ""; }; - 47B66F2C9006D5F2F2E0925262742204 /* CoreModulesHeaders */ = { + 47B93930C148F7CF326BE7A02DA8C1B6 /* react-native-cameraroll */ = { isa = PBXGroup; children = ( - 6235F0F9E3A876D361CF60105A7254E9 /* CoreModulesPlugins.h */, - AD1462F43B9EA1A2C859223A1FF5567A /* RCTExceptionsManager.h */, - DF32FC0A68A9824FBE0FC23450FF47CF /* RCTImageEditingManager.h */, - 8FAF62BFFC896F70FC39BD6610038A65 /* RCTImageLoader.h */, - CBC62F256D9A8EF420880FB91A287F40 /* RCTImageStoreManager.h */, - DA82FAFB6CA82B371281E4DB9A3EE98F /* RCTPlatform.h */, + 6123B2A15408A70B76B79C57A175C786 /* RNCAssetsLibraryRequestHandler.h */, + B59B706804D65D8A250DA137FCC9B138 /* RNCAssetsLibraryRequestHandler.m */, + EB13EAAC29F39342E66D644585186CD7 /* RNCCameraRollManager.h */, + D8AE2352033C6004C6B82D705161327F /* RNCCameraRollManager.m */, + D583C4762FED683674C7C1A87E20571B /* Pod */, + 6FB512089F3862C7E961C56A0BA3CB5E /* Support Files */, ); - name = CoreModulesHeaders; + name = "react-native-cameraroll"; + path = "../../node_modules/@react-native-community/cameraroll"; sourceTree = ""; }; - 47C18A4D3F3892D7F5A6E628066B206C /* UMImageLoaderInterface */ = { + 481F7DDC3704037F2C749AFF5137CDDD /* UMCameraInterface */ = { isa = PBXGroup; children = ( - 835BAF5E3AA3F39487E371EAF0E57C60 /* UMImageLoaderInterface.h */, - B093999EA790249FAF463220521385A4 /* Pod */, - 607AF0987B00583CBCF866F8A53AEDD0 /* Support Files */, + 5C9ED86974837919A203C890E1B9D52A /* UMCameraInterface.h */, + 80ED9C0DC40111C25E56884FB4E6C8BD /* Pod */, + DE162CB7DF8F690F562B7785D34B6E87 /* Support Files */, ); - name = UMImageLoaderInterface; - path = "../../node_modules/unimodules-image-loader-interface/ios"; - sourceTree = ""; - }; - 4845F9D2D753ECCE58C8D9D72422B421 /* Support Files */ = { - isa = PBXGroup; - children = ( - 521D7D15BA51A665AED00F7B8325CF7E /* RNFastImage.xcconfig */, - DCF29C4013DFB5FA396D0A90D013CF7F /* RNFastImage-dummy.m */, - F806F944CE3B9A32EB5B7E6CA8300D2C /* RNFastImage-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNFastImage"; + name = UMCameraInterface; + path = "../../node_modules/unimodules-camera-interface/ios"; sourceTree = ""; }; 4928610451BAB56E49BA8FF8129BF910 /* Network */ = { @@ -9290,145 +9019,127 @@ name = Network; sourceTree = ""; }; - 49A77384F0151373CA63A75E115C79DE /* React-RCTLinking */ = { + 49DFB9D678A577EA84F92F9B365E3781 /* React-Core */ = { isa = PBXGroup; children = ( - EF9D16860EB5FA761348FDB4DC91DBAF /* RCTLinkingManager.m */, - 373A82580444DF233C34BD11E6B13AB9 /* Pod */, - F7D7024944990F0D66C59AEFCE976E70 /* Support Files */, + 6681E15CB9B690F8E44F237E8246F44F /* CoreModulesHeaders */, + 313A748AEB6B4934761E0630D7BC91AB /* Default */, + FA967AC70E4B763378E1F4FEA9D13281 /* DevSupport */, + 38E7DB5068ECD555A8C177F79ECD8392 /* Pod */, + 64064FEFC8406963BAF5E1BCDA37B960 /* RCTActionSheetHeaders */, + 3EBFCEBC1B23903E52896FD370724FC6 /* RCTAnimationHeaders */, + 15C35EE578FECE5642F4801D79B8FD3B /* RCTBlobHeaders */, + D9EFA9C00413793029A953444995E0DF /* RCTImageHeaders */, + ECD0E388727ACC2986139E9FB2E9A41D /* RCTLinkingHeaders */, + 0D76D3132CA1E2C3BDBD2B0E7FE81270 /* RCTNetworkHeaders */, + 4462BEB6146565CEE5A20EA239657F9A /* RCTSettingsHeaders */, + 9F75A82E87505DC71E8C2FF08343D03E /* RCTTextHeaders */, + A4DF82F35E9EDCF5412AE8523A092D8C /* RCTVibrationHeaders */, + B3042851285834DAA75A12538B0233F1 /* RCTWebSocket */, + F650E908CCC38313A969EC02E0FB24DD /* Support Files */, ); - name = "React-RCTLinking"; - path = "../../node_modules/react-native/Libraries/LinkingIOS"; + name = "React-Core"; + path = "../../node_modules/react-native"; sourceTree = ""; }; - 49BAED67B08EDC28239F6FEB60B3719F /* Yoga */ = { + 4A2183A32EAFCD944A3BB85CCC82248C /* Support Files */ = { isa = PBXGroup; children = ( - EB6168ABE2CE62305490CA4BD7049283 /* Bitfield.h */, - CB741FE3778527A80CFC0B2A73FD5D32 /* CompactValue.h */, - 9D820246B0BD3309229891932B60F66A /* log.cpp */, - 712B8F56124AFCCAC1EB277D7DD6C9C8 /* log.h */, - C7A3ACA942980704A89C6E5CC3219F2E /* Utils.cpp */, - 5BCCCD4DF9A60DEAD70F2EA0016C5BC5 /* Utils.h */, - 329FF8AD3B6D382A19D0707235664543 /* YGConfig.cpp */, - 11D227BCF5211CC470C656A32E7BDB55 /* YGConfig.h */, - E8961112A6754761DB791C0ABFFEAEDD /* YGEnums.cpp */, - 11B7D73230E6A947F4A33D7520ABA840 /* YGEnums.h */, - F14D8994925A0A0BEE1B08369B56247E /* YGFloatOptional.h */, - 0456C2D13A1432E8F3873A6AC42239DD /* YGLayout.cpp */, - 5762FABED35FFA2D439A71F1275661A0 /* YGLayout.h */, - D550DD71459E8D7568326395A7971BDC /* YGMacros.h */, - C311D25970FF30E9C7C775ED20FD09A0 /* YGNode.cpp */, - E1F17ADA394A0FB75DCE5E48D30C27C9 /* YGNode.h */, - 8EE6BDF4D32EF0A286192FC4EE837F27 /* YGNodePrint.cpp */, - 3A31D7F54597E076BF9613538EAF5E3C /* YGNodePrint.h */, - 25A399223CCC410E790D3A79E70F29FF /* YGStyle.cpp */, - 0A8D98458AF6A341AED8D30B08B285BB /* YGStyle.h */, - B955349B39533145CDAE10EE18937134 /* YGValue.cpp */, - FA5E06582BE3DC32D7AF5953A9CF4512 /* YGValue.h */, - E6AF3EAA1DBF0F5E8A3C0E395D9FD89F /* Yoga.cpp */, - DC4479DD14256D476C9D0287D63ACBDF /* Yoga.h */, - BA43FE43EA638C45DED55CAC3B1FDC93 /* Yoga-internal.h */, - D822039F52B4822C2DFF78746E7BC2D5 /* event */, - CE4585C29DE8B9957503D29782C14336 /* internal */, - 7AF2AFA2C984AA8601870E89472EE2CB /* Pod */, - D48239A9D05F11C13B96038FAFD2BBD2 /* Support Files */, + B8F82E2568CD387AE71DA33BE9E526FA /* RNUserDefaults.xcconfig */, + 604580A241970FCE2252B38D3AD2EB26 /* RNUserDefaults-dummy.m */, + 26680BCBEBAA3226DB090A99D25A5A7D /* RNUserDefaults-prefix.pch */, ); - name = Yoga; - path = "../../node_modules/react-native/ReactCommon/yoga"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNUserDefaults"; sourceTree = ""; }; - 4AA7A2C153BA4DF34C688AE6120CA868 /* converters */ = { + 4AB8D02D54DC2F5DD29DC2DC5374DC13 /* Pod */ = { isa = PBXGroup; children = ( - FDFF3C5DAABF31BF9C9877B8AA180EBA /* RCTConvert+UIBackgroundFetchResult.h */, - A14A41BC0F35CC63BB4C79FA41FCCEF2 /* RCTConvert+UIBackgroundFetchResult.m */, + 3820F806CA630ADD7988BD05E3E98001 /* React-RCTActionSheet.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 4ACE2A048E6729B2A42E0265260523E1 /* converters */ = { + isa = PBXGroup; + children = ( + 290E8035DD3CE29392F2FF8F1F3E0AA9 /* RCTConvert+UIBackgroundFetchResult.h */, + E6D4F0910997F8C5C7D9B5773979738D /* RCTConvert+UIBackgroundFetchResult.m */, ); name = converters; path = RNFirebase/converters; sourceTree = ""; }; - 4BC6E5F648873F6C9EF3FA1566BFBB7E /* Support Files */ = { + 4B97B54F5497DA6A63A9DEB57979A463 /* Recording */ = { isa = PBXGroup; children = ( - 09CFE0206070257FA56A9423FF01E393 /* React-RCTBlob.xcconfig */, - 731F48FF22DC60A71D7B7D2BDD5CC067 /* React-RCTBlob-dummy.m */, - BDFC9339EE297F17211CC6C8E89DB7F1 /* React-RCTBlob-prefix.pch */, + 1D131917DF3473FDB6FA934D9DEFEA9F /* BSG_KSCrash.h */, + 79EF13B1EBA69CD93AC259653E3BFF3E /* BSG_KSCrash.m */, + 569BB4CE80475699AABC611932B19F3B /* BSG_KSCrashAdvanced.h */, + 4255DDF37217B80A6FC1AA87E7D961BB /* BSG_KSCrashC.c */, + 22E29CEFCAF60427BF23BB8173FF0290 /* BSG_KSCrashC.h */, + 707A93EC8F27AFC053B4DFE9AD3048C5 /* BSG_KSCrashContext.h */, + EF70D54EF4C3182ABD88763F3D049CE7 /* BSG_KSCrashDoctor.h */, + 8AFC3FDE725E9FAA7A4B64F82BF4B32A /* BSG_KSCrashDoctor.m */, + E013C3BD3D8B32F02469CCBECB38B281 /* BSG_KSCrashIdentifier.h */, + E57C813DDCCB3010D420482801376EB7 /* BSG_KSCrashIdentifier.m */, + 7DA61CD0F80A05EAE58026DA7C88C082 /* BSG_KSCrashReport.c */, + 3C7A25419288AB12A311C9B8590BA7ED /* BSG_KSCrashReport.h */, + 43D89E7B92F1FB75487CC4507EFEDE97 /* BSG_KSCrashReportFields.h */, + 4F4538B9A5DD66CFB3917610C824941C /* BSG_KSCrashReportStore.h */, + F1DD820E50ED7683D2682FC978902760 /* BSG_KSCrashReportStore.m */, + DF92D606E8726EC631EAC028DA7D1669 /* BSG_KSCrashReportVersion.h */, + 7DAA2E69EEF67212019EA6FF8CD3E96E /* BSG_KSCrashState.h */, + EDBFA5777814B21574051F46F39A63C7 /* BSG_KSCrashState.m */, + 67A1FB9C11FBF93A066ED437E4D975E9 /* BSG_KSCrashType.c */, + CEB6F60F08AC675430616A8B7C20CF96 /* BSG_KSCrashType.h */, + BD50BFF576E37A21E3895D00791C062B /* BSG_KSSystemCapabilities.h */, + B40BCE5751CB15D9915ED40E54235270 /* BSG_KSSystemInfo.h */, + 43471D841BB5055A3A2C97042BD45621 /* BSG_KSSystemInfo.m */, + 955D77FB666FAF9BE8FE7B657B256897 /* BSG_KSSystemInfoC.h */, + F71F1B3ABD955B695D466A833B0D17F5 /* Sentry */, + F9AE074AB8667E103AB4D29D06057F3E /* Tools */, + ); + name = Recording; + path = Recording; + sourceTree = ""; + }; + 4D102FBD7E42969A6E5555EA558F3314 /* Support Files */ = { + isa = PBXGroup; + children = ( + 54352B464F96C6F36A4E3BF21A0AAF4C /* React-RCTImage.xcconfig */, + 11918BF00AEACDEB104E48AC350AF3D8 /* React-RCTImage-dummy.m */, + 2545EB3FFD648DE0B0840C756FDED923 /* React-RCTImage-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTBlob"; + path = "../../../../ios/Pods/Target Support Files/React-RCTImage"; sourceTree = ""; }; - 4C99D70073FB6572E6AA632F7958A0A2 /* RNReanimated */ = { + 4E0E8C55BFE659BFEC943808176AA9C5 /* Support Files */ = { isa = PBXGroup; children = ( - 5BCB755568AE6FC6B7B38E00572F45CA /* REAModule.h */, - B1F80EF5F75C98FB7CEB07165A04BE38 /* REAModule.m */, - 657D62725F5144EA733699A8406DD7C7 /* REANodesManager.h */, - 6480A035FDCAE96B58C48CA7F315D431 /* REANodesManager.m */, - 964A49BC0AEC05794E9EABB0689632C6 /* Nodes */, - A944F15A2548E423B7704E391A961344 /* Pod */, - 6A6021A8DFDC5AC443905A8833CFB335 /* Support Files */, - F1D24546CDE01417D66C8738912CB2EA /* Transitioning */, + B70F154A574728B8D4C1C0B9438FF4B3 /* FBReactNativeSpec.xcconfig */, + 4F145E3A0B46968D0904ADDC55641E70 /* FBReactNativeSpec-dummy.m */, + 14485ECF294113273CEEB34F289F0D57 /* FBReactNativeSpec-prefix.pch */, ); - name = RNReanimated; - path = "../../node_modules/react-native-reanimated"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/FBReactNativeSpec"; sourceTree = ""; }; - 4CA7843DF349564A095E062B1DEA0319 /* Drivers */ = { + 4E13CFBCB0C4E5403AF5C72A29500C9F /* React-RCTAnimation */ = { isa = PBXGroup; children = ( - B4A19504AAFCFCDCAB0D4D298165243D /* RCTDecayAnimation.m */, - ACEA68F757D72584A695A3324B50BAE5 /* RCTEventAnimation.m */, - 358706A5FEDC4F5AFFEBDB072E89457D /* RCTFrameAnimation.m */, - 5FAE6AF1B4DBEF13380F372C55C2AEA3 /* RCTSpringAnimation.m */, + 9775310D6981341505F105C9568C5E45 /* RCTAnimationUtils.m */, + 4650D690BA6630C497BA5400ED547938 /* RCTNativeAnimatedModule.m */, + A20CC0982D78D08FA3BD84F1E518DA51 /* RCTNativeAnimatedNodesManager.m */, + 6A725F6F772893A2149E72E17EFF9A5E /* Drivers */, + 769E1B5673D138F10F198F12A2BF89C5 /* Nodes */, + 996C180176C2AB9BB35BF35B2B5177BC /* Pod */, + 0B454300BFDB7ADC3D5E4D6701B3B593 /* Support Files */, ); - name = Drivers; - path = Drivers; - sourceTree = ""; - }; - 4DAE5C781980F2693E87124939DF2A42 /* Pod */ = { - isa = PBXGroup; - children = ( - EAD19C805AA13087D4CB613CEB7207D7 /* LICENCE */, - 5DD64FEEBB59F5AF33D29963E4109B1A /* react-native-cameraroll.podspec */, - 2C543E656C8CC21720696842FCFEC35D /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 4E2FB2A4FEFEB4319ACC41DA8088174E /* RNDateTimePicker */ = { - isa = PBXGroup; - children = ( - D1C3728E396239603DE8696250258E58 /* RNDateTimePicker.h */, - 1238E92EDB750B4A397E54323FA4A5DD /* RNDateTimePicker.m */, - 36AD9D0FA195AE1A6D496664B6D5DCB4 /* RNDateTimePickerManager.h */, - 08052EC8B77314B3AD6D1227DF3D04D9 /* RNDateTimePickerManager.m */, - 1301928DEE837520A9DEDBAC7CFCBD2D /* Pod */, - 2B3C0E93F7CFB8EC50757684B60B6226 /* Support Files */, - ); - name = RNDateTimePicker; - path = "../../node_modules/@react-native-community/datetimepicker"; - sourceTree = ""; - }; - 4E31E797FBD9329A909D8A4378957BBE /* React-jsinspector */ = { - isa = PBXGroup; - children = ( - C22718127A43B28BB68438E3B47B6B23 /* InspectorInterfaces.cpp */, - D763A9AC9FAC548815F93A714B0A32E2 /* InspectorInterfaces.h */, - FF86B41DB7ED68E0A1BEB4722384F4FF /* Pod */, - 678FCD7ECB8189D311A6C47F253DCC2B /* Support Files */, - ); - name = "React-jsinspector"; - path = "../../node_modules/react-native/ReactCommon/jsinspector"; - sourceTree = ""; - }; - 4E8FA752AF2F99F1C9188913CA37EB0B /* Pod */ = { - isa = PBXGroup; - children = ( - 607DE7229D13A934D9D396A2062FF049 /* React-RCTBlob.podspec */, - ); - name = Pod; + name = "React-RCTAnimation"; + path = "../../node_modules/react-native/Libraries/NativeAnimation"; sourceTree = ""; }; 4EE5506810A48BF6790471E58A60007A /* Support Files */ = { @@ -9442,46 +9153,81 @@ path = "../Target Support Files/glog"; sourceTree = ""; }; - 4F591348D64585A660A72269EEA6A68E /* Support Files */ = { + 4EFE31D50AF7A61F24A42460E98A5E42 /* Support Files */ = { isa = PBXGroup; children = ( - 23219ACA713D7CAFB30DC0419DE1E805 /* react-native-video.xcconfig */, - 1BD3FCBF820DB8AF7BF20EAD86AB6F26 /* react-native-video-dummy.m */, - 5A8405BB1A2C13FEAF98B164F6E4FFDB /* react-native-video-prefix.pch */, + 564AC08059D7AA58D39DD0DF9EAAB6A9 /* UMAppLoader.xcconfig */, + C6CCFD413FEFB4F283862EE812234243 /* UMAppLoader-dummy.m */, + A1836297279046CF93D2133080C76D41 /* UMAppLoader-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-video"; + path = "../../../ios/Pods/Target Support Files/UMAppLoader"; sourceTree = ""; }; - 4F8BBADC6C0DA1DD0E0165A06997F368 /* Support Files */ = { + 4FB4EC3B30CA4BFDE8C9BCA576D389F3 /* UMModuleRegistryProvider */ = { isa = PBXGroup; children = ( - B44622DFEDC8C1E0872F5F31C06B431D /* RNFirebase.xcconfig */, - E04865593F9BF279CAEC179AB14AA3E0 /* RNFirebase-dummy.m */, - 0ECA46EC91758D088E75BE45C7B214A2 /* RNFirebase-prefix.pch */, + 4D871EA5370D99BCBA2545E46BA94F97 /* UMModuleRegistryProvider.h */, + C24DCC43F7BDC47BC5FBA4D59DAD4650 /* UMModuleRegistryProvider.m */, + ); + name = UMModuleRegistryProvider; + path = UMCore/UMModuleRegistryProvider; + sourceTree = ""; + }; + 5002B09A7C6F3CECBD1866A6EE26C271 /* Support Files */ = { + isa = PBXGroup; + children = ( + 316CE9524A5CBC00F625F390AF349412 /* React-jsinspector.xcconfig */, + 6F9E7EF7E62D98E528212D0D273427AD /* React-jsinspector-dummy.m */, + F1B073762F60DDCC730CD28587773E11 /* React-jsinspector-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/RNFirebase"; + path = "../../../../ios/Pods/Target Support Files/React-jsinspector"; sourceTree = ""; }; - 4FB810FC2F017135FBAF3988AE05DFFA /* RCTRequired */ = { + 50DAF21F75BA46F0CFF1BF4B8238D87D /* Support Files */ = { isa = PBXGroup; children = ( - BD63E6DCF9DC7564F1DAB4031A9B4904 /* RCTRequired.h */, - 128DD2D6777086DF355C7A302067952B /* Pod */, - 2AC45BD752DA6E4A77E0156237932918 /* Support Files */, + AD1565950EC44B931A48C481E30CE33C /* React-jsi.xcconfig */, + 668A06AC4FD01113F3AD768199562A4D /* React-jsi-dummy.m */, + CC3CAF0F65B9E9B29625B2A8D62E6FB9 /* React-jsi-prefix.pch */, ); - name = RCTRequired; - path = "../../node_modules/react-native/Libraries/RCTRequired"; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-jsi"; sourceTree = ""; }; - 53130E49370A5BFFFB78F348B6304236 /* bugsnag-cocoa */ = { + 50E42D2ABC83BE09BB42CBD788AAA7EC /* perf */ = { isa = PBXGroup; children = ( - 212073D35CA92162FD7BA2F8B6E4A2B3 /* Source */, + 9ADB38322F34A3E62427612768AE218F /* RNFirebasePerformance.h */, + 82F7F16CE0883730CD67D3C8EAE7BB61 /* RNFirebasePerformance.m */, ); - name = "bugsnag-cocoa"; - path = "bugsnag-cocoa"; + name = perf; + path = RNFirebase/perf; + sourceTree = ""; + }; + 521D4D9BAF9008D2BC1182D2FF9CEC52 /* Pod */ = { + isa = PBXGroup; + children = ( + 9F56933F51654EE11046716D6A9D893E /* LICENSE */, + 4B3C709C93E8DB059EB220F922F47E3F /* README.md */, + F0B2FB09F82C24D3863A03DC1D759793 /* RNUserDefaults.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 5325256D86BBD3F06F7B2A8D8CCEF5CF /* React-jsiexecutor */ = { + isa = PBXGroup; + children = ( + BFC4C31FA14EA5D1E5B78F7A8DC28E4D /* JSIExecutor.cpp */, + 807E1456005CC3EAD5A089FFF018EF8F /* JSIExecutor.h */, + 1C9D9B0AD38BEEFDC45CED6AF59EA439 /* JSINativeModules.cpp */, + B5218BA52902DA678B5816D60E5C2B27 /* JSINativeModules.h */, + B4F6A7FA053B075A8363A7AD9D168C94 /* Pod */, + C0AC1B78ED9785E3BB7A6DAA243F0543 /* Support Files */, + ); + name = "React-jsiexecutor"; + path = "../../node_modules/react-native/ReactCommon/jsiexecutor"; sourceTree = ""; }; 532D65DCF750E9E2E8BE97FC42B35BCC /* Crashlytics */ = { @@ -9501,6 +9247,17 @@ path = Crashlytics; sourceTree = ""; }; + 540C3751D1AC6CB777305883265ADE26 /* Support Files */ = { + isa = PBXGroup; + children = ( + D5CC0DC1CF5E80A3E4FAD91A65678C96 /* EXConstants.xcconfig */, + BD7860900942ED5179416ACEE2CAC40F /* EXConstants-dummy.m */, + 0CC59D489EF2C068C5C82032B002449B /* EXConstants-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXConstants"; + sourceTree = ""; + }; 54220516EB0979A39034CFA10C3D2092 /* Fabric */ = { isa = PBXGroup; children = ( @@ -9534,6 +9291,27 @@ path = FirebaseCoreDiagnosticsInterop; sourceTree = ""; }; + 5489BBE270FCBACF4317ACDD4A5E0358 /* Support Files */ = { + isa = PBXGroup; + children = ( + C0515A170A399D7811374BCD654EC21A /* RNReanimated.xcconfig */, + 25B52FD2856570BDBFEA5B0A8B5F19E3 /* RNReanimated-dummy.m */, + D561D4B0BB968F9DDA35A4DE7D69C477 /* RNReanimated-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNReanimated"; + sourceTree = ""; + }; + 55372375535F95651ABA24E3481D0980 /* analytics */ = { + isa = PBXGroup; + children = ( + D3B3453CE4DE764804926152E606A99A /* RNFirebaseAnalytics.h */, + 528CEBD803180BFA178C982103478889 /* RNFirebaseAnalytics.m */, + ); + name = analytics; + path = RNFirebase/analytics; + sourceTree = ""; + }; 55B18D8D8BE5E5FB139159F9864ED8CA /* glog */ = { isa = PBXGroup; children = ( @@ -9555,131 +9333,26 @@ path = glog; sourceTree = ""; }; - 55B5CEDBFB7117FA376E40105BCF53D7 /* BugsnagReactNative */ = { + 57B0D03180988DC4C100962BCB3FEA22 /* Support Files */ = { isa = PBXGroup; children = ( - A348741DC04900AB79C759052957C647 /* BugsnagReactNative.h */, - BF20113E5333E238C790CD7D1BE83741 /* BugsnagReactNative.m */, - 33C920AB4EFA98F45B36C2C56E20365F /* Core */, - 28A9789EE40C028D291A793ECA1A54C5 /* Pod */, - 72911A0DA84964061D926DAAA2CB39FA /* Support Files */, - A59C9E778C256BEA6C4A98325EAB714B /* vendor */, - ); - name = BugsnagReactNative; - path = "../../node_modules/bugsnag-react-native"; - sourceTree = ""; - }; - 5606C0BBFD6B8A7C7FF8DDAB4B1641C2 /* Support Files */ = { - isa = PBXGroup; - children = ( - AF920EA3B184284D2672C0F0AF7BBF13 /* React-RCTVibration.xcconfig */, - D2152857A727F3E2C909878BE0C4BD3E /* React-RCTVibration-dummy.m */, - C847E5C297D047C9C5486ED523FB0FB6 /* React-RCTVibration-prefix.pch */, + 26F384A95B89DD4DEE81C0AF3AEA0503 /* react-native-background-timer.xcconfig */, + EED3DB3971808F087853A4962A6A9391 /* react-native-background-timer-dummy.m */, + 6EDE0A2FEAF794C4A3B1D117283ED8B9 /* react-native-background-timer-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTVibration"; + path = "../../ios/Pods/Target Support Files/react-native-background-timer"; sourceTree = ""; }; - 565FA81F8EC7C40B0BA96DD0DAE5D2B7 /* platform */ = { + 57BADD79651C53ADA9857150C84BA1C5 /* Support Files */ = { isa = PBXGroup; children = ( - EA9EBD6538D7891BE61671CE31C21655 /* ios */, - ); - name = platform; - path = turbomodule/core/platform; - sourceTree = ""; - }; - 567C7523CE5382909882005212C0063C /* react-native-notifications */ = { - isa = PBXGroup; - children = ( - 8E3E9224AB8B6AE8E1332BE7236DAC9F /* RCTConvert+RNNotifications.h */, - CF353E7A44DDBE94363B76364EC14F54 /* RCTConvert+RNNotifications.m */, - 5EC16A3302BEFE7D1A384A0E2B860F87 /* RNBridgeModule.h */, - 667950671B73978D2A6FA78DD378E7EF /* RNBridgeModule.m */, - C83A0AF41DFE9DDFD36003B5BB0ED509 /* RNCommandsHandler.h */, - 1AFE95B12ED7C3B2AACA5787F66BFFBF /* RNCommandsHandler.m */, - CAC6941D32D79578AEDB6050C10F403E /* RNEventEmitter.h */, - 552764B9A0BD91BCD64E04C969EDD959 /* RNEventEmitter.m */, - DD142B9C3FA055FEF54B9906D8623CCF /* RNNotificationCenter.h */, - 7A3D0D372E6BB727932ACD5CC2F2F0A2 /* RNNotificationCenter.m */, - 8B482BF8DF2E75DF9287FB4F450FA8A0 /* RNNotificationCenterListener.h */, - E716E272500F2B1D0BB5707BFA53C18B /* RNNotificationCenterListener.m */, - D04B7E2613F82221268696643CDF9CC2 /* RNNotificationEventHandler.h */, - 0AC58D43F520AB9E41176EF916A98C28 /* RNNotificationEventHandler.m */, - 65A4F2A64799EAED8949F270492D2D0D /* RNNotificationParser.h */, - 3496CD4A788972B860A4EFD810330F4B /* RNNotificationParser.m */, - A739468F956A599232B619C8C6E0F81C /* RNNotifications.h */, - 11B20C54AC294E8BACE99BCDC7C20891 /* RNNotifications.m */, - F23E3FEC63449DC8ED6AA3D91CEDDC77 /* RNNotificationsStore.h */, - 15B1124A17166C051BC2D02B9932A8DF /* RNNotificationsStore.m */, - 63A1FF8E19476B645DA57F275B450566 /* RNNotificationUtils.h */, - 70B8EA6D227EF252F62CF777A6100305 /* RNNotificationUtils.m */, - B8BA6701BD8E46A84B9F07746385533E /* RNPushKit.h */, - D65D464BFA160C2DAC22A43DA581AEAB /* RNPushKit.m */, - 7B4C5BCB61E597C069C849723B7F1F56 /* RNPushKitEventHandler.h */, - 5B1B81E22DF015F475881295299C2BF2 /* RNPushKitEventHandler.m */, - A3C40648B277654B89CBC8308486307E /* RNPushKitEventListener.h */, - BE1DF413DABB55E0CEEB1B3777FB3199 /* RNPushKitEventListener.m */, - E94B0B9A82C2AA974D7CF334CC7568CE /* Pod */, - EE538B64CBA8425E3BB7AB61DF60BB1E /* Support Files */, - ); - name = "react-native-notifications"; - path = "../../node_modules/react-native-notifications"; - sourceTree = ""; - }; - 56E15B5F6BD3219FD92BE57B7C4B6EA3 /* React-RCTSettings */ = { - isa = PBXGroup; - children = ( - BAA6FC1F2189DF65B88AE20FCC0882CF /* RCTSettingsManager.m */, - 46412BC9766E6F931595620D27AD2DF9 /* Pod */, - 0AB32250CC0FF1EB2EA732B71106E069 /* Support Files */, - ); - name = "React-RCTSettings"; - path = "../../node_modules/react-native/Libraries/Settings"; - sourceTree = ""; - }; - 56E1E2DA6CE6249086F5F7A37C910F7A /* RNDeviceInfo */ = { - isa = PBXGroup; - children = ( - 150FB51A57D749CC6D1C8520B60A0C77 /* DeviceUID.h */, - D213D5F3E331581204D69F5D544E0DB1 /* DeviceUID.m */, - 9D610C7775D84023A607C100F82FCBE5 /* RNDeviceInfo.h */, - 1F086F98B3F77E66182412592E10B532 /* RNDeviceInfo.m */, - 5C384B0272EDC1BCE2C3E72E545C97B2 /* Pod */, - 242BF93B4CFE0CDA8E392EAB25C532E3 /* Support Files */, - ); - name = RNDeviceInfo; - path = "../../node_modules/react-native-device-info"; - sourceTree = ""; - }; - 56FABFA30CD7252CB9E6F1CE4E392637 /* Protocols */ = { - isa = PBXGroup; - children = ( - D05763399C0C43784190DA57D7339AE6 /* UMAppLifecycleListener.h */, - B0D69AB0552916946CFE8510B362A05C /* UMAppLifecycleService.h */, - A03DE502008020EB490A8C1BF68073A4 /* UMEventEmitter.h */, - 617FBCF995CE49D04C8237AFF1BF4720 /* UMEventEmitterService.h */, - 3A00452FD6F9F80CC6BFD7541B8E9480 /* UMInternalModule.h */, - 337FC4191A6870FFEA90EF31F9905044 /* UMJavaScriptContextProvider.h */, - A36F98AFED3E1B7EC702C7C6D15AE300 /* UMKernelService.h */, - 258C24D3057222DDA044B5BA0B208E1C /* UMLogHandler.h */, - 23C63C444BAA8C62044C36DC7EAE5B4F /* UMModuleRegistryConsumer.h */, - 1C45DAB98AE19CF1600DF224DA3FAD26 /* UMUIManager.h */, - 6354554715F7F64320598ED85AAC283D /* UMUtilitiesInterface.h */, - ); - name = Protocols; - path = UMCore/Protocols; - sourceTree = ""; - }; - 58563AE314719F1C5AE43BAE63AA5A3A /* Support Files */ = { - isa = PBXGroup; - children = ( - 6BBCE391816522C2DB0D4F64239E685D /* React-CoreModules.xcconfig */, - E11EFFACF02E15C744578BEF99A351E7 /* React-CoreModules-dummy.m */, - 8A3C997419F8B8A9EA1C5D8183131622 /* React-CoreModules-prefix.pch */, + 1A7BDFA4779468035CA517CC2B92B606 /* react-native-orientation-locker.xcconfig */, + 461DED48BAECA2364F51E16C2192B419 /* react-native-orientation-locker-dummy.m */, + 57857F67A76F4D48311B6EA82F721D4B /* react-native-orientation-locker-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-CoreModules"; + path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; sourceTree = ""; }; 588BB8EA70D0562BF2408368B973356B /* DoubleConversion */ = { @@ -9709,124 +9382,149 @@ path = DoubleConversion; sourceTree = ""; }; - 58ADE114FA6ABC790B3BFB17D498C95A /* react-native-webview */ = { + 58F584E638DA03644700E60B331092C4 /* Pod */ = { isa = PBXGroup; children = ( - 1D07B75AE3686300BD233A5F693F02A6 /* RNCWebView.h */, - 9E33B5D4B32B8D02734F0AE9E7A406DF /* RNCWebView.m */, - 0B1A6B95632FBEA8316F5995577B86CE /* RNCWebViewManager.h */, - 5267A85FA53B412AEBF635F7D0DD9BBD /* RNCWebViewManager.m */, - D7F538041CF2C487C74839BB4E2EF1F6 /* RNCWKProcessPoolManager.h */, - 4A8E5C1877B75EB931C2F3894E85CF96 /* RNCWKProcessPoolManager.m */, - F08AC9099B6B0FFF2B05D73A5CE53DB3 /* Pod */, - F325F4A8EEAD79D718FC82BA38E8D588 /* Support Files */, + 5D72A991A8C2F34EA384AC14E7066DB1 /* Yoga.podspec */, ); - name = "react-native-webview"; - path = "../../node_modules/react-native-webview"; + name = Pod; sourceTree = ""; }; - 598BA6722DA56E24941E48729D2269C7 /* TextInput */ = { + 58FB4F633D42A5FAC9B1A6C59C4C6970 /* Support Files */ = { isa = PBXGroup; children = ( - 1FBA9DE1DC9152192C227A42F1589E54 /* RCTBackedTextInputDelegateAdapter.m */, - B5AD579CF7B8D3A6341104D6D503EBCB /* RCTBaseTextInputShadowView.m */, - 71E58CFEB0AC5CB428A0D88D7FC89826 /* RCTBaseTextInputView.m */, - A29945BD2BC09DFA3D6BC2B78EB2D190 /* RCTBaseTextInputViewManager.m */, - 690B02E454204005B57638DB0F9B8CA4 /* RCTInputAccessoryShadowView.m */, - CF834FA050F757363B90E37020E1DDF5 /* RCTInputAccessoryView.m */, - 44AB8DA6CCB21594C36E5E9A8DF33C43 /* RCTInputAccessoryViewContent.m */, - 900603B2A3FF1E8D2B04E7D5A416BB3B /* RCTInputAccessoryViewManager.m */, - 864E531677D5FDC8C55FAAFFFB25F5A6 /* RCTTextSelection.m */, - 7F1DB0B782DF5B0337C1236B44BB5BE8 /* Multiline */, - 78A51F897E0646FCE69A43B81F775654 /* Singleline */, - ); - name = TextInput; - path = TextInput; - sourceTree = ""; - }; - 5A3EC5726BBAABF42B30F1723FC6208D /* react-native-video */ = { - isa = PBXGroup; - children = ( - 61A3D5E7B0F3BD9FCD0B5FB4EDC84ABB /* Pod */, - 4F591348D64585A660A72269EEA6A68E /* Support Files */, - 87BB553DDC920EB60E1136B01273A41A /* Video */, - ); - name = "react-native-video"; - path = "../../node_modules/react-native-video"; - sourceTree = ""; - }; - 5A71022217CC14D973B86FBB3CB9935A /* UMConstantsInterface */ = { - isa = PBXGroup; - children = ( - E20E9C4391607CF1A8090F96EA666121 /* UMConstantsInterface.h */, - 45EC0CFA5FCA1CEA49A4731C47E72215 /* Pod */, - 3F72673E0F3B5F7859176ABADED43CC0 /* Support Files */, - ); - name = UMConstantsInterface; - path = "../../node_modules/unimodules-constants-interface/ios"; - sourceTree = ""; - }; - 5A85F47B6E9732D806BBD0D60DD0A792 /* Support Files */ = { - isa = PBXGroup; - children = ( - 93F179CAC37400A573A57D7C580C75D5 /* RNLocalize.xcconfig */, - 1AF548113B59CC6C3DF98313EE8EEEC6 /* RNLocalize-dummy.m */, - EFCD11E09BDF9F2E4535BF198733FE66 /* RNLocalize-prefix.pch */, + B8381E2B75F16FCF9DAF41EE8E3433C8 /* EXHaptics.xcconfig */, + 0CBCC7E011F6EF7E978AC965DE289A43 /* EXHaptics-dummy.m */, + BB8244700BFF2F265FA42701A0DF2F14 /* EXHaptics-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNLocalize"; + path = "../../../ios/Pods/Target Support Files/EXHaptics"; sourceTree = ""; }; - 5AA4F83C3B26B5E88EA9E88EF991211B /* React-jsiexecutor */ = { + 59A415744A0596858A0BD53FC33ABAEC /* Pod */ = { isa = PBXGroup; children = ( - 400401CC486501232BA2666E9882D402 /* JSIExecutor.cpp */, - 681FD24565105508386EF131BF1F8550 /* JSIExecutor.h */, - 3D36CA742E8FB53ACC7C054CA44A455B /* JSINativeModules.cpp */, - 8546F819E0C95CF881DADD48DF3FEBA9 /* JSINativeModules.h */, - C5D63C9FF668845B812AF08132F5EB8B /* Pod */, - 6DF65E0EB6BC6FE0DFB1E1D4CF73DF00 /* Support Files */, - ); - name = "React-jsiexecutor"; - path = "../../node_modules/react-native/ReactCommon/jsiexecutor"; - sourceTree = ""; - }; - 5BAACA145A8EE698CEEF29EB375F25A6 /* Pod */ = { - isa = PBXGroup; - children = ( - 7DADBC9D25ADD62028CAF81E4BFF3889 /* LICENSE */, - 7B84819246C7035E2FA543C2C1FF2D87 /* README.md */, - 5DB4CDEC49B15490713325890AB61240 /* rn-extensions-share.podspec */, + 4945B18C03894AB79864057EDD45BE41 /* android_date.png */, + CBBB145D86C58AAA825852EC498004DD /* android_time.png */, + B0C40474532710B4EDDFFA5135339F53 /* ios_date.png */, + A47DC66E549832DB7131B4082C3744CD /* ios_time.png */, + 81921FD5D77C8DB55740FF060603D686 /* LICENSE.md */, + 8335606D26A6EE76EF0923DFA2748421 /* README.md */, + 53C280A64E948F7D1D9A89778F9B910D /* RNDateTimePicker.podspec */, ); name = Pod; sourceTree = ""; }; - 5C384B0272EDC1BCE2C3E72E545C97B2 /* Pod */ = { + 59E05BEBD2D2251D2BFCDAE07C8F9A00 /* RNImageCropPicker */ = { isa = PBXGroup; children = ( - B124C8D5931E9566A077BB7C089CACD9 /* LICENSE */, - DDE32EAC62DDE0A909660E90B40B99E2 /* README.md */, - 6DC190A18B6019596F125BE85CE8CDB8 /* RNDeviceInfo.podspec */, + 66FE792892A7EBA79A71E33AA48E556F /* Compression.h */, + BD8C80B573BB1C2651C058B996D5A569 /* Compression.m */, + 16DC5622C62C49184B49E9D362BB3A3E /* ImageCropPicker.h */, + 549DD35AF50F448D6C868B08063F11D4 /* ImageCropPicker.m */, + 680D7CA3D690389D5E2F3571CA82F65D /* UIImage+Resize.h */, + 894F1ED2B6368487AF330CAA982A116A /* UIImage+Resize.m */, + 6C8834E7AC0D4238E5B6A66810EEC9E8 /* Pod */, + 6158A9BEA97EAA4647E306C709772282 /* QBImagePickerController */, + B0FC10F5EE32C328DEF931F9DB7ABF90 /* Support Files */, ); - name = Pod; + name = RNImageCropPicker; + path = "../../node_modules/react-native-image-crop-picker"; sourceTree = ""; }; - 5D2CA829575F56AEB1052BBF44859342 /* Pod */ = { + 5C1C9560663B399EBF825881C5527D2F /* Support Files */ = { isa = PBXGroup; children = ( - 75C7011613E562C3FA3833702D66B397 /* UMCore.podspec */, + 569B6F1D87183821E96F79C08CFAA86F /* RNAudio.xcconfig */, + E389BD72A1C7A96A96993A4A39B7D055 /* RNAudio-dummy.m */, + D1437B2B40FAF0A9E366B04E4E38E374 /* RNAudio-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNAudio"; sourceTree = ""; }; - 5D5F5AFD3AED91E98EA71AFFBE1B4FED /* analytics */ = { + 5C363871E886613C4F5656188959E6D5 /* Yoga */ = { isa = PBXGroup; children = ( - 6DDE23DA939219B390290D7B9FEA0763 /* RNFirebaseAnalytics.h */, - 9069EDCD5B7C9BC4E2C548959AC4BD59 /* RNFirebaseAnalytics.m */, + 9F8A795D79440FA00273CD98F065B963 /* Bitfield.h */, + A79E5957E608E87CB9A07FB2D9B74357 /* CompactValue.h */, + 4E3D4FBAD25B67DE005C06028EFEED9D /* log.cpp */, + 8F2A4EB921C09B725F2CB6A24B0429F1 /* log.h */, + 16924B7391DBFE4D0AD6337368F0C5D2 /* Utils.cpp */, + 4FFECA28172BDE39608A5EF2B76D15B1 /* Utils.h */, + BFDC5015B07AF6726D48629172EF01E0 /* YGConfig.cpp */, + CF616BF6284E7AACECDBB37FA2512B94 /* YGConfig.h */, + DD5ECC7C878B88D0C61273EA8B878245 /* YGEnums.cpp */, + D10BE9B6DF433AD07B0DDF606D7F2E3F /* YGEnums.h */, + 450A06AFE47875867D6D007603239D97 /* YGFloatOptional.h */, + 1CDD73571B970B45A486A3B0498F927E /* YGLayout.cpp */, + 81EE0039A619694FF3E16C06F28D8054 /* YGLayout.h */, + 6E2D19D654878B82F657E6B3A6BEFFC1 /* YGMacros.h */, + 79C1357F2591BBF578F21D97ECF2B59E /* YGNode.cpp */, + 06B5C6560ABB8384D4E8AABCC6938572 /* YGNode.h */, + C71A357C4C3990C9352DAA14BD0A62E1 /* YGNodePrint.cpp */, + 963529313674244E03C747A4948AE491 /* YGNodePrint.h */, + 3C0358FA438F9178127E0C2BCE503104 /* YGStyle.cpp */, + 878DA4DA1965E991360A0B90C6221A8F /* YGStyle.h */, + AA83C66BCE237C477EF7FA53A9A4C4FD /* YGValue.cpp */, + 4E5A3FB0E0F5259719BE815748EA69DC /* YGValue.h */, + B7550E92A5666A5FC9463EE29F908187 /* Yoga.cpp */, + 3ABA252CBB6E3B2F8D94515CDAFF5ED8 /* Yoga.h */, + 2877A38389E7D2FC96844CBB9A9706EE /* Yoga-internal.h */, + 15BAE439160F6831E0700FC9268F6B90 /* event */, + CF3B9070ED4011E1DA0AA3784370E6C6 /* internal */, + 58F584E638DA03644700E60B331092C4 /* Pod */, + BF0239A9FB18298116C3B7E18AF61725 /* Support Files */, ); - name = analytics; - path = RNFirebase/analytics; + name = Yoga; + path = "../../node_modules/react-native/ReactCommon/yoga"; + sourceTree = ""; + }; + 5CE8EDDB715C31A090A3F0BABC431079 /* Support Files */ = { + isa = PBXGroup; + children = ( + 32AAFADD3DD8438F7CBA97F98D670481 /* react-native-document-picker.xcconfig */, + A45F0030699924CE63A3BE1A1E04032C /* react-native-document-picker-dummy.m */, + 596088C6B3860AEE5A266E2190E854F0 /* react-native-document-picker-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-document-picker"; + sourceTree = ""; + }; + 5D4663A395B20D33275C3A3D4C05A68D /* Nodes */ = { + isa = PBXGroup; + children = ( + CCD2A49D0B1F2C6DFB39EC4B6DB2F80B /* RCTAdditionAnimatedNode.h */, + 2910D26607637BF64B2E89CA8B50BC0B /* RCTAnimatedNode.h */, + 13B3D5DF0D3F1C1EDF9FBF32FB4D10A8 /* RCTDiffClampAnimatedNode.h */, + 65CE45D203BEB30B53094FFB8F23B2C7 /* RCTDivisionAnimatedNode.h */, + B321CCACE72FDC621355E383F7664018 /* RCTInterpolationAnimatedNode.h */, + 78AE025AF94C2093809106A016A35345 /* RCTModuloAnimatedNode.h */, + E1C1CAC2DFEA679A049CF92D108DD7A1 /* RCTMultiplicationAnimatedNode.h */, + CBC5411ECAAD3F957C8318B46CDAFFB8 /* RCTPropsAnimatedNode.h */, + 58C75434D5A226A79016D53B6234AA57 /* RCTStyleAnimatedNode.h */, + F19DB2FC51E9E061AF53B697805F90B2 /* RCTSubtractionAnimatedNode.h */, + 0DECC37F011305E4F8D5201A3D90010D /* RCTTrackingAnimatedNode.h */, + 7FA6021FC51B75C6CA372416846B2B09 /* RCTTransformAnimatedNode.h */, + 7E7037E56436AE0964F96889FED26B9D /* RCTValueAnimatedNode.h */, + ); + name = Nodes; + path = Libraries/NativeAnimation/Nodes; + sourceTree = ""; + }; + 5D8A542AB9C7E0F72D9F10DF9CB9C7F1 /* EXPermissions */ = { + isa = PBXGroup; + children = ( + 089E361FA9F6CCDEF000FDACC54CBDEF /* EXPermissions.h */, + 717784DDC0972D374703808D43BE935A /* EXPermissions.m */, + 0A05659F0F906E80F05804D2793FA971 /* EXReactNativeUserNotificationCenterProxy.h */, + 19A6DAA1635F9B631B3EAA16F81907F9 /* EXReactNativeUserNotificationCenterProxy.m */, + 66E0D2B9B4914944D3F6D52FE02365AE /* Pod */, + 9FF7A194BE5F7E3424E82028AB7C57B7 /* Requesters */, + 95165EDE04FA68694255CC700EE2612C /* Support Files */, + ); + name = EXPermissions; + path = "../../node_modules/expo-permissions/ios"; sourceTree = ""; }; 5DACF37B91672B1B16D7C6F64F5A348F /* UserDefaults */ = { @@ -9849,16 +9547,6 @@ path = "../Target Support Files/libwebp"; sourceTree = ""; }; - 5ECC8E71E66CC6121EEFCCC459142B79 /* KSCrash */ = { - isa = PBXGroup; - children = ( - 17B06DDAE6B75DE38B753171CB1A1379 /* Recording */, - 0555E870410312281AA809A216972B28 /* Reporting */, - ); - name = KSCrash; - path = KSCrash; - sourceTree = ""; - }; 5F64FEC8FB4233DE20828ABBFA0CEF12 /* Firebase */ = { isa = PBXGroup; children = ( @@ -9869,37 +9557,832 @@ path = Firebase; sourceTree = ""; }; - 607AF0987B00583CBCF866F8A53AEDD0 /* Support Files */ = { + 601D81E7DB6D1A63E552FA48F9818A73 /* UMSensorsInterface */ = { isa = PBXGroup; children = ( - 2724494D81419E2A52EAEDBFE0CA779B /* UMImageLoaderInterface.xcconfig */, + F5F63BA013C595EAD453A39C343F921C /* UMAccelerometerInterface.h */, + 747A249486EDA716D7B8D233052E91EE /* UMBarometerInterface.h */, + 528A2DCAEECDC9D47C40F034BBBEB915 /* UMDeviceMotionInterface.h */, + CA8EC789129B8AA5C2C6846EF32E95AF /* UMGyroscopeInterface.h */, + A685EB89558965F941A405C3FAA82EB3 /* UMMagnetometerInterface.h */, + 0B824D421BC9F1ACD7F0FB4708517650 /* UMMagnetometerUncalibratedInterface.h */, + 13D0150FB6F1AFFECBEEE74FB1EF69F5 /* Pod */, + 37E134DBFE626C2E55CDE1D3EE165A01 /* Support Files */, + ); + name = UMSensorsInterface; + path = "../../node_modules/unimodules-sensors-interface/ios"; + sourceTree = ""; + }; + 609D9081E999495046E2FD28E6CB4E84 /* Pod */ = { + isa = PBXGroup; + children = ( + 4AFDF3F710E8303C27FA938F68F10F93 /* React-RCTNetwork.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 6158A9BEA97EAA4647E306C709772282 /* QBImagePickerController */ = { + isa = PBXGroup; + children = ( + 4D8915AB6846EAFEF97610B429FEE5D2 /* QBAlbumCell.h */, + A8EF9ADE40BC7719B21F362BA27D0CE6 /* QBAlbumCell.m */, + 6C795AC784E91CE7BFFFC7AA57CC3043 /* QBAlbumsViewController.h */, + 4E2743AAAF9A4FC35706F52E73C11C62 /* QBAlbumsViewController.m */, + 9BBFB7DF029570D3DA89F4EA8867EED8 /* QBAssetCell.h */, + 08AC8CB8E44B9D7D19D80AA1B56368B0 /* QBAssetCell.m */, + A94EF12DA4840DCF1D416FD566715F02 /* QBAssetsViewController.h */, + ED51C0ACBD2A3F1EE152AAFEDCDCE3AD /* QBAssetsViewController.m */, + AC1A12E7FB760FCD374C12F15429F063 /* QBCheckmarkView.h */, + F36BE07D7433CF6314EDF014BE65D359 /* QBCheckmarkView.m */, + 0EB20BE3ECCF35EADA103257BA92078B /* QBImagePickerController.h */, + FD6A7F7AF7A06D9D2D5EBC4E87A4E5DB /* QBImagePickerController.m */, + 3D71A2300D1F1BA16C41BEDF99A0397F /* QBSlomoIconView.h */, + 8525930F3F8CD3EBD6DA4389DD5C0EF7 /* QBSlomoIconView.m */, + E99246ECA2FF3A52EF5E264B6D7ABC84 /* QBVideoIconView.h */, + 325E1317AEFB463846E7C2AE2C8706D0 /* QBVideoIconView.m */, + 7729EE9D32168E2D7F78339279D55710 /* QBVideoIndicatorView.h */, + 81AF7C72C8D1321A79EFD6250A8453EB /* QBVideoIndicatorView.m */, + 95D9417CB50F85E00F98AB60FB2E8181 /* Resources */, + ); + name = QBImagePickerController; + sourceTree = ""; + }; + 625FAD8FF46231A1501E2FF1FD012C9C /* Support Files */ = { + isa = PBXGroup; + children = ( + 6FE23694EA167907586135DDAE4DE7EC /* React-RCTActionSheet.xcconfig */, + 0E84E6C970C887F862CFF4A74D75AF6C /* React-RCTActionSheet-dummy.m */, + 58334587D7722A791F7FA79F25270C03 /* React-RCTActionSheet-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; + path = "../../../../ios/Pods/Target Support Files/React-RCTActionSheet"; sourceTree = ""; }; - 609FB34DDDF5CF79BA65BAD31BB598C9 /* Pod */ = { + 62F895489E81C9A525E91D745669D6FB /* Support Files */ = { isa = PBXGroup; children = ( - DBB15254A59A603C550DD694CE0479C1 /* api.md */, - FAA144BA59878EE8DD881DBDD712FEAA /* LICENSE */, - B255B185CBC56817A54E302D79B84A2C /* ReactNativeART.podspec */, - E0B3E7D809E6D8FC3AD019439411D813 /* README.md */, + D4A9777CADEB6A3788DB137532CF5E2C /* RNVectorIcons.xcconfig */, + A826F40E441D4412E32324F91F36CDBC /* RNVectorIcons-dummy.m */, + 0E407BF44DCAC2F5C9171F6175AD699F /* RNVectorIcons-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNVectorIcons"; + sourceTree = ""; + }; + 64064FEFC8406963BAF5E1BCDA37B960 /* RCTActionSheetHeaders */ = { + isa = PBXGroup; + children = ( + C7515F3955A7A7A6F1E0A8089381F968 /* RCTActionSheetManager.h */, + ); + name = RCTActionSheetHeaders; + sourceTree = ""; + }; + 64618759288B7B69898B7D4936064EE7 /* Pod */ = { + isa = PBXGroup; + children = ( + F2236443FB53942C9708DA1C715F30D0 /* UMBarCodeScannerInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 61A3D5E7B0F3BD9FCD0B5FB4EDC84ABB /* Pod */ = { + 65AE39EF8646DA1A7B47A88EE6DFFC39 /* Profiler */ = { isa = PBXGroup; children = ( - BD163E916006FD43987192845156D8B1 /* LICENSE */, - C3C746432FD60B07CFFBCCDA55698D8F /* react-native-video.podspec */, - 2734767EE27BAED3E2B3A20BE7D51332 /* README.md */, + 496CF1E9975B06BA3A0EA5BE8C6FA985 /* RCTFPSGraph.h */, + F4B6286766BAB16F75C8F3961268387E /* RCTFPSGraph.m */, + 05FCAD5BF02AFE224924B65BD9903055 /* RCTMacros.h */, + AF56CD8EA9329F7F34CB313BE34EFE3C /* RCTPerfMonitor.m */, + 59A2B19434A72F254FE6595D38FB8712 /* RCTProfile.h */, + 569DB05BB4E8ADB94613FA5A0E2A3D39 /* RCTProfile.m */, + 3A9A28B444753B9F9526CD5412636FE0 /* RCTProfileTrampoline-arm.S */, + 7CB8C0DB6EEE6CC67BAC49EE564D190E /* RCTProfileTrampoline-arm64.S */, + F824E024621647C5329420E194FC7C22 /* RCTProfileTrampoline-i386.S */, + 4A3A2F39E1458E815C1C6DDF6D8AC153 /* RCTProfileTrampoline-x86_64.S */, + ); + name = Profiler; + path = React/Profiler; + sourceTree = ""; + }; + 65D96D29A12911140E7B564778F069B2 /* RNBootSplash */ = { + isa = PBXGroup; + children = ( + 5ECEE9B7AB6E325C452EC27C706345B5 /* RNBootSplash.h */, + F4BB57F2C8342D0890921AD00DE04C23 /* RNBootSplash.m */, + 1D74E790D372881F6319E2F127C46A54 /* Pod */, + C78F7233EE2D4406A69AA0272F01DC28 /* Support Files */, + ); + name = RNBootSplash; + path = "../../node_modules/react-native-bootsplash"; + sourceTree = ""; + }; + 6681E15CB9B690F8E44F237E8246F44F /* CoreModulesHeaders */ = { + isa = PBXGroup; + children = ( + E263FF05F0C40822398FCD1BA2930346 /* CoreModulesPlugins.h */, + 715DE3D61DB2B9F0C8ED94D9195A2359 /* RCTExceptionsManager.h */, + 3D40CFA13FF0F7838C12F25132E746C8 /* RCTImageEditingManager.h */, + 9B7CFD05C691F6924977123D6341303E /* RCTImageLoader.h */, + 948E905C7DF7FF829F4AF8B63DA1650A /* RCTImageStoreManager.h */, + 0FB14AEB040EF55E079AD9DF8E45383B /* RCTPlatform.h */, + ); + name = CoreModulesHeaders; + sourceTree = ""; + }; + 66E0D2B9B4914944D3F6D52FE02365AE /* Pod */ = { + isa = PBXGroup; + children = ( + DF85B830324DFEABADD1EBC6B2D3CAED /* EXPermissions.podspec */, ); name = Pod; sourceTree = ""; }; - 624EFCD3BA0C90967B36FE2B156BE532 /* Products */ = { + 68C31E9E200F9720B5B0A651EF94E5DF /* Support Files */ = { + isa = PBXGroup; + children = ( + F75A97E72944AAAD3BFFC5CCB7806BB7 /* React-RCTText.xcconfig */, + 8A8190566899CF9ABE25C063278E2F77 /* React-RCTText-dummy.m */, + FED0982B6F4929D35EDF03B04F6BCE1F /* React-RCTText-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTText"; + sourceTree = ""; + }; + 69A4802389093D8619F156274B3BB3A5 /* RNFastImage */ = { + isa = PBXGroup; + children = ( + 8097A444830D3C6CCE125A1719EBE321 /* FFFastImageSource.h */, + CBC8978F7A2DBF3D6A595470001EB888 /* FFFastImageSource.m */, + 65DF2D38D025F5920C9A118C22152FC2 /* FFFastImageView.h */, + BB42A1E41CF00DC707700CBBB3D7BD80 /* FFFastImageView.m */, + 3405BF8C28915A35FDCF0DC28DD6C452 /* FFFastImageViewManager.h */, + 78370509C55CD0F883BD4BEF2A6D6273 /* FFFastImageViewManager.m */, + 5A09A3FC6667C5F9782E43A35E3C5BE8 /* RCTConvert+FFFastImage.h */, + 7338C1843FE0B7ED556C5763FD46A84F /* RCTConvert+FFFastImage.m */, + 9822752D930EFC21B0F025B094F9FF8A /* Pod */, + 080326E9162A227D73472C5A1BF8E438 /* Support Files */, + ); + name = RNFastImage; + path = "../../node_modules/react-native-fast-image"; + sourceTree = ""; + }; + 6A725F6F772893A2149E72E17EFF9A5E /* Drivers */ = { + isa = PBXGroup; + children = ( + E2170B422AE233CA0E843E1C6F8C5AF6 /* RCTDecayAnimation.m */, + 24ED047780F990FDE45C495CB8C81BE3 /* RCTEventAnimation.m */, + 2F878A57E2BD422441DA596CE98AC330 /* RCTFrameAnimation.m */, + 21798EFB64E95ED60C19806C91FC71F0 /* RCTSpringAnimation.m */, + ); + name = Drivers; + path = Drivers; + sourceTree = ""; + }; + 6B316D4F61F7D349A2A4EEB4B290CEE6 /* Support Files */ = { + isa = PBXGroup; + children = ( + 3F3CB5FABF8ADED7650DF34AE8C9567D /* FirebaseInstallations.xcconfig */, + F3C820FC2BBE1761DA1AA527AA0093BF /* FirebaseInstallations-dummy.m */, + ); + name = "Support Files"; + path = "../Target Support Files/FirebaseInstallations"; + sourceTree = ""; + }; + 6B386F027F4B267841A3111DB1104A2B /* Multiline */ = { + isa = PBXGroup; + children = ( + 5CE7F2C3E9991FC3578F7E67BE5C9393 /* RCTMultilineTextInputView.h */, + FFD0AEBB89BB36C053458AF452310619 /* RCTMultilineTextInputViewManager.h */, + E69F4D5FA2EEA2CCC03B5241F06B998F /* RCTUITextView.h */, + ); + name = Multiline; + path = Multiline; + sourceTree = ""; + }; + 6B6C32C73706CF621C5AF986E93AFEA5 /* Support Files */ = { + isa = PBXGroup; + children = ( + FA26B5A8A32F2F522F09863C5C0477C0 /* GoogleDataTransportCCTSupport.xcconfig */, + 4E5A82E2D83D68A798CF22B1F77829FC /* GoogleDataTransportCCTSupport-dummy.m */, + ); + name = "Support Files"; + path = "../Target Support Files/GoogleDataTransportCCTSupport"; + sourceTree = ""; + }; + 6B7B99CB35929146A220D14D68A46DF8 /* UIUtils */ = { + isa = PBXGroup; + children = ( + 7012687F32F355EC8E14C8C53AAD981D /* RCTUIUtils.h */, + 515A22978278B8552B18FDDF1FBA5AF8 /* RCTUIUtils.m */, + ); + name = UIUtils; + path = React/UIUtils; + sourceTree = ""; + }; + 6C517F5AE5A03AAEADD9CBE51FB6E0D2 /* Support Files */ = { + isa = PBXGroup; + children = ( + 11C8A67A523D91820F05E1E75A938EB7 /* UMConstantsInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; + sourceTree = ""; + }; + 6C8834E7AC0D4238E5B6A66810EEC9E8 /* Pod */ = { + isa = PBXGroup; + children = ( + 8071F3140C83C329B87D89F7F76D7B0A /* LICENSE */, + E3085ABFDFB80C782979628AFA5B70C3 /* README.md */, + 4CCD21308C37AE02C506AEEA3FDC135A /* RNImageCropPicker.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 6CAD6E5F63F068421E0A82826BC0EBA4 /* Pod */ = { + isa = PBXGroup; + children = ( + 75DB9753B851A6352F359AD77132937B /* LICENSE */, + 717E9E9B93F6F630140F1EA916BF74D5 /* README.md */, + D5E11F7AC15E70A2FAE36618DDDD535C /* rn-fetch-blob.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 6CF7EC609CAD8174E757012DA4B177A1 /* Support Files */ = { + isa = PBXGroup; + children = ( + B05C43896E9F95B6A4756C24B12C8DBB /* SDWebImageWebPCoder.xcconfig */, + DAD1EC07061CD01D8DB00C1DF9CBA5B9 /* SDWebImageWebPCoder-dummy.m */, + F1B1144A35ACFEBD4E96E634A66733F6 /* SDWebImageWebPCoder-prefix.pch */, + ); + name = "Support Files"; + path = "../Target Support Files/SDWebImageWebPCoder"; + sourceTree = ""; + }; + 6D7697A150FDA36C16E8D3A38337E1E1 /* EXConstants */ = { + isa = PBXGroup; + children = ( + 274F543867C64B9A619D27C4513014D2 /* EXConstants.h */, + 5AE52EB85E8977A12AE544F6B71A771E /* EXConstants.m */, + 9904960D15504DAC6CCA49A008D712AE /* EXConstantsService.h */, + B5F7B9DC5DBD0A04BB45CF9ABB1FE54F /* EXConstantsService.m */, + CF256EB76BF3C0AAF27AC421B283BCEC /* Pod */, + 540C3751D1AC6CB777305883265ADE26 /* Support Files */, + ); + name = EXConstants; + path = "../../node_modules/expo-constants/ios"; + sourceTree = ""; + }; + 6D8A7CB344ECF80DB5110C18F436E842 /* FBReactNativeSpec */ = { + isa = PBXGroup; + children = ( + 80126C51BED4E3DCB4CCD333C38DA46B /* FBReactNativeSpec.h */, + CAC8F0CFB05A73A670C9E3F2D08A0640 /* FBReactNativeSpec-generated.mm */, + 1F8DC336A1373E5960838643116CCA93 /* Pod */, + 4E0E8C55BFE659BFEC943808176AA9C5 /* Support Files */, + ); + name = FBReactNativeSpec; + path = "../../node_modules/react-native/Libraries/FBReactNativeSpec"; + sourceTree = ""; + }; + 6E3D9D081618F355E89BC08740B794C1 /* RNVectorIcons */ = { + isa = PBXGroup; + children = ( + 39440C29EF6281814EEBA71F12BF027E /* RNVectorIconsManager.h */, + 0B3E5DD41E0FA57BBB1449FE2675DE59 /* RNVectorIconsManager.m */, + 01C7302D0ED672161686C8416B303BED /* Pod */, + DE11E11452EA3705402E9A845B1CE0D8 /* Resources */, + 62F895489E81C9A525E91D745669D6FB /* Support Files */, + ); + name = RNVectorIcons; + path = "../../node_modules/react-native-vector-icons"; + sourceTree = ""; + }; + 6E76E5C1C37AC6F688843C9E740B7212 /* Support Files */ = { + isa = PBXGroup; + children = ( + ED2B0EF803D68091C2A97BE33361B636 /* RNDateTimePicker.xcconfig */, + 4B9CA38E879CD20E77C3E4C4B0DE0CB9 /* RNDateTimePicker-dummy.m */, + FF24D5393A4E5062742F0844057E3418 /* RNDateTimePicker-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/RNDateTimePicker"; + sourceTree = ""; + }; + 6EA4AC36E6CB3CDB7F0F7F660605D1F2 /* Views */ = { + isa = PBXGroup; + children = ( + A693AA61E697173D763FB55F9F925A76 /* RCTActivityIndicatorView.h */, + 8E18A88BAD923B062DD7A8FDDE0FC019 /* RCTActivityIndicatorView.m */, + 7F2DF0505AC6DD488E90BAA79F1E6DB9 /* RCTActivityIndicatorViewManager.h */, + 59B44F2096A5FF0B60BDF62BAD0EB766 /* RCTActivityIndicatorViewManager.m */, + 44EABB9CB5B9D0D74454496877665506 /* RCTAnimationType.h */, + 15B5BE8D50BAB0134DD382D366567ED6 /* RCTAutoInsetsProtocol.h */, + 70D235412EFE764BFC9DBBEAD567BB29 /* RCTBorderDrawing.h */, + AA9F7478AADD3DD5BF9F700EE0988915 /* RCTBorderDrawing.m */, + EEDE915C22C65B42CE4277C418DB3213 /* RCTBorderStyle.h */, + F1AD8D4096824219D55A5025F4580AD7 /* RCTComponent.h */, + 0C2DF73102D11D25584EE0473C499831 /* RCTComponentData.h */, + 4BF3A95DB37F815FF43D7EF1E503E1E5 /* RCTComponentData.m */, + 8089F7AB55E384041ACDDF19E78F1B60 /* RCTConvert+CoreLocation.h */, + EA1E9A14E80735BFE4C7521D136DC165 /* RCTConvert+CoreLocation.m */, + 13FAC8112719E5F8DF48A5580D6146ED /* RCTConvert+Transform.h */, + 0381A251667F2E0736F1F8B62BCAA077 /* RCTConvert+Transform.m */, + 5EF03D4A1089DE603CBFFF9D9D52203D /* RCTDatePicker.h */, + 77B1EBB82F5E7296CDCBF6DECA8539D9 /* RCTDatePicker.m */, + BEDD643D44C870406004853F80397131 /* RCTDatePickerManager.h */, + 8C1C346A405E291620CD1E83A90BDC2E /* RCTDatePickerManager.m */, + 2D34EDB4F334F9A61289CC7A8CE81336 /* RCTFont.h */, + 830091E9F5DA8AA7DE3E4082877C79B2 /* RCTFont.mm */, + 71D333D6C9815B4D7BDE138207450774 /* RCTLayout.h */, + 1D0AB78E30104F0A136DF6B23174E0D0 /* RCTLayout.m */, + 09B04B8589E68E2687A1D94C462182AD /* RCTMaskedView.h */, + 87250954950E13682D9F5CD7F3A6BA91 /* RCTMaskedView.m */, + AB9ECDA9ED934C3308F87CE97820F9EF /* RCTMaskedViewManager.h */, + FB5163CC84095AD8ACF8C608B1977B90 /* RCTMaskedViewManager.m */, + EF2C901FE1223174D8B3A6746858D656 /* RCTModalHostView.h */, + 7E50CD8A90BE20BC826BEC95C64F9915 /* RCTModalHostView.m */, + B751636E9EB237E78796852019202781 /* RCTModalHostViewController.h */, + 32535E19DA9B81F52BD854BC718FE596 /* RCTModalHostViewController.m */, + C89485CBD68603701DFD1CF78BD93BCC /* RCTModalHostViewManager.h */, + D1A4AD2BE6B55C9529F2FC6474C850EA /* RCTModalHostViewManager.m */, + F05DDA788AC42546B5D27BCCA0222EBE /* RCTModalManager.h */, + 759973C61B3A8903A686499A76905E4C /* RCTModalManager.m */, + 81143DA51A172C18B1CD38A0FD36407D /* RCTPicker.h */, + D1D8016FFF808566998E371FEB3F3DE0 /* RCTPicker.m */, + A16DEFAB0875333C26E3139CE5310E82 /* RCTPickerManager.h */, + 90840E4541C9DD475BB36737BCEF0EF0 /* RCTPickerManager.m */, + 388E38F332625087DCF2599BD7A2301D /* RCTPointerEvents.h */, + BF5624ED36A75321F4F24EAED7A7AF33 /* RCTProgressViewManager.h */, + 7D9CF80F3F009E6064C67C573894F6D9 /* RCTProgressViewManager.m */, + 226179432C6080ECA229D01D76926AFC /* RCTRefreshControl.h */, + 980334210A70EC8FFACDA9AE9DECBEE1 /* RCTRefreshControl.m */, + D7A95B257013795111CFA1F1AB3E1273 /* RCTRefreshControlManager.h */, + 2417D733FCFBBA6DE5A653206FC6DBC2 /* RCTRefreshControlManager.m */, + D072AAF75155CF22E0B841DC87AA1FCF /* RCTRootShadowView.h */, + 247EB6446686C8DE976B71F8E7151AB5 /* RCTRootShadowView.m */, + A1F900E624E4F67AFB7FA81DF7F85E61 /* RCTSegmentedControl.h */, + 980FDBA738C683BE41F4E005921CF7B2 /* RCTSegmentedControl.m */, + 92AAE233471128F7AB697528E5779C4F /* RCTSegmentedControlManager.h */, + 0CE1B26244BAE7DEC268FC99D1DB1116 /* RCTSegmentedControlManager.m */, + 375E3F922217B20721576A0AC235351F /* RCTShadowView.h */, + 6B8F563DDF42E97813ADA94A44D41DAB /* RCTShadowView.m */, + DD7B1DDC7B038544A875E6A822F28386 /* RCTShadowView+Internal.h */, + 0722D2EC567F23AE93ADAE6D32994A8C /* RCTShadowView+Internal.m */, + 1CEAC4E463CAC8251214B1C9557FCEAF /* RCTShadowView+Layout.h */, + 3761AEACE1DA39F1AD4786BB1D0061FF /* RCTShadowView+Layout.m */, + 5617399E43084D1599B422553239EF32 /* RCTSlider.h */, + 6BA51F00ECD12529E58CF5FCF1BDD822 /* RCTSlider.m */, + 7C07F9EEC2DBABECAACCAC8A87228BBF /* RCTSliderManager.h */, + 86F87738549F13FD7A93B2D9A9E7AE3E /* RCTSliderManager.m */, + BCEA53C69C3685631F06C2188C4F5F73 /* RCTSwitch.h */, + 907943E2FBD3DB953B4FBA9071E2CB0C /* RCTSwitch.m */, + A472B29A06F533DC8055155CB0C7DA06 /* RCTSwitchManager.h */, + EB7D50EFBEB2E508AF716F3712D90713 /* RCTSwitchManager.m */, + 1511DFEB994E187AFF9521845948D37C /* RCTTextDecorationLineType.h */, + 91D1EFE5F226BBD145CE95DAC5EA45FA /* RCTView.h */, + 4BA98710C34DBCE9064FE58C234DF6F4 /* RCTView.m */, + BE6781874D04D82A9300A2130BD1910F /* RCTViewManager.h */, + 1FFF4386C7B0F3D13728EEF0B16D8810 /* RCTViewManager.m */, + 4E755321532787F7DB40AC844B2A0AE0 /* RCTWrapperViewController.h */, + 3EF16EEFB7DEE0F7CD09E9E57683CAEB /* RCTWrapperViewController.m */, + BCC85C917F9308976AC6ED6C364D618A /* UIView+Private.h */, + DDDC95FFE0C6C7B2851FD524684F54B0 /* UIView+React.h */, + 602A3122C7F22DFAAB9B83821759D99D /* UIView+React.m */, + AA1160D4DE7CADD11E97B3EA14933708 /* SafeAreaView */, + F26AAD006FF956042BD5D10835BFAD9F /* ScrollView */, + ); + name = Views; + path = React/Views; + sourceTree = ""; + }; + 6EE080B27C2F0BC39CC6F791380A9695 /* Pod */ = { + isa = PBXGroup; + children = ( + 0498B64643BBE06318BD049DCBD0A9E6 /* React-cxxreact.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 6F88DEA2865A43BC2ACD1E85CDD051E9 /* AppDelegateSwizzler */ = { + isa = PBXGroup; + children = ( + 921C25810B4533D9E001D73370A577B6 /* GULAppDelegateSwizzler.h */, + D4389EC289745BCEF60BEA7CDAC784D2 /* GULAppDelegateSwizzler.m */, + 2728A14783AB5E811E5251887AADACAF /* GULAppDelegateSwizzler_Private.h */, + 8FE78D699DF0963CA715538E756C4EE2 /* GULApplication.h */, + E82A30AEF74EE71AF0B62661B8B26951 /* GULLoggerCodes.h */, + 360D859E4F26E0D45AC34F09DA57FE65 /* GULSceneDelegateSwizzler.h */, + 21A7E3A6A97682E28E064E912B3B4371 /* GULSceneDelegateSwizzler.m */, + E73C501A0EB747305BB4AAD7978E3E0E /* GULSceneDelegateSwizzler_Private.h */, + ); + name = AppDelegateSwizzler; + sourceTree = ""; + }; + 6FB512089F3862C7E961C56A0BA3CB5E /* Support Files */ = { + isa = PBXGroup; + children = ( + DED3C306036B86D6BAD40A6FC8471859 /* react-native-cameraroll.xcconfig */, + F689FE1EE0C527B721E002B987BAD52C /* react-native-cameraroll-dummy.m */, + FDDFA76BAC2F0F134DB4AD9EA37146E8 /* react-native-cameraroll-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/react-native-cameraroll"; + sourceTree = ""; + }; + 732DAC917BF654B9AE7754EABC05C472 /* Pod */ = { + isa = PBXGroup; + children = ( + 55ED733271DE2C63203BF1F6FCEF76F7 /* react-native-slider.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 736C8FFB8079F02E286F804D6821B18E /* Support Files */ = { + isa = PBXGroup; + children = ( + 48AAA8346CB5AF2DFBF2FAE3648FBE8B /* RNGestureHandler.xcconfig */, + A863BA598F51BD9217091846EFC9849D /* RNGestureHandler-dummy.m */, + 024606C24DFB6DFF07FD9F7FC9556B48 /* RNGestureHandler-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNGestureHandler"; + sourceTree = ""; + }; + 7468352AB2AACA3FD43509BAC33C9A19 /* Support Files */ = { + isa = PBXGroup; + children = ( + F6CB564AE5D839003189C16F3289EEF1 /* React-RCTVibration.xcconfig */, + 83E5C868AF0D7E96D4BD8511C1A6D078 /* React-RCTVibration-dummy.m */, + B397FBC5CAEDE0C87D6F339BD03B2183 /* React-RCTVibration-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTVibration"; + sourceTree = ""; + }; + 754BC65B3E384E70A15C9B89EC311324 /* Services */ = { + isa = PBXGroup; + children = ( + BDFE1F387E5F04ED134A6A71124C655C /* UMLogManager.h */, + 81D1EF2629F8267469FF9635CA325509 /* UMLogManager.m */, + ); + name = Services; + path = UMCore/Services; + sourceTree = ""; + }; + 7608AB024D1633872B42272B5E1F84FE /* EXWebBrowser */ = { + isa = PBXGroup; + children = ( + ACD51DA66542BC940D4A5FB04D6C0DAB /* EXWebBrowser.h */, + C78CF85D200C3733B1D747C9702711F1 /* EXWebBrowser.m */, + D28D7DAA3C32A57F7E68530A96482DEE /* Pod */, + 7FFA47933E70AFC1B78B545306817DCB /* Support Files */, + ); + name = EXWebBrowser; + path = "../../node_modules/expo-web-browser/ios"; + sourceTree = ""; + }; + 7608AC1BAFF9991F61A7036E8460C5F2 /* Pods-ShareRocketChatRN */ = { + isa = PBXGroup; + children = ( + D43DE3DC7792E0B353371829F68C0FFD /* Pods-ShareRocketChatRN-acknowledgements.markdown */, + BFA3D1106C1072A2B733533A2E770794 /* Pods-ShareRocketChatRN-acknowledgements.plist */, + 20EB67591180BD14936DAED287A3BFF0 /* Pods-ShareRocketChatRN-dummy.m */, + B65D1E0F95214E2E1AC4F513C1753CC7 /* Pods-ShareRocketChatRN-resources.sh */, + 49A51F5FBBCFD3F02638D5838DF22338 /* Pods-ShareRocketChatRN.debug.xcconfig */, + 527CD81DF520880893DE8021CD41E619 /* Pods-ShareRocketChatRN.release.xcconfig */, + ); + name = "Pods-ShareRocketChatRN"; + path = "Target Support Files/Pods-ShareRocketChatRN"; + sourceTree = ""; + }; + 7643CA6EAFC13DCAC51058242FD000A9 /* RemoteNotification */ = { + isa = PBXGroup; + children = ( + 783B518DD2B125FC0E464EEDAA73E812 /* EXRemoteNotificationPermissionRequester.h */, + E3D1E7716CC44DDA6ECFCA7F38BAFD28 /* EXRemoteNotificationPermissionRequester.m */, + ); + name = RemoteNotification; + path = RemoteNotification; + sourceTree = ""; + }; + 767F2EBF981E8690469F1A8949CD95B2 /* ReactCommon */ = { + isa = PBXGroup; + children = ( + A78F8B84B10BCF1E1A0BE22031D00524 /* jscallinvoker */, + 08F3E939EAA8D9D6CB3414A748368A0C /* Support Files */, + 073E4DD5DD409A658DE618555EF0D736 /* turbomodule */, + ); + name = ReactCommon; + path = "../../node_modules/react-native/ReactCommon"; + sourceTree = ""; + }; + 769E1B5673D138F10F198F12A2BF89C5 /* Nodes */ = { + isa = PBXGroup; + children = ( + A353EBABAB23AF51DD06C780062A0033 /* RCTAdditionAnimatedNode.m */, + D27001C0EE49A2C52AB055D6EE0F0F01 /* RCTAnimatedNode.m */, + 7B39C5E381ACE6F64E9BB458AE03BD63 /* RCTDiffClampAnimatedNode.m */, + EB94F93D00DB0189F3ED90E4609092F9 /* RCTDivisionAnimatedNode.m */, + 36756CBFBFF0B3B954AD1B7158A3E6D4 /* RCTInterpolationAnimatedNode.m */, + 93CCBDDABEAE5942230CF0E025336E1E /* RCTModuloAnimatedNode.m */, + 4F4E632D2E19B3B79DF2C310705D42BA /* RCTMultiplicationAnimatedNode.m */, + 4DAAD67DF7974AF97D3B405CB6A2F359 /* RCTPropsAnimatedNode.m */, + B03AEABDDF62B278F296D02437A837D5 /* RCTStyleAnimatedNode.m */, + 33C061B1392DFF91EE6CBE0A4CC35993 /* RCTSubtractionAnimatedNode.m */, + DF6D5E0AF58DEBC7EFDA3E4CF9D871E5 /* RCTTrackingAnimatedNode.m */, + 7FD4FA37C4ABD4B22B9675BFD87748D1 /* RCTTransformAnimatedNode.m */, + F9325A0ED5CAF49D74FE46655BD88863 /* RCTValueAnimatedNode.m */, + ); + name = Nodes; + path = Nodes; + sourceTree = ""; + }; + 77D12721DE5C7D86E49DFE81A82BCC48 /* RNAudio */ = { + isa = PBXGroup; + children = ( + 5668891029B9B7D87A4885AE25E331EB /* AudioRecorderManager.h */, + 76E8F7051C8AE4EB9A276F0FA68D5A5C /* AudioRecorderManager.m */, + E009B0369075FA826BED6EF7E4029CC2 /* Pod */, + 5C1C9560663B399EBF825881C5527D2F /* Support Files */, + ); + name = RNAudio; + path = "../../node_modules/react-native-audio"; + sourceTree = ""; + }; + 77E5437F2565ABF89F8E76F4530936A3 /* Support Files */ = { + isa = PBXGroup; + children = ( + 746D3D964458B43BFFB90666578396AE /* FirebaseCoreDiagnostics.xcconfig */, + AE40F8A55B4E0868CA1A35733818234B /* FirebaseCoreDiagnostics-dummy.m */, + ); + name = "Support Files"; + path = "../Target Support Files/FirebaseCoreDiagnostics"; + sourceTree = ""; + }; + 784060C1F46AC7777BADE925641CCD77 /* RNGestureHandler */ = { + isa = PBXGroup; + children = ( + E78C0DFF4376A743833BE1BE5257A4FD /* RNGestureHandler.h */, + 56FD6071C9093AABD262B1CDC9FBF442 /* RNGestureHandler.m */, + 64C7B6452059258838A037FCED07C385 /* RNGestureHandlerButton.h */, + 3D3EB0C538A74A00277C1B7D5275BA45 /* RNGestureHandlerButton.m */, + C7B64314C69A8832898BAE08194AC9B9 /* RNGestureHandlerDirection.h */, + 3DB5C006FFFD6248BB1DE2BD1FDAA845 /* RNGestureHandlerEvents.h */, + 04BE1D6CA0CD9241EB81A4AB5F3C45A9 /* RNGestureHandlerEvents.m */, + 83801A2B1087F85FCBCEE0AAD6F633BA /* RNGestureHandlerManager.h */, + 0EDFD91143B580A2011219BF543907D2 /* RNGestureHandlerManager.m */, + F08C8E9ABDB624DB4767FBBFB966F840 /* RNGestureHandlerModule.h */, + 672097DF8942995581CE2F38215EB2A5 /* RNGestureHandlerModule.m */, + D27F6811C1E80C2F86BCD041DE4269D2 /* RNGestureHandlerRegistry.h */, + FC7349EEC7FB241A0DBF3CD9AA3FE736 /* RNGestureHandlerRegistry.m */, + 98A7A347CA351FBD29C63ECE2C510116 /* RNGestureHandlerState.h */, + 0ED91A38D50BB121286DD13CE08A30CF /* RNRootViewGestureRecognizer.h */, + CAA81A8AB89E8C8D069C8BDE6728CC72 /* RNRootViewGestureRecognizer.m */, + BF186C75EA06E6813F1FBAC8C998D99D /* Handlers */, + 9C65BAEDCB19A016A3CB5DC347249D0D /* Pod */, + 736C8FFB8079F02E286F804D6821B18E /* Support Files */, + ); + name = RNGestureHandler; + path = "../../node_modules/react-native-gesture-handler"; + sourceTree = ""; + }; + 79D61CA7C196A1286C653402B2E4FDB0 /* Pod */ = { + isa = PBXGroup; + children = ( + B9BB21426599D632F7A2A249838F9D75 /* EXImageLoader.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 7AFEC717B70C015C7A0756DF889212C2 /* Pod */ = { + isa = PBXGroup; + children = ( + 514A7FC352EF592241BFCAFC228C1B14 /* React-CoreModules.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 7B2AA775DEE264DD46F30C99DAA2322D /* Pod */ = { + isa = PBXGroup; + children = ( + F11AF63AF8F5AE2ADB2930373146C586 /* EXFileSystem.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 7B89B65395E413FA150A2EA80A8B154D /* Pod */ = { + isa = PBXGroup; + children = ( + ADF925B31FB0D38423440548BFB97E56 /* react-native-keyboard-tracking-view.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 7BA28E9429A276129A054FF44198416A /* Pod */ = { + isa = PBXGroup; + children = ( + 57959E3B04D0C0BDA52EA22A356E8DC2 /* FBLazyVector.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 7BB8B5503AC95FE21EF47B1C5153752F /* Pod */ = { + isa = PBXGroup; + children = ( + C1C99350D8A98C5A73C5FED1BFF1B53F /* LICENSE */, + 30E4DFFD382FF53419B8D93D49256970 /* README.md */, + F897C4400531D40230442A47E1DC1972 /* rn-extensions-share.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 7C37218A8059CA8EC3EE33A1EAF18B86 /* Pod */ = { + isa = PBXGroup; + children = ( + 0AEC25EAAA5E51A74B9582B5EDA35EC3 /* React-jsinspector.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 7C6F00A792B8D8F7E2EDA3CEAD517A3F /* crashlytics */ = { + isa = PBXGroup; + children = ( + 03C581B5EAD8C9A859EE4A56D56414BA /* RNFirebaseCrashlytics.h */, + 2765B792B467115750BCB85AC04C7374 /* RNFirebaseCrashlytics.m */, + ); + name = crashlytics; + path = crashlytics; + sourceTree = ""; + }; + 7D4BA0E1DFDD07B523659CC6D8A64A6B /* vendor */ = { + isa = PBXGroup; + children = ( + ADAEB9A1C92C89BCB5A904B84782EC9C /* bugsnag-cocoa */, + ); + name = vendor; + path = cocoa/vendor; + sourceTree = ""; + }; + 7DA4A09401387DA68FD6AB3169D95BD9 /* Pod */ = { + isa = PBXGroup; + children = ( + 10B4D2544463909549F12C7F692223DB /* KeyCommands.podspec */, + E6164A6A95D6B2C5F5FB66AE8BF72F00 /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + 7ED1A83997F52CD057EE255451E9B4B4 /* RNDeviceInfo */ = { + isa = PBXGroup; + children = ( + 91BC942CF16AC147CAD7D1217158C055 /* DeviceUID.h */, + 74FA0DFB857F49DD1B0057076D9CE528 /* DeviceUID.m */, + 2E900620FE75CBB1CB75DF8274671C9B /* RNDeviceInfo.h */, + 01B218C01075CC627D6CD84828172CB7 /* RNDeviceInfo.m */, + C93AC788C6BD7BBC749D28E42F88C3EB /* Pod */, + 4676890FEDBBEFAFF2DB105E012484D6 /* Support Files */, + ); + name = RNDeviceInfo; + path = "../../node_modules/react-native-device-info"; + sourceTree = ""; + }; + 7FFA47933E70AFC1B78B545306817DCB /* Support Files */ = { + isa = PBXGroup; + children = ( + E866CECE6F9A3676B266DA1070DF8A37 /* EXWebBrowser.xcconfig */, + 0C041C1310AE95E7FC32B4BCEF39B5E3 /* EXWebBrowser-dummy.m */, + 9BD8E89DC6D0FE7D0F3D4AFAA6584194 /* EXWebBrowser-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; + sourceTree = ""; + }; + 80E471F80B32E863E50DD113FCB69EAC /* Pod */ = { + isa = PBXGroup; + children = ( + A37F85EC0C192B825ED43BA595184762 /* RCTRequired.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 80ED9C0DC40111C25E56884FB4E6C8BD /* Pod */ = { + isa = PBXGroup; + children = ( + 2569FFED30094AFFDBA2FF03A9982DC1 /* UMCameraInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 81188818AA0A0B032566FB0CED8C0C05 /* Support Files */ = { + isa = PBXGroup; + children = ( + 4546767F3188A259899C9560A580DFDE /* UMReactNativeAdapter.xcconfig */, + 52F5092222245D907FA715A5E5B4B37D /* UMReactNativeAdapter-dummy.m */, + 5128E229E8F893C5DA5F50997F12F2E0 /* UMReactNativeAdapter-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; + sourceTree = ""; + }; + 81C0870E49C2C1C6FCC73D1E4974A315 /* EXLocalAuthentication */ = { + isa = PBXGroup; + children = ( + 61ACE6EF73A38A8530394E258344A58E /* EXLocalAuthentication.h */, + FB1F2A873B83D185B95AD54D4488C69F /* EXLocalAuthentication.m */, + EFD403C3B9850858E56B3FD6BE1897BC /* Pod */, + FF530D20D1A8D927B43CFB93470B89E7 /* Support Files */, + ); + name = EXLocalAuthentication; + path = "../../node_modules/expo-local-authentication/ios"; + sourceTree = ""; + }; + 82427D4DB5EF92D59620DBEB6830FF7F /* RNFetchBlob */ = { + isa = PBXGroup; + children = ( + 1199498CED9F8347974A740A839A1121 /* RNFetchBlob.h */, + 7DBF90403D226FD4BA9D802C0772DC56 /* RNFetchBlob.m */, + ); + name = RNFetchBlob; + path = ios/RNFetchBlob; + sourceTree = ""; + }; + 824FCB05728F40A7EDB0DC578520661F /* React-RCTVibration */ = { + isa = PBXGroup; + children = ( + 20C369594F3002EE0F7D495BDFC51219 /* RCTVibration.m */, + AFE75C3A25D721808449B8B69DD04E16 /* Pod */, + 7468352AB2AACA3FD43509BAC33C9A19 /* Support Files */, + ); + name = "React-RCTVibration"; + path = "../../node_modules/react-native/Libraries/Vibration"; + sourceTree = ""; + }; + 82A012E9979AE498413DA70862AB6DFF /* BugsnagReactNative */ = { + isa = PBXGroup; + children = ( + 9F357FFA83F025CF4B110994FADFE0DB /* BugsnagReactNative.h */, + 2D2B51DD4DF417B10B71E8B822A93A9B /* BugsnagReactNative.m */, + C5C5F26E96193E0BC6081DC7A572DF0C /* Core */, + 9CBEC30486697F054242C7954BDF78FC /* Pod */, + 15788066B0B236881C557818E710856F /* Support Files */, + 7D4BA0E1DFDD07B523659CC6D8A64A6B /* vendor */, + ); + name = BugsnagReactNative; + path = "../../node_modules/bugsnag-react-native"; + sourceTree = ""; + }; + 834BC0B5A785498CCE4848C041877A6F /* functions */ = { + isa = PBXGroup; + children = ( + 82675BE62C3ACFEE49CA5D268C891DB4 /* RNFirebaseFunctions.h */, + F85D6B2F3D53D8555287EE94A251903F /* RNFirebaseFunctions.m */, + ); + name = functions; + path = RNFirebase/functions; + sourceTree = ""; + }; + 879F3A9033ECD2468189DAE5BB980708 /* Support Files */ = { + isa = PBXGroup; + children = ( + C28AD31F48DE2DABE75E803A84132594 /* UMFontInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFontInterface"; + sourceTree = ""; + }; + 87B43EFE108D744676A25D0DE7AB40F7 /* Interfaces */ = { + isa = PBXGroup; + children = ( + F49BE03F87BDF1DAC772E82BCB319DCA /* UMAppLoaderInterface.h */, + C29FD71196E223C3E2239356CC16DD9D /* UMAppRecordInterface.h */, + ); + name = Interfaces; + path = UMAppLoader/Interfaces; + sourceTree = ""; + }; + 87F3033FCEAEAD21E9AD72258A4B448A /* RNUserDefaults */ = { + isa = PBXGroup; + children = ( + 014EF95AAC4DFB40DC1F1AFC58414C97 /* RNUserDefaults.h */, + 73045376DE6AE9AB27D7A891266C41A8 /* RNUserDefaults.m */, + 521D4D9BAF9008D2BC1182D2FF9CEC52 /* Pod */, + 4A2183A32EAFCD944A3BB85CCC82248C /* Support Files */, + ); + name = RNUserDefaults; + path = "../../node_modules/rn-user-defaults"; + sourceTree = ""; + }; + 88F1C5CDED7D1A41F977E22A57792F3E /* Pod */ = { + isa = PBXGroup; + children = ( + 4C7C0723CA0A08AEB0B8C8161A0459C3 /* LICENSE */, + 9CEA49036BD452BE4A76DB445E83A381 /* react-native-keyboard-input.podspec */, + 763B918D7D01DFE0779F8B2CEEB1F46A /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + 890910D2505ED7E061FABFCD61823A18 /* Products */ = { isa = PBXGroup; children = ( 3EEAA606F6866DA20E6601B9655B1027 /* libBugsnagReactNative.a */, @@ -9909,6 +10392,7 @@ ED1E3FC0DC90F4A787472917BFB6B235 /* libEXFileSystem.a */, 80A51B61FECFED8D1A0D95AAD32A2938 /* libEXHaptics.a */, 494E934B4070A029E1A8D42C9BDF4646 /* libEXImageLoader.a */, + 72558F571738704549E1838E845D2770 /* libEXLocalAuthentication.a */, 72E494917AC5EC2582197F07061A28B0 /* libEXPermissions.a */, 574E8A849B86DCF8EE5726418D974721 /* libEXWebBrowser.a */, ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */, @@ -9986,777 +10470,178 @@ name = Products; sourceTree = ""; }; - 62916AFA60BAF874F6A800F5566DB96F /* EXWebBrowser */ = { + 8A2BAA7744CA0ED87AAE14AB5FEE47E9 /* BaseText */ = { isa = PBXGroup; children = ( - 02780F2B2D2239DCC2F77193E2D15E82 /* EXWebBrowser.h */, - 0728E8867E1424D47A7CDFCDD3463E04 /* EXWebBrowser.m */, - 998B245C1C4E5B16778E38252EA8BC1A /* Pod */, - 3CB461BA48012400D326A363B2C1853E /* Support Files */, - ); - name = EXWebBrowser; - path = "../../node_modules/expo-web-browser/ios"; - sourceTree = ""; - }; - 64075650DA00566B0778664AD8BDD58B /* Drivers */ = { - isa = PBXGroup; - children = ( - C573F9839F0DFBBBF0B71A04BC958D8F /* RCTAnimationDriver.h */, - 13569BD963332ED5AA1C999B78DBE3D9 /* RCTDecayAnimation.h */, - 3309D211A0B19A7D9B1BFACA6D5C0528 /* RCTEventAnimation.h */, - 4FBB4FA5C063EB2DD23A9658D871F196 /* RCTFrameAnimation.h */, - 6797C894856069CDC3C86C11A7403793 /* RCTSpringAnimation.h */, - ); - name = Drivers; - path = Libraries/NativeAnimation/Drivers; - sourceTree = ""; - }; - 657DC15FB5EC162E18117CEA4C4C2E5B /* jsi */ = { - isa = PBXGroup; - children = ( - 7CC49CCB50E8D515DFCF0030F894F241 /* decorator.h */, - C2CB94F061FD37D5215385BC264E365C /* instrumentation.h */, - 54E20EE1DCF407DC3DDABFF462686954 /* jsi.cpp */, - 2DF5B5A8F386B04CF4A0E30232BAC970 /* jsi.h */, - 61B19A58B1992BF0BC549A46F9ABC77E /* jsi-inl.h */, - 07FF47D0C9B3144A517AB68321480C20 /* JSIDynamic.cpp */, - FF2FAA6E172C596B5567EA8AC6FC6A63 /* JSIDynamic.h */, - 93A6668248E0553F88E3F241BC7DB2CC /* jsilib.h */, - D30B2E8BB541572E0CFED72143B2D5FB /* jsilib-posix.cpp */, - EDF8EDC8A430227FDC0B35718C308F93 /* jsilib-windows.cpp */, - 074DDB0ADE3E453E37436DD6DE29DB44 /* threadsafe.h */, - ); - name = jsi; - path = jsi; - sourceTree = ""; - }; - 6753863660C71B22647DE0F2F4A593B8 /* RNBootSplash */ = { - isa = PBXGroup; - children = ( - 5556350F9460002DC1E3E77702D479EE /* RNBootSplash.h */, - 65BEA74BA7488C6DF4D1DBFB14D902CE /* RNBootSplash.m */, - 6DE422AE0D14950DDBEFBA39222E4F5E /* Pod */, - F335E7F00B38376D026AB6D1FCFD9F60 /* Support Files */, - ); - name = RNBootSplash; - path = "../../node_modules/react-native-bootsplash"; - sourceTree = ""; - }; - 678FCD7ECB8189D311A6C47F253DCC2B /* Support Files */ = { - isa = PBXGroup; - children = ( - 20DEB1A605A22DFC0E9B4E2F71B24EC7 /* React-jsinspector.xcconfig */, - 819452E386D6F7260FFE35AB5A6519F0 /* React-jsinspector-dummy.m */, - 0F41A60939B7366F027B2F9CEF367328 /* React-jsinspector-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsinspector"; - sourceTree = ""; - }; - 67EC2A4C501AE8F3AF020AA7EB4D9AE4 /* Support Files */ = { - isa = PBXGroup; - children = ( - 5F6AB8F360C549914ACACC1BCCDC126A /* EXFileSystem.xcconfig */, - 23D99027B066B537F89C3C0841D9782B /* EXFileSystem-dummy.m */, - AF889F654E50953726ACD4B8DCB9B5E7 /* EXFileSystem-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXFileSystem"; - sourceTree = ""; - }; - 6906A4F40DB505ECAA0367E6E007416A /* Brushes */ = { - isa = PBXGroup; - children = ( - E09F3565A053C17C268671D9AECC4574 /* ARTBrush.h */, - AF89BE7FDF89C01015A090FDCD1FD7CA /* ARTBrush.m */, - A86677E63E89F27DFB0A8B995E0C24D0 /* ARTLinearGradient.h */, - B214BD9C36501DA0F666AE8B05AD9A4C /* ARTLinearGradient.m */, - 8B661C235782F588A607E45D40B27789 /* ARTPattern.h */, - 053250B4E1F9B565A8C721AFF28B912D /* ARTPattern.m */, - C32D7C624A113334D910356C026CFEEB /* ARTRadialGradient.h */, - 0E64EB3A2D9EFBB4C3058273DDDFD253 /* ARTRadialGradient.m */, - 585FF7AA3BD932ED49167696613A7A58 /* ARTSolidColor.h */, - E62106A8AC3479BFF07F954CDB4068A6 /* ARTSolidColor.m */, - ); - name = Brushes; - path = ios/Brushes; - sourceTree = ""; - }; - 6A04458FFF3C32E3C301423CD8BF9C82 /* Support Files */ = { - isa = PBXGroup; - children = ( - DDF2C579C0326557934351E533B57C1F /* react-native-appearance.xcconfig */, - 1930EF38F81766151936FC224DA4DE79 /* react-native-appearance-dummy.m */, - 03C3CDA2CF0DA9F0A6D414B553B98ED9 /* react-native-appearance-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-appearance"; - sourceTree = ""; - }; - 6A6021A8DFDC5AC443905A8833CFB335 /* Support Files */ = { - isa = PBXGroup; - children = ( - 1262C362E414E45C0BF6B4B8BAF38B88 /* RNReanimated.xcconfig */, - 1F6E38E23C024D7729BA0F5A71B4CC5D /* RNReanimated-dummy.m */, - A422E74247A5C79441498360C1D9C4AB /* RNReanimated-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNReanimated"; - sourceTree = ""; - }; - 6B16435F71849EA7B8ADBCE5B2A47061 /* KSCrash */ = { - isa = PBXGroup; - children = ( - 18BF3F5DEE8B435133269D8696BA18EF /* Source */, - ); - name = KSCrash; - path = KSCrash; - sourceTree = ""; - }; - 6B316D4F61F7D349A2A4EEB4B290CEE6 /* Support Files */ = { - isa = PBXGroup; - children = ( - 3F3CB5FABF8ADED7650DF34AE8C9567D /* FirebaseInstallations.xcconfig */, - F3C820FC2BBE1761DA1AA527AA0093BF /* FirebaseInstallations-dummy.m */, - ); - name = "Support Files"; - path = "../Target Support Files/FirebaseInstallations"; - sourceTree = ""; - }; - 6B3CEA8C692A92B152389EE02BCF46F8 /* react-native-appearance */ = { - isa = PBXGroup; - children = ( - 4772BB24FF087ABB268F34C6001F5DAE /* RNCAppearance.h */, - 9CDC959EAAC82AB0723B5116CE019382 /* RNCAppearance.m */, - 06FFFF82DF3F0B943AF0E0DE7CF1E19E /* RNCAppearanceProvider.h */, - BE7BC47FCD051102ED6D2BAF207E6472 /* RNCAppearanceProvider.m */, - F0086E0F907C2CAC679FA269843490E6 /* RNCAppearanceProviderManager.h */, - 08BCDAB5B66339457CF6451737AC1DC0 /* RNCAppearanceProviderManager.m */, - CAE49D67439D10716B0F9064A2822BA3 /* Pod */, - 6A04458FFF3C32E3C301423CD8BF9C82 /* Support Files */, - ); - name = "react-native-appearance"; - path = "../../node_modules/react-native-appearance"; - sourceTree = ""; - }; - 6B5256DAB3FED095B1611234FCE68927 /* auth */ = { - isa = PBXGroup; - children = ( - 65B09B7C2B056521DA317BC0C7FDA36C /* RNFirebaseAuth.h */, - 8C914BBC97E292E5EFBEA4F4414C3500 /* RNFirebaseAuth.m */, - ); - name = auth; - path = RNFirebase/auth; - sourceTree = ""; - }; - 6B6C32C73706CF621C5AF986E93AFEA5 /* Support Files */ = { - isa = PBXGroup; - children = ( - FA26B5A8A32F2F522F09863C5C0477C0 /* GoogleDataTransportCCTSupport.xcconfig */, - 4E5A82E2D83D68A798CF22B1F77829FC /* GoogleDataTransportCCTSupport-dummy.m */, - ); - name = "Support Files"; - path = "../Target Support Files/GoogleDataTransportCCTSupport"; - sourceTree = ""; - }; - 6CF7EC609CAD8174E757012DA4B177A1 /* Support Files */ = { - isa = PBXGroup; - children = ( - B05C43896E9F95B6A4756C24B12C8DBB /* SDWebImageWebPCoder.xcconfig */, - DAD1EC07061CD01D8DB00C1DF9CBA5B9 /* SDWebImageWebPCoder-dummy.m */, - F1B1144A35ACFEBD4E96E634A66733F6 /* SDWebImageWebPCoder-prefix.pch */, - ); - name = "Support Files"; - path = "../Target Support Files/SDWebImageWebPCoder"; - sourceTree = ""; - }; - 6DE422AE0D14950DDBEFBA39222E4F5E /* Pod */ = { - isa = PBXGroup; - children = ( - D1EAC7483CC496B324D19A4ED67371BC /* LICENSE */, - 9164B5C0D7CEC79973609FB151A5687B /* README.md */, - 2DD5497AFE7E6A2CE3FA206676A3E4B8 /* RNBootSplash.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 6DF65E0EB6BC6FE0DFB1E1D4CF73DF00 /* Support Files */ = { - isa = PBXGroup; - children = ( - 3F375F20E60CF86FBB63E7C28CBE4208 /* React-jsiexecutor.xcconfig */, - 6EF51AE475B1C94C17C7C9E97C9A28CD /* React-jsiexecutor-dummy.m */, - 19A32B2E862E46CD42B47424F0A856D6 /* React-jsiexecutor-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsiexecutor"; - sourceTree = ""; - }; - 6E72B84AA85114E71FF8D378DF3B089D /* Support Files */ = { - isa = PBXGroup; - children = ( - E6B899F02890ECA8F69E16739FC723D9 /* UMFileSystemInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; - sourceTree = ""; - }; - 6EB2A42B3680DA986C24F2D4B3EEDA70 /* Support Files */ = { - isa = PBXGroup; - children = ( - FCEC38F8421233C14D48F446A407222B /* React-Core.xcconfig */, - 9FACD549F1023633C75B5539EDE4B196 /* React-Core-dummy.m */, - 5EB3787330DDB5AF32D6D8DC6DBFE9B0 /* React-Core-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React-Core"; - sourceTree = ""; - }; - 6F88DEA2865A43BC2ACD1E85CDD051E9 /* AppDelegateSwizzler */ = { - isa = PBXGroup; - children = ( - 921C25810B4533D9E001D73370A577B6 /* GULAppDelegateSwizzler.h */, - D4389EC289745BCEF60BEA7CDAC784D2 /* GULAppDelegateSwizzler.m */, - 2728A14783AB5E811E5251887AADACAF /* GULAppDelegateSwizzler_Private.h */, - 8FE78D699DF0963CA715538E756C4EE2 /* GULApplication.h */, - E82A30AEF74EE71AF0B62661B8B26951 /* GULLoggerCodes.h */, - 360D859E4F26E0D45AC34F09DA57FE65 /* GULSceneDelegateSwizzler.h */, - 21A7E3A6A97682E28E064E912B3B4371 /* GULSceneDelegateSwizzler.m */, - E73C501A0EB747305BB4AAD7978E3E0E /* GULSceneDelegateSwizzler_Private.h */, - ); - name = AppDelegateSwizzler; - sourceTree = ""; - }; - 72911A0DA84964061D926DAAA2CB39FA /* Support Files */ = { - isa = PBXGroup; - children = ( - CA09E0CE1A07741A4401199479C0941E /* BugsnagReactNative.xcconfig */, - 2E2B626E47713C2DEB8148BA80D9F138 /* BugsnagReactNative-dummy.m */, - FD5655BD93B9D77FEF9EFEE3EE93F3A6 /* BugsnagReactNative-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/BugsnagReactNative"; - sourceTree = ""; - }; - 731CCA533413486A5017C5F45348BE34 /* react-native-orientation-locker */ = { - isa = PBXGroup; - children = ( - 857E762FD5E4040F49FB20F21D656487 /* Orientation.h */, - 0CDD68563C68630F690340A3F44FCADF /* Orientation.m */, - A845D3FF3EF01697BA9A78146D2004A0 /* Pod */, - 9263BE8DE7CEDF3D92831474EE4412B9 /* Support Files */, - ); - name = "react-native-orientation-locker"; - path = "../../node_modules/react-native-orientation-locker"; - sourceTree = ""; - }; - 74EA806A637F908FCF9291CAAB2AC99B /* jscallinvoker */ = { - isa = PBXGroup; - children = ( - 71F4B7C09F01C5DE42516579F63E0ABE /* BridgeJSCallInvoker.cpp */, - E6E37CDB86211745708FD39023FEA705 /* BridgeJSCallInvoker.h */, - 25F73B3BFFF7C0486C9D4B4E4DA9572C /* JSCallInvoker.h */, - ); - name = jscallinvoker; - sourceTree = ""; - }; - 7608AC1BAFF9991F61A7036E8460C5F2 /* Pods-ShareRocketChatRN */ = { - isa = PBXGroup; - children = ( - D43DE3DC7792E0B353371829F68C0FFD /* Pods-ShareRocketChatRN-acknowledgements.markdown */, - BFA3D1106C1072A2B733533A2E770794 /* Pods-ShareRocketChatRN-acknowledgements.plist */, - 20EB67591180BD14936DAED287A3BFF0 /* Pods-ShareRocketChatRN-dummy.m */, - B65D1E0F95214E2E1AC4F513C1753CC7 /* Pods-ShareRocketChatRN-resources.sh */, - 49A51F5FBBCFD3F02638D5838DF22338 /* Pods-ShareRocketChatRN.debug.xcconfig */, - 527CD81DF520880893DE8021CD41E619 /* Pods-ShareRocketChatRN.release.xcconfig */, - ); - name = "Pods-ShareRocketChatRN"; - path = "Target Support Files/Pods-ShareRocketChatRN"; - sourceTree = ""; - }; - 76A751CD9C29E3A03B36E20E0DF4C932 /* RCTLinkingHeaders */ = { - isa = PBXGroup; - children = ( - DE5790F233E490A47638DABB61B5B9C3 /* RCTLinkingManager.h */, - ); - name = RCTLinkingHeaders; - sourceTree = ""; - }; - 7719E5A0BEAB7225A153F3938E38DA4D /* BaseText */ = { - isa = PBXGroup; - children = ( - 216C4A3EEEEA592CE9AD2CD1077DD9A5 /* RCTBaseTextShadowView.h */, - EB476B4FF06F149CDC7E60CA6FA4B4B6 /* RCTBaseTextViewManager.h */, + 058883D577F30E4210855B6DE5283D8B /* RCTBaseTextShadowView.h */, + 72C7372FB61DF360A86BD59E40639D4D /* RCTBaseTextViewManager.h */, ); name = BaseText; path = Libraries/Text/BaseText; sourceTree = ""; }; - 772C71F3173705218FF53F95C071CDE0 /* UMModuleRegistryProvider */ = { + 8BC7B8D1E693EF5D8C8C84492C8695E5 /* React-RCTActionSheet */ = { isa = PBXGroup; children = ( - 7162B9122B699629FFC39E4D5BDADCAC /* UMModuleRegistryProvider.h */, - 71E619A867B9B83E3789B54166C285F7 /* UMModuleRegistryProvider.m */, + 40E6B5A6BDDAA03117709635756F3EF8 /* RCTActionSheetManager.m */, + 4AB8D02D54DC2F5DD29DC2DC5374DC13 /* Pod */, + 625FAD8FF46231A1501E2FF1FD012C9C /* Support Files */, ); - name = UMModuleRegistryProvider; - path = UMCore/UMModuleRegistryProvider; + name = "React-RCTActionSheet"; + path = "../../node_modules/react-native/Libraries/ActionSheetIOS"; sourceTree = ""; }; - 77D7A6DACCA2327E48F765FDD2A4B172 /* RCTVibrationHeaders */ = { + 8C20CEE22212DDDE842C26FDE6ADA2CA /* CxxBridge */ = { isa = PBXGroup; children = ( - 65BB7F720816F7216E1F891DEC5A5873 /* RCTVibration.h */, + DA37F07249FFF2BB589D466D199150AB /* JSCExecutorFactory.h */, + AC97BD08333B42572B8A6C3044067098 /* JSCExecutorFactory.mm */, + 2A3048046DC7897AAB75AF6BF02C67B3 /* NSDataBigString.h */, + 4E637E78DD99F45D9C9882E5AB714206 /* NSDataBigString.mm */, + B98F6E1E04F546506E19AD6C416C6AF0 /* RCTCxxBridge.mm */, + 91DEC9A923CC79D8CD146271B6CC8A86 /* RCTCxxBridgeDelegate.h */, + C8FA897C0F8EC6BD805E0F68B392A931 /* RCTMessageThread.h */, + 7E16A5B4856F88F15343D19693C196B5 /* RCTMessageThread.mm */, + A0B4A06232EC276DAB783F7F1D6C5866 /* RCTObjcExecutor.h */, + 7BC202C24CE9064F5A6E70A82A6B382C /* RCTObjcExecutor.mm */, ); - name = RCTVibrationHeaders; + name = CxxBridge; + path = React/CxxBridge; sourceTree = ""; }; - 77E5437F2565ABF89F8E76F4530936A3 /* Support Files */ = { + 8C7CBC84423331242D42A6B6FE6C9777 /* Modules */ = { isa = PBXGroup; children = ( - 746D3D964458B43BFFB90666578396AE /* FirebaseCoreDiagnostics.xcconfig */, - AE40F8A55B4E0868CA1A35733818234B /* FirebaseCoreDiagnostics-dummy.m */, + 9E7A149307A393ACABD36837C91C2C61 /* RCTAccessibilityManager.h */, + 337AE88C9B8A03E812F00B5F40AA869E /* RCTAccessibilityManager.m */, + 502610B461EA2D1A026F2B01243AC74D /* RCTAlertManager.h */, + 6976F471728D539A443214A0E81DB102 /* RCTAlertManager.m */, + D11A35222301EF61F70E1A10283069EB /* RCTAppState.h */, + 6FA43C006EA2B6CF298FE00569849C4E /* RCTAppState.m */, + 39AF1DB378623B241A1961DA51117BFE /* RCTAsyncLocalStorage.h */, + 9AA5BE73650483C36940FEB822F5FEFF /* RCTAsyncLocalStorage.m */, + 69E73D0D712ABA9F6DEED0F86AF52EF7 /* RCTClipboard.h */, + 4708508DB230A1AFFC0276E5EB866F98 /* RCTClipboard.m */, + D419A92B054E897166C3CEFC94079EF0 /* RCTDeviceInfo.h */, + 0798B90710BEE010D41A8725BE3E757B /* RCTDeviceInfo.m */, + B5CC36CEC47C85A96A7807D3215B2C99 /* RCTDevSettings.h */, + 8F20CC66C09FA1EA57D7754B739BB3FF /* RCTDevSettings.mm */, + 7E0D984C4268C8982372D81B491862FC /* RCTEventEmitter.h */, + 3D52B9F53E90E46BB7BC2868DCD0ED49 /* RCTEventEmitter.m */, + D965544614F05819D78EF98836617D24 /* RCTI18nManager.h */, + E1E29DDBDC1101D3DCDB77C88EA79F65 /* RCTI18nManager.m */, + 52D8B368C340C9FE894310C8E9484B1A /* RCTI18nUtil.h */, + EF788968BF757270E8F0956A01A609CE /* RCTI18nUtil.m */, + 9496F8ADFC18E0AA6076F1A696215AC9 /* RCTKeyboardObserver.h */, + 33E42C181DD42D9C5AB95F31B1DF9AC0 /* RCTKeyboardObserver.m */, + 624FC0F34AA0E8556C317C42E134D426 /* RCTLayoutAnimation.h */, + 61D39CC515F185885887678EAC477089 /* RCTLayoutAnimation.m */, + 9EC6719490272E2EB87C07A55669DB19 /* RCTLayoutAnimationGroup.h */, + 4CEDF8BB61428E7B1CA483A5342D87C7 /* RCTLayoutAnimationGroup.m */, + 3868C09A16BB72A9B708B4819E23937A /* RCTRedBox.h */, + 7F64B8AA477693BD691861C5CB28A033 /* RCTRedBox.m */, + A81EA97901E6916351212989A5228AB5 /* RCTRedBoxExtraDataViewController.h */, + D35CE8C23A2ACF2D9D8D4E8E0C72988D /* RCTRedBoxExtraDataViewController.m */, + 8D8B9F732954D86D82A441E9B1D642CD /* RCTSourceCode.h */, + D29CB606B28145D0F34A30E8E92C3AE6 /* RCTSourceCode.m */, + F75CC06C0F97AC2F75B76FDB40EFFA9D /* RCTStatusBarManager.h */, + F9BCF129B5681ADA1FABF4465D5F7084 /* RCTStatusBarManager.m */, + 76FE63E3F928B76B0B0BAE72B3D43FF7 /* RCTSurfacePresenterStub.h */, + B0A171BA2CE9A319FDABBC541555819E /* RCTSurfacePresenterStub.m */, + 2AB47831C397F347C7653E5A48316330 /* RCTTiming.h */, + BA73AE15A22623217F88D04BA9686F52 /* RCTTiming.m */, + 75B4456387FD1F49F14C09F38D397A6E /* RCTUIManager.h */, + ADE425CCA9AB4117146451CCF94F2C89 /* RCTUIManager.m */, + E3D450362CFE85BDCA37A5CBBA9C6911 /* RCTUIManagerObserverCoordinator.h */, + 071D90A52285C5F4B905B6DD3028570D /* RCTUIManagerObserverCoordinator.mm */, + 30C43C73342C9D6D4D64749F10018473 /* RCTUIManagerUtils.h */, + 6621CD50302794812AD1F7FF9D0322B6 /* RCTUIManagerUtils.m */, + ); + name = Modules; + path = React/Modules; + sourceTree = ""; + }; + 8DDE3E86EDA2D6AE1A6843AFAEAF9573 /* Inspector */ = { + isa = PBXGroup; + children = ( + 5739CF4CDC78B4383E371AB297932F20 /* RCTInspector.h */, + 9C9112F2E8C6E60647D2E2E444624B85 /* RCTInspector.mm */, + 18B6C522760E81DDDAD1505DBD7AFF87 /* RCTInspectorPackagerConnection.h */, + 5E3E534D5295A28045589D6BEA240E6B /* RCTInspectorPackagerConnection.m */, + ); + name = Inspector; + path = React/Inspector; + sourceTree = ""; + }; + 8E9C320C4E8F816CA2D95CD6E65F4BF3 /* UMFileSystemInterface */ = { + isa = PBXGroup; + children = ( + C54D8CFA029D874C176B40062B3D89CA /* UMFilePermissionModuleInterface.h */, + 50237226CD6FFA21014E95BA780DACE0 /* UMFileSystemInterface.h */, + 42AED56E50C010F8D77AA2DA49C14D2B /* Pod */, + D8DEB1B3CAFFA0C1972EB62B79371208 /* Support Files */, + ); + name = UMFileSystemInterface; + path = "../../node_modules/unimodules-file-system-interface/ios"; + sourceTree = ""; + }; + 8EE59F4CD63FDEC3C8A02E47D3D1B10E /* Support Files */ = { + isa = PBXGroup; + children = ( + 15B1B18F7BCA23D317AEB00634D5E7E0 /* react-native-keyboard-input.xcconfig */, + 5C89D7ED4E2CCB53B6DA2BB7D65A67DD /* react-native-keyboard-input-dummy.m */, + 81919368713931AEDC52362FE4CFCE27 /* react-native-keyboard-input-prefix.pch */, ); name = "Support Files"; - path = "../Target Support Files/FirebaseCoreDiagnostics"; + path = "../../ios/Pods/Target Support Files/react-native-keyboard-input"; sourceTree = ""; }; - 78A51F897E0646FCE69A43B81F775654 /* Singleline */ = { + 8FD3406EFE24F28F50867946EEB4450B /* Pod */ = { isa = PBXGroup; children = ( - A93D3241B9A61C0E3AF6A18EE3C01E28 /* RCTSinglelineTextInputView.m */, - 314AF268C02A61E0C1A90E62F45FAEC6 /* RCTSinglelineTextInputViewManager.m */, - 5CCC9736F50544996E747EC71861E462 /* RCTUITextField.m */, - ); - name = Singleline; - path = Singleline; - sourceTree = ""; - }; - 791392B9B9DBCC6FCB0871AC147CFBE9 /* Support Files */ = { - isa = PBXGroup; - children = ( - 000FC0F253268189A87D3FD6261B5CFA /* rn-fetch-blob.xcconfig */, - E57B395FE7991C5C011CFD925B3A213C /* rn-fetch-blob-dummy.m */, - B4A991087FF6F1448365F884562EF0BB /* rn-fetch-blob-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/rn-fetch-blob"; - sourceTree = ""; - }; - 79F5501C66460D5A5B0C41CD2329C92D /* SurfaceHostingView */ = { - isa = PBXGroup; - children = ( - 5EAF08B8553B90B6830AAEA9BF90A019 /* RCTSurfaceHostingProxyRootView.h */, - B8584EC9E59E9179ECDECB66BCB46139 /* RCTSurfaceHostingProxyRootView.mm */, - CA67F08689BB731E0B8CA7E994A94636 /* RCTSurfaceHostingView.h */, - AF2C13F10534DCE134F4B309C3D6B264 /* RCTSurfaceHostingView.mm */, - 830855003F2BC474FB1CEAB2DF280F62 /* RCTSurfaceSizeMeasureMode.h */, - 46207D01EBBD77F44870058DD2D9337B /* RCTSurfaceSizeMeasureMode.mm */, - ); - name = SurfaceHostingView; - path = SurfaceHostingView; - sourceTree = ""; - }; - 7A173DF295950FB4E46D7E7282A87DE2 /* CxxModule */ = { - isa = PBXGroup; - children = ( - 6987CC8C81C7008AD5DA1E776395751C /* DispatchMessageQueueThread.h */, - 2273064ED902295D49232D5DFA4A84BF /* RCTCxxMethod.h */, - AAB0BC80CE51061ADC08C2B9A74E6B6D /* RCTCxxMethod.mm */, - C789D6FA9773A57091FEF46BF5B246F2 /* RCTCxxModule.h */, - 1E4801D6C28D8BC6F2C85BA7A6CB2434 /* RCTCxxModule.mm */, - 75A730B0265F6D513F27FEB743FAA8A1 /* RCTCxxUtils.h */, - B759F1B53D8E8BC2586922278DA8B9C3 /* RCTCxxUtils.mm */, - B78E97CB66220ED2682AD60E2CFDE2C9 /* RCTNativeModule.h */, - 750A887CC9515799F336697AF4FFAEEC /* RCTNativeModule.mm */, - ); - name = CxxModule; - path = React/CxxModule; - sourceTree = ""; - }; - 7A72C780DA45812C85D2D2D9B7FE6336 /* Pod */ = { - isa = PBXGroup; - children = ( - 777877C6DC0158B39117BB5352D176FF /* React-Core.podspec */, + 86CD56D84B97BE4DB81C5DBAC8C0B8BB /* React-RCTImage.podspec */, ); name = Pod; sourceTree = ""; }; - 7AC84D1E5307D83A20E6F5D058D507D1 /* Pod */ = { + 908DD4DC97B1BF0AC8DBAC0A0C2CC6DE /* notifications */ = { isa = PBXGroup; children = ( - 6399F0FA86B6121DF1FA4A650E02B814 /* UMFaceDetectorInterface.podspec */, + 14227FAAE815AD5DE3A7008DC8C3F31E /* RNFirebaseNotifications.h */, + 7B4CE24F6E1081A73953291129C65004 /* RNFirebaseNotifications.m */, ); - name = Pod; + name = notifications; + path = RNFirebase/notifications; sourceTree = ""; }; - 7AF2AFA2C984AA8601870E89472EE2CB /* Pod */ = { + 90FCB415BED4848548B3B66B60124569 /* RNFirebase */ = { isa = PBXGroup; children = ( - A317CBD38AF6741347B409C06E5EAE8E /* Yoga.podspec */, + FE1964BB79974C13D7002EC611C003A2 /* RNFirebase.h */, + ADE63674E150D51CE53B28AEFA23359C /* RNFirebase.m */, + 8B4EE64ED82995E97CA320A712E8CBDE /* RNFirebaseEvents.h */, + EFD192F604D03272854B5E351BFAC8FD /* RNFirebaseUtil.h */, + 9616C625D92B8968CC0533A4CA4AE4A6 /* RNFirebaseUtil.m */, + B898FF0674107D7C7CFEEDCFBF7A63A5 /* admob */, + 55372375535F95651ABA24E3481D0980 /* analytics */, + 218CB7070D9FD14B6C24CA8B191610B1 /* auth */, + 1A18EAD319B798576B97B9678EDB2C85 /* config */, + 4ACE2A048E6729B2A42E0265260523E1 /* converters */, + CC9E4FEF1978DBDF894BAA50CEB1EB50 /* database */, + 3C33563BD7AFAEF8D12B35A08AF8CAD7 /* fabric */, + 3AD623D9DA1BAB6BC9895D4428C38246 /* firestore */, + 834BC0B5A785498CCE4848C041877A6F /* functions */, + 43CF339D7075F9E6CD613C86B905EECB /* instanceid */, + 9B7D20554E22E1C4CCF5659BB3146852 /* links */, + 2F7A2F7E340E5890C8E1047645B4F7D4 /* messaging */, + 908DD4DC97B1BF0AC8DBAC0A0C2CC6DE /* notifications */, + 50E42D2ABC83BE09BB42CBD788AAA7EC /* perf */, + 1A8CD8524066A5579B3037885D94597C /* Pod */, + C718804C9031CD08FCCE88B1105D910B /* storage */, + 41EAFE4A5D36EB625E314E306C1ED578 /* Support Files */, ); - name = Pod; - sourceTree = ""; - }; - 7C46F694651C7D860B74F6E6C24C23C7 /* Profiler */ = { - isa = PBXGroup; - children = ( - E18DC5B49169920EEA7A1AEE96BF56E6 /* RCTFPSGraph.h */, - 399FB2A30095FB474545D0C004D85B60 /* RCTFPSGraph.m */, - CABA644F0321E5D4E71EA4106921CB01 /* RCTMacros.h */, - DBEC2CEC9A177E5696E833D65F61FDF0 /* RCTPerfMonitor.m */, - BA39FCE7B7D6C4634079B04809C889B0 /* RCTProfile.h */, - DA0E29BE34AEFDE9C2D97AAB837674FE /* RCTProfile.m */, - DCF6521E5919CF003A5CA05DB1ECD2E0 /* RCTProfileTrampoline-arm.S */, - 20DD39159ED27E33EFB83B90B96BDE1A /* RCTProfileTrampoline-arm64.S */, - 2AE2B723F436453C6040D6D557661B98 /* RCTProfileTrampoline-i386.S */, - 295F044614A219B8CCD891FE7650B3B5 /* RCTProfileTrampoline-x86_64.S */, - ); - name = Profiler; - path = React/Profiler; - sourceTree = ""; - }; - 7C95DA71CEC87E4BA640419C2BFB1FA4 /* Pod */ = { - isa = PBXGroup; - children = ( - E79EAAD4694101F842E690C21DC221BB /* React-RCTNetwork.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 7D2CA84B05017CF0684C4FFFFDBBA5FF /* UMCameraInterface */ = { - isa = PBXGroup; - children = ( - 0EC1CB159386CB919070179891392053 /* UMCameraInterface.h */, - 2BC9C0EA39B307AE236CBF24C3473C4E /* Pod */, - F2FED0ED3FBC8CA078359C0FC1248886 /* Support Files */, - ); - name = UMCameraInterface; - path = "../../node_modules/unimodules-camera-interface/ios"; - sourceTree = ""; - }; - 7EF5C62967B7C207E85006B06828B379 /* RCTBlobHeaders */ = { - isa = PBXGroup; - children = ( - D1E699B565C85CBADC8A2C7F7725F5AF /* RCTBlobManager.h */, - 9331613AA7DCF2A30266E92812D8A152 /* RCTFileReaderModule.h */, - ); - name = RCTBlobHeaders; - sourceTree = ""; - }; - 7F1DB0B782DF5B0337C1236B44BB5BE8 /* Multiline */ = { - isa = PBXGroup; - children = ( - 04C381672D051C2816D59F6B5E2544F2 /* RCTMultilineTextInputView.m */, - EDD351E252D6E2DCABF20169A03E57AA /* RCTMultilineTextInputViewManager.m */, - 470EDB43F450ABDC1A6355125B14ECE1 /* RCTUITextView.m */, - ); - name = Multiline; - path = Multiline; - sourceTree = ""; - }; - 7F86DF399B8DB342D6BD33EBC85B772D /* Pod */ = { - isa = PBXGroup; - children = ( - E903A9F81509DB31EB1F37B4AF99BAEB /* UMSensorsInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 7FE4CE3CD20F1BD4D370CF78388CD2A3 /* Pod */ = { - isa = PBXGroup; - children = ( - B59940FDE0B917FE2080F8206495404A /* UMPermissionsInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 8049403D83EDC28AF39918F44671FFFC /* react-native-cameraroll */ = { - isa = PBXGroup; - children = ( - 7B476702B19503C1FDA97A6B38A5288F /* RNCAssetsLibraryRequestHandler.h */, - DA2D0AAF40394684FCAB3CB2A88A63EF /* RNCAssetsLibraryRequestHandler.m */, - EB10853BBA6FD236AA44C5772B7ECC42 /* RNCCameraRollManager.h */, - 21639BD503537EED7E1034A66B874387 /* RNCCameraRollManager.m */, - 4DAE5C781980F2693E87124939DF2A42 /* Pod */, - 0DAD9F1268C0D710813F1691F8503CDF /* Support Files */, - ); - name = "react-native-cameraroll"; - path = "../../node_modules/@react-native-community/cameraroll"; - sourceTree = ""; - }; - 80715483C02E66A5814CECF06BEF86ED /* SafeAreaView */ = { - isa = PBXGroup; - children = ( - 9DCE3FF459B64EAA9845981585067DB6 /* RCTSafeAreaShadowView.h */, - 263333326C416B9B57FC47BEC689ABA4 /* RCTSafeAreaShadowView.m */, - FE527001EC2F2CCA758ED3F7856D747B /* RCTSafeAreaView.h */, - 1AC9EBEA2723A60E109E0AB57C958FDE /* RCTSafeAreaView.m */, - 295D8D2CB6F24253C98550442634BE6F /* RCTSafeAreaViewLocalData.h */, - 7BF79865016F2E044F8B5FC7CB23BE1C /* RCTSafeAreaViewLocalData.m */, - 61C9B216C92568737B785186186A9B84 /* RCTSafeAreaViewManager.h */, - 2A87E4D5E2E4700D4A86435710A176C0 /* RCTSafeAreaViewManager.m */, - ); - name = SafeAreaView; - path = SafeAreaView; - sourceTree = ""; - }; - 81FC0AFBFD957FEFD16E02FD14046D89 /* Support Files */ = { - isa = PBXGroup; - children = ( - A7607780AD4D22BE1133EF77012BA770 /* UMBarCodeScannerInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; - sourceTree = ""; - }; - 8238AC90010A1E82556F68ACE52EC7AE /* Pod */ = { - isa = PBXGroup; - children = ( - 91DF8F577B3C4088DDE323C3FE6F5037 /* EXHaptics.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 82EE6AFC229C4A35B41D60B5164174EF /* Base */ = { - isa = PBXGroup; - children = ( - BF520FDCEC159D80E94AF5330E4341AD /* RCTAssert.h */, - 448B59004E76F8C9F4D3CAFC63076229 /* RCTAssert.m */, - 96371E20F6001DD2B4574720BC9BCCD8 /* RCTBridge.h */, - ABD85E9167567FF451D281EBDF949DE6 /* RCTBridge.m */, - 1C37418C0B0B572D6758F5424E172D58 /* RCTBridge+Private.h */, - 28542E33845F2AF8A588E35090C66E0A /* RCTBridgeDelegate.h */, - 47300C2767D9505399E305410CC4C7D0 /* RCTBridgeMethod.h */, - 6920C02A5F5956A0390264E640C0B9EF /* RCTBridgeModule.h */, - 280654FCBE0913DC54C6CDA78B5693CA /* RCTBundleURLProvider.h */, - 9973EB72F97B4F9251AE038CA9E02F89 /* RCTBundleURLProvider.m */, - 4C12D2F649FCE22A455888A1E969C491 /* RCTComponentEvent.h */, - DD82588AC2076B1662424883141FFD22 /* RCTComponentEvent.m */, - 3BC7539FB80F8BCBDEEB4E166A15036C /* RCTConvert.h */, - 1734A0AE6F9DF0BF468BAFEB7D430A3A /* RCTConvert.m */, - E36009054E1FFCB58DB9B3BB9714D549 /* RCTCxxConvert.h */, - 786146B866CF521A81994E9F50622913 /* RCTCxxConvert.m */, - 0E58C96CDA56F63E2CE4F0D73A23A121 /* RCTDefines.h */, - AFF34968982BDBCFB8E19B39698372B6 /* RCTDisplayLink.h */, - F67D7AFF559B16B61F8BA8EBD50F0484 /* RCTDisplayLink.m */, - 3B2099D4C757AAB0D9F2E350C5EB6328 /* RCTErrorCustomizer.h */, - A9F3D8CE3395292F3E662044022C8A65 /* RCTErrorInfo.h */, - BCF2345A2EA02A64F30B955F622EF579 /* RCTErrorInfo.m */, - FF3B4CF63FA866DA003B4BB5AE662AA8 /* RCTEventDispatcher.h */, - EFC4985609864B233AA0967A35A7475E /* RCTEventDispatcher.m */, - 8134670AC6F55EBB0F4E64BC6FF4CF72 /* RCTFrameUpdate.h */, - 3A66EDBB330981F3DA95B2EDA14F11CA /* RCTFrameUpdate.m */, - 8200216619F2108FD97AC1FF61DBE564 /* RCTImageSource.h */, - ADE6781E53EB3E67579C6B6C030FAC93 /* RCTImageSource.m */, - A00DE769931FC6DE829514A38AA058C2 /* RCTInvalidating.h */, - B6E7F6CFF7243FCCB557211BFBC39627 /* RCTJavaScriptExecutor.h */, - 08063712435A35B0888B9B7E6FC2C8DA /* RCTJavaScriptLoader.h */, - D2E953FB7D2B868CC851F5A3913258C6 /* RCTJavaScriptLoader.mm */, - D800E2B3FE000AAFFF8124764DAF574B /* RCTJSStackFrame.h */, - 487E750A8155B4038C4510D12BC7FA1A /* RCTJSStackFrame.m */, - D8FFC5920FC0235633AB2A50C0700C3F /* RCTKeyCommands.h */, - F373606318091C64D597999803ADB485 /* RCTKeyCommands.m */, - E082D662966C508D951D9CD0D9C2EAEE /* RCTLog.h */, - 7A06B4F1CF0684015B0878877963A935 /* RCTLog.mm */, - AE6E23B77F7FD55BED26239ACD359A3F /* RCTManagedPointer.h */, - 0E19EE3FCE03EAE838447F0E063168D9 /* RCTManagedPointer.mm */, - 67C4AE197F2F4270AD29AE458014D5D3 /* RCTModuleData.h */, - 0E1C9947A2D5849DD68B9C1005A42612 /* RCTModuleData.mm */, - 3CC8A5E1F7160E71E4A976FD82B0814B /* RCTModuleMethod.h */, - 13187CC7C3D18C84AA6A39297545EC1C /* RCTModuleMethod.mm */, - 20D96057E8D38A7B6DA9AB4D27A89576 /* RCTMultipartDataTask.h */, - 7F61848737EFDD7070BDC3E278979E0B /* RCTMultipartDataTask.m */, - CB341B9DEC90F07ABD0A89BE587702B9 /* RCTMultipartStreamReader.h */, - AD20E09F0FE02C9FAA4E0DDE1869D0BE /* RCTMultipartStreamReader.m */, - 4FFF00649E4CAF904EB1C591DFA85238 /* RCTNullability.h */, - AC73932DB13C2FFCB3452CFEEAC680A4 /* RCTParserUtils.h */, - 217E1597E9C685C57A7E9ED756BD6EF2 /* RCTParserUtils.m */, - 28EA5D81C0557F3EC54098EF5A43E525 /* RCTPerformanceLogger.h */, - B773A8910CCA99ECC89E2A7DA066B7E2 /* RCTPerformanceLogger.m */, - DB2062E0D7315AA34648E455A6E299B0 /* RCTReloadCommand.h */, - 7F6C6C7719EA9A81F7D8C377F9661426 /* RCTReloadCommand.m */, - 4E91991D40236A446717C05DB53A8FDB /* RCTRootContentView.h */, - CAFE35CE5A47DAA149A25AFFFF772FC4 /* RCTRootContentView.m */, - F826F239F1818333D62B2F541F75E4C6 /* RCTRootView.h */, - FDE9126A93A984EF18E41B9D0692BFBC /* RCTRootView.m */, - ABC668DC426F8332543A65F54FCF281D /* RCTRootViewDelegate.h */, - F8D25CB766616C651F32FBDCF84AEEE4 /* RCTRootViewInternal.h */, - FAD2F71B23C0274678FD7F4994680EA9 /* RCTTouchEvent.h */, - C77C24556A53C47DF40E0A8E02AD3723 /* RCTTouchEvent.m */, - 552C78C6484E5AAA46853C4A11A084C9 /* RCTTouchHandler.h */, - BB52110DE8E2349D608ED3EB4782BAC7 /* RCTTouchHandler.m */, - AC76311E978D58E169180D737A245C5D /* RCTURLRequestDelegate.h */, - B207D4D004C38866ED1F31D7485BF0EE /* RCTURLRequestHandler.h */, - DD271C1F5DDAE181D2540027CC7958AB /* RCTUtils.h */, - 2C69B50911948AFF3F4A5C5FBD32B2C6 /* RCTUtils.m */, - 2E9EE5BA8DB4608918A7792F0BC4BDA8 /* RCTVersion.h */, - 06BC4A59920333D19413DD86CB3696F3 /* RCTVersion.m */, - C8C4F6CD61633AE4D2DF0A28EF27B590 /* RCTWeakProxy.h */, - 9FFC82B5E27A8347992ABB24503A3FE1 /* RCTWeakProxy.m */, - 10706D9F20449B801120AB8C1CF549BB /* Surface */, - ); - name = Base; - path = React/Base; - sourceTree = ""; - }; - 84EF0CCF30797383C2C7E81B777FC51D /* Support Files */ = { - isa = PBXGroup; - children = ( - 1BE77D3218DD612963BA380A7A6E2414 /* React-RCTNetwork.xcconfig */, - 4587B150FD3526CFF08F6177E7B34E5E /* React-RCTNetwork-dummy.m */, - 91001571139C2588EED45CB2B80C533A /* React-RCTNetwork-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTNetwork"; - sourceTree = ""; - }; - 85D426E43C4EC03F441D348E488B4C77 /* rn-fetch-blob */ = { - isa = PBXGroup; - children = ( - 8A1C07A4A6A34D1CD9D4BB5D2516C977 /* IOS7Polyfill.h */, - C56EBCBD2F78347186FCB4464E9090B1 /* RNFetchBlobConst.h */, - EA06FB90254188CC7BD42C9ED915003F /* RNFetchBlobConst.m */, - 0036AEE678787725C977E1A36F674AD6 /* RNFetchBlobFS.h */, - ADB0E98F4BB29FE3E50EACF5482D4E73 /* RNFetchBlobFS.m */, - EC8A0114499BD3AA4D7BFD2A78FA01A3 /* RNFetchBlobNetwork.h */, - 6FE326C56F88E3DEB8D0E72F3704F5FC /* RNFetchBlobNetwork.m */, - 542B8057499DAA46276417BD7A79E572 /* RNFetchBlobProgress.h */, - 9C81C06F9CC5488C4F528E8CEEA36099 /* RNFetchBlobProgress.m */, - D0F943C780C47A9EBF2DC56C5DC75B33 /* RNFetchBlobReqBuilder.h */, - DF1715F2F79E73DD52ADEA3D557A2037 /* RNFetchBlobReqBuilder.m */, - 5DB94419CD67EC0E57F01CDB71BBEDFF /* RNFetchBlobRequest.h */, - CB2FAC3D6885A0D52E1EF69887F9E7BE /* RNFetchBlobRequest.m */, - 8D040F858ED73E05BC3142B18E1198AE /* Pod */, - 379037E9B123FC6C1C797A394B608FBB /* RNFetchBlob */, - 791392B9B9DBCC6FCB0871AC147CFBE9 /* Support Files */, - ); - name = "rn-fetch-blob"; - path = "../../node_modules/rn-fetch-blob"; - sourceTree = ""; - }; - 87BB553DDC920EB60E1136B01273A41A /* Video */ = { - isa = PBXGroup; - children = ( - 07CFB0E0B4BDEDA2A38B1B0CBE538C1A /* RCTVideo.h */, - 3D55E29C92A3F4B1A45380158662A057 /* RCTVideo.m */, - A086905870854E2803180C1E248E8B3E /* RCTVideoManager.h */, - 5A2F7C5A9ADE12C4E3B2379C05BAEF3D /* RCTVideoManager.m */, - 716A1455A0AB1C6D01F7DD42CCE95CA5 /* RCTVideoPlayerViewController.h */, - F3F09E1E0D4A503E5A78EF430C3B3646 /* RCTVideoPlayerViewController.m */, - D8EBF5FD098AF611C3BC2F90ED7D8C53 /* RCTVideoPlayerViewControllerDelegate.h */, - 48517FA6EAE6675023544BDCE0566F22 /* UIView+FindUIViewController.h */, - 20395FB1CD366D878DCC8C5C4C999A82 /* UIView+FindUIViewController.m */, - ); - name = Video; - sourceTree = ""; - }; - 88EE4D090D09DB08440B3F15009A7879 /* RCTWebSocket */ = { - isa = PBXGroup; - children = ( - 57857EA05E98C1B928FC3C5A62CA0C85 /* RCTReconnectingWebSocket.h */, - 417E8BFE0291B4472FA838818899FEA9 /* RCTReconnectingWebSocket.m */, - 3149F11E1549C357BC99FB243454991D /* RCTSRWebSocket.h */, - F24BC628BCF86EB456B021B4CC9BEDBC /* RCTSRWebSocket.m */, - 6F63C595C2EA0A71DB2735C63EAFCC1D /* RCTWebSocketExecutor.h */, - 530D57AB3979EFD0DAC18E8B0387EB2D /* RCTWebSocketExecutor.m */, - 9143C5908FB4D8E74749679BC33C2070 /* RCTWebSocketModule.h */, - 5611AA51C8CFA27C4D5DDB621C88F655 /* RCTWebSocketModule.m */, - ); - name = RCTWebSocket; - sourceTree = ""; - }; - 8963165DEE707C02723347653A333C92 /* turbomodule */ = { - isa = PBXGroup; - children = ( - 204E97715CEA215ABFE6E1BB7D3916AB /* core */, - ); - name = turbomodule; - sourceTree = ""; - }; - 8B0A7DE9DB41FBE5A459F89252C015E5 /* messaging */ = { - isa = PBXGroup; - children = ( - A59C301473B1E1E55A34B7372D5F6304 /* RNFirebaseMessaging.h */, - C814CFC1A87CD8295FCE71C6CCC1F35C /* RNFirebaseMessaging.m */, - ); - name = messaging; - path = RNFirebase/messaging; - sourceTree = ""; - }; - 8B711B28DCA40AE985CB0C7E8857587A /* storage */ = { - isa = PBXGroup; - children = ( - A93642CD6648E82CEE09E21F713FFDF8 /* RNFirebaseStorage.h */, - DA5F0022896D247ADE85F1FC69ECDB7C /* RNFirebaseStorage.m */, - ); - name = storage; - path = RNFirebase/storage; - sourceTree = ""; - }; - 8D040F858ED73E05BC3142B18E1198AE /* Pod */ = { - isa = PBXGroup; - children = ( - 1978F5D444E91A684F848FA06E0FED6F /* LICENSE */, - 285A9798A2D86767D7A292FE1D9CE722 /* README.md */, - CCEBFB155CE3EC65C612FD39B65A5D76 /* rn-fetch-blob.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 8EBA10E27A934BAE7C8A29230A6FC712 /* React-RCTVibration */ = { - isa = PBXGroup; - children = ( - 5C1D1BE7C9966B221DE569ECEB4D3CF2 /* RCTVibration.m */, - E6070ED36DE72017F11D066978EC9B4E /* Pod */, - 5606C0BBFD6B8A7C7FF8DDAB4B1641C2 /* Support Files */, - ); - name = "React-RCTVibration"; - path = "../../node_modules/react-native/Libraries/Vibration"; - sourceTree = ""; - }; - 906D040FAF8C08FE23CCFBFAFDB1A790 /* UMTaskManagerInterface */ = { - isa = PBXGroup; - children = ( - 1C19A9D6A260ADCDABA23FB407EF7B70 /* UMTaskConsumerInterface.h */, - B8490484C45BA8C5C92E38C7DC4749EB /* UMTaskInterface.h */, - E260163F6DC25EBEFFE6AD70DF5B209C /* UMTaskLaunchReason.h */, - 8281E77D7E53A625F1869EB290DB199C /* UMTaskManagerInterface.h */, - 69934BE6347DAEBFD2E16F9193359768 /* UMTaskServiceInterface.h */, - AC6C578E7DE2F96B25CEBC8591AE69CD /* Pod */, - C0FFA12C7BA90E2FACA6D09F6F4876A4 /* Support Files */, - ); - name = UMTaskManagerInterface; - path = "../../node_modules/unimodules-task-manager-interface/ios"; - sourceTree = ""; - }; - 90BB7544FD08C32FFC06A1F992914AFD /* Pod */ = { - isa = PBXGroup; - children = ( - B22E637E3FC4550D0FEFD5C1684784B4 /* LICENSE */, - 7FB101EFBA0B5E1ECE4294538126A463 /* README.md */, - D877708DFC8875A2D8659AB265506677 /* RNImageCropPicker.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 90E40869C55D1CE3290FB28646FDCD05 /* Support Files */ = { - isa = PBXGroup; - children = ( - C0D61DC80278A4BBC9BA7185A8F3A0B1 /* React-cxxreact.xcconfig */, - 839A00AACC59C72809D6413C1673766E /* React-cxxreact-dummy.m */, - 55B22EB897B152DDBA298C12D3ECE6EC /* React-cxxreact-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-cxxreact"; - sourceTree = ""; - }; - 91221B945E10E6FC6AEAE1FC8479A232 /* UMViewManagerAdapter */ = { - isa = PBXGroup; - children = ( - 3755593CDB9E2AD6966475C8A7F9414F /* UMViewManagerAdapter.h */, - F373098BBF8F71646B24E94909B78342 /* UMViewManagerAdapter.m */, - ); - name = UMViewManagerAdapter; - path = UMReactNativeAdapter/UMViewManagerAdapter; + name = RNFirebase; + path = "../../node_modules/react-native-firebase/ios"; sourceTree = ""; }; 9160F20DFF7DC7F1CACEE969035ACE20 /* Pods */ = { @@ -10790,132 +10675,183 @@ name = Pods; sourceTree = ""; }; - 926212A0AEF581C6876E4164C0749DE7 /* UMModuleRegistry */ = { + 9191BDCF2CCBF32FF82A40EB7A711AA0 /* RNReanimated */ = { isa = PBXGroup; children = ( - 1C90C59259D92D210C0F029BED26A1B7 /* UMModuleRegistry.h */, - 6812983EE2AFE8C95A06E38C75B88694 /* UMModuleRegistry.m */, - 3D951480F892BE81EC44F26A081C5205 /* UMModuleRegistryDelegate.h */, + CB00B9C1487A989AEB34D4E8BA7371F0 /* REAModule.h */, + AD3109680E3C1C5D2D4F6F6E043B9C7C /* REAModule.m */, + 840D870AFD9819EB4C229B9AA8AD9807 /* REANodesManager.h */, + 5D2769D9DB4B1CBD4E7DB9C6999667E1 /* REANodesManager.m */, + A0DD529EAFD79B64612923DFA2085A7D /* Nodes */, + DDDE51211789C88B2A3B31BC8D030F15 /* Pod */, + 5489BBE270FCBACF4317ACDD4A5E0358 /* Support Files */, + FC2C423674CE9AAA49F583CD0276499E /* Transitioning */, ); - name = UMModuleRegistry; - path = UMCore/UMModuleRegistry; + name = RNReanimated; + path = "../../node_modules/react-native-reanimated"; sourceTree = ""; }; - 9263BE8DE7CEDF3D92831474EE4412B9 /* Support Files */ = { + 91FA45A16A71185F42327D2AA3AE9A3A /* Source */ = { isa = PBXGroup; children = ( - 8C1B775426912FC023387FF831D96595 /* react-native-orientation-locker.xcconfig */, - C5F1A58BB6ED4B9FA7894540D6B6095B /* react-native-orientation-locker-dummy.m */, - A9B6E9D6AA56035FBC360658336093BC /* react-native-orientation-locker-prefix.pch */, + 294B7B117A54E956E4C3C0D7547DCC63 /* BSG_KSCrashReportWriter.h */, + F1AF26638D4F4A5094918242AACCFA05 /* BSGConnectivity.h */, + 1F2DA6A44AB5BE316DEEBF16FF0B5E96 /* BSGConnectivity.m */, + 61935962D316655D08F4C0C658529A2B /* BSGOutOfMemoryWatchdog.h */, + E0B547458839A360641662CF36531F72 /* BSGOutOfMemoryWatchdog.m */, + B2FF970C74101530C9A7D48B65A4F84C /* BSGSerialization.h */, + 1FB321404EF961390E06B73C021A358C /* BSGSerialization.m */, + 648EFD12C8881B842B22AA55F3DC4FE9 /* Bugsnag.h */, + F6B99648326FDB329C014550E639277A /* Bugsnag.m */, + 2D3B5DFF6CDCE9E34DCD31DCD94AFC08 /* BugsnagApiClient.h */, + EFFE34F8E17395B29CF1438DC93C6FEC /* BugsnagApiClient.m */, + 67DBF913CE88380D78DC6C7EA7707F76 /* BugsnagBreadcrumb.h */, + B227F9FBEF5FCD2024E1ED599955D36D /* BugsnagBreadcrumb.m */, + 78DCB97C2C0B300A6C7FAEE9170F900E /* BugsnagCollections.h */, + F15541AFEE0AAB9CC4B33C8D9ACE40B8 /* BugsnagCollections.m */, + 50016C1070EA933A214FF69663C622FE /* BugsnagConfiguration.h */, + 865875386FB2559918C6689786CF4307 /* BugsnagConfiguration.m */, + 1BCE5F1C5D4DF02A3D6824D9A0B4347E /* BugsnagCrashReport.h */, + E0CFCA19099474C4FB8877DE89AE37CF /* BugsnagCrashReport.m */, + FF2D5D8CC1056BBA90C406A003EF23EE /* BugsnagCrashSentry.h */, + 4E74D502DF45C3DB6C2002E30237D083 /* BugsnagCrashSentry.m */, + A3D30A327658332768723A3C7A5AD074 /* BugsnagErrorReportApiClient.h */, + 5780B4F8BC5641AAB90E5090C945C115 /* BugsnagErrorReportApiClient.m */, + 1FF59804677A068BCFC8092661D8A2E5 /* BugsnagFileStore.h */, + 43CF00C5BF0D4947F59761AEBD7F68AB /* BugsnagFileStore.m */, + C70418FD985ABB340521F3E3B73FD6B9 /* BugsnagHandledState.h */, + F5F3B97417BD3C97C6BBFD6BDC54FED8 /* BugsnagHandledState.m */, + 96994F4ACDF019E0D9595D3C51B92406 /* BugsnagKeys.h */, + EE4BB4E7E0A00A40A77D9D5C97FE5D0F /* BugsnagKSCrashSysInfoParser.h */, + 1706E659D23E02AB43A00E255ED2B3D0 /* BugsnagKSCrashSysInfoParser.m */, + 6C977153EE830FF4DF8C2637EB155FC4 /* BugsnagLogger.h */, + E22F88CAA43045F32AF78CAF32BD7AF4 /* BugsnagMetaData.h */, + C01FB8A779A3445EFD23654B3630937D /* BugsnagMetaData.m */, + 538BC0B0037435C15B566E75E8D2C7FC /* BugsnagNotifier.h */, + B98282A370896C9527343A2802D27930 /* BugsnagNotifier.m */, + 9E822F4CDCF4DB122075F36B3348CB32 /* BugsnagSession.h */, + 9608D8A2D0AEE0A6A888D2E2C7E4342D /* BugsnagSession.m */, + CE263CBE0E4D45E11B34822EEB6F179A /* BugsnagSessionFileStore.h */, + 82B7FDA33841430FAECFEB78091A9B83 /* BugsnagSessionFileStore.m */, + 3E95DBCAC6C998F70DC53712A6BECC62 /* BugsnagSessionTracker.h */, + A2A6138081D3600CEEF94F4879B26747 /* BugsnagSessionTracker.m */, + 2CAD3E89099CF2EC94DA2040159C4FB1 /* BugsnagSessionTrackingApiClient.h */, + A949256D0826A4CB0C7A208C50FFE3E8 /* BugsnagSessionTrackingApiClient.m */, + 12B539A266AA947F50A5C2AA6BD5C8AA /* BugsnagSessionTrackingPayload.h */, + D69E6F757132D77434CCCF83F16CEB51 /* BugsnagSessionTrackingPayload.m */, + A08C132DEDA462010F5B82CC4EFD99A4 /* BugsnagSink.h */, + B7339489EE324E550C089F6B24D990FD /* BugsnagSink.m */, + 93ADFE4CAD9451B1B196CECC916633D8 /* BugsnagUser.h */, + EF1B8A56E41BE51A02DB11D725652A30 /* BugsnagUser.m */, + 7CA72CCD11307A621D3F237636E253F4 /* Private.h */, + DB812DDD4FBD4840842D56B53C970284 /* KSCrash */, + ); + name = Source; + path = Source; + sourceTree = ""; + }; + 92126A89C3B77666F06E0C70D9787A3A /* Video */ = { + isa = PBXGroup; + children = ( + 9973454611F684DDCF713365145BC4F6 /* RCTVideo.h */, + 1F9BF9B60B65C4862F9EAB875CF41129 /* RCTVideo.m */, + 77258C342D4729EE4CF05D804A6056E8 /* RCTVideoManager.h */, + E8CD09B1F03524B84AE162118F5DD20C /* RCTVideoManager.m */, + 8B139C6C451896FB33A71909257B218F /* RCTVideoPlayerViewController.h */, + 8DF5D0FBF5908E9568AE95C94B45CF8C /* RCTVideoPlayerViewController.m */, + 27641C724056FF0B81D6FAE31F26009B /* RCTVideoPlayerViewControllerDelegate.h */, + FA5AEFCC8F782FF9FBAC5916C7863513 /* UIView+FindUIViewController.h */, + 03E428AC1A9B8C1B06A9AE52D832972D /* UIView+FindUIViewController.m */, + ); + name = Video; + sourceTree = ""; + }; + 95165EDE04FA68694255CC700EE2612C /* Support Files */ = { + isa = PBXGroup; + children = ( + 08D8CE592E3E6D38A9ADF97B640DA0CB /* EXPermissions.xcconfig */, + B253C49E623F5F56D28B06A728363F23 /* EXPermissions-dummy.m */, + 4142246BA1B8EF4A323159B74E1878C0 /* EXPermissions-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; + path = "../../../ios/Pods/Target Support Files/EXPermissions"; sourceTree = ""; }; - 93FF1883F6A41BDE0B5B1EE549ED7EB6 /* Pod */ = { + 957EC19CCA8F674A2321D3B461A53A95 /* EXFileSystem */ = { isa = PBXGroup; children = ( - E143925B59A5A1BAEDA8D409F2505453 /* UMReactNativeAdapter.podspec */, + 0FA81729A1DB43571D35E2E7A19E1345 /* EXDownloadDelegate.h */, + 3DF9ED76541390C66E04D31C29138C06 /* EXDownloadDelegate.m */, + 597D35020229D35A237C0209B93C47B7 /* EXFilePermissionModule.h */, + F21B72296B3BE105A34CCE9096EE22C9 /* EXFilePermissionModule.m */, + A728F9090C0195D0BF044B3BC36C5CAC /* EXFileSystem.h */, + DA5AB0196EA5FF764173A516F590D921 /* EXFileSystem.m */, + 2E0781D6B8B1537F22692ACCB7E783DB /* EXFileSystemAssetLibraryHandler.h */, + CF4757C5B91E322EFA671FFD409EA3DA /* EXFileSystemAssetLibraryHandler.m */, + 6548FD636CFDC61BB7F344C247E1C340 /* EXFileSystemLocalFileHandler.h */, + 5C0237864402485714C0421AC8F8AADA /* EXFileSystemLocalFileHandler.m */, + 7B2AA775DEE264DD46F30C99DAA2322D /* Pod */, + E5DF34F2E001EB71173C4194172DDE53 /* Support Files */, + ); + name = EXFileSystem; + path = "../../node_modules/expo-file-system/ios"; + sourceTree = ""; + }; + 95D9417CB50F85E00F98AB60FB2E8181 /* Resources */ = { + isa = PBXGroup; + children = ( + 2A90292EAD4E4B3D95515EA21628B634 /* de.lproj */, + FC5E2D8319B283B8962747D1ED57C037 /* en.lproj */, + F2CFFC3F749D96C2A9A33A5F128355F1 /* es.lproj */, + 6AE78AC48248757E5F4481B82B2EB069 /* fr.lproj */, + FB336E236A070DCDE8ACF59ED7B49D2E /* ja.lproj */, + 4F3FEA4D6EDA37ABD94BCC29214D0E99 /* pl.lproj */, + A5655AC0642AB47E0696586F98F9EB9A /* QBImagePicker.storyboard */, + 003F77A050EC3E8996B044A5976155EA /* zh-Hans.lproj */, + ); + name = Resources; + sourceTree = ""; + }; + 968D1905EC986564B4FDF60599DC3F5C /* RCTTypeSafety */ = { + isa = PBXGroup; + children = ( + 31D476183BD0305AB8612F3A73A5FABF /* RCTConvertHelpers.h */, + 7F031A2F61456BB1EB892DA1FED39B97 /* RCTConvertHelpers.mm */, + F4C8A918CFE8CFB9403313034C194463 /* RCTTypedModuleConstants.h */, + 8ECEB4113FAE0A630DB0A48789C04434 /* RCTTypedModuleConstants.mm */, + 1C118C0AD2AA27A1B2AC457C83678C7F /* Pod */, + 0DC838F3F3ED8AA4D2A5789BCA8B9AA8 /* Support Files */, + ); + name = RCTTypeSafety; + path = "../../node_modules/react-native/Libraries/TypeSafety"; + sourceTree = ""; + }; + 97A3B90C8B725260DEF9C1EA02C502A0 /* React-RCTNetwork */ = { + isa = PBXGroup; + children = ( + C5360E5CE48DB05E73CBCFEE94B489CC /* RCTDataRequestHandler.m */, + 84D49A7A06647CABE0B3ED5B1854533F /* RCTFileRequestHandler.m */, + D02ED42A4438E940D0E92D0C69AAD2F9 /* RCTHTTPRequestHandler.mm */, + BC4ECBA43FFB94EB36805D34F4A53EF5 /* RCTNetInfo.m */, + 443E3FEB5021F5AE568876B2ECE7DAEE /* RCTNetworking.mm */, + 8A2DBC6972F10CB3F42935FAA3D7FEA6 /* RCTNetworkTask.m */, + 609D9081E999495046E2FD28E6CB4E84 /* Pod */, + CBF823573C79B7BBCD55B5B21FA365DE /* Support Files */, + ); + name = "React-RCTNetwork"; + path = "../../node_modules/react-native/Libraries/Network"; + sourceTree = ""; + }; + 9822752D930EFC21B0F025B094F9FF8A /* Pod */ = { + isa = PBXGroup; + children = ( + EADCFA69EBD77D5207AA83AC8FD11C6F /* LICENSE */, + 846B0207BB73770B89FFDAC9557E3E7A /* README.md */, + FDDC908E683D379AE84D6E426DB81D17 /* RNFastImage.podspec */, ); name = Pod; sourceTree = ""; }; - 9467732B6D0470FF20E9677C6DACC57F /* UMAppLoader */ = { - isa = PBXGroup; - children = ( - 88086D10AEE8A22D3132E28EDB996BA3 /* UMAppLoaderProvider.h */, - EEBA21C2ABED57C6474F653A70AC35DE /* UMAppLoaderProvider.m */, - 20061CC3B252E8B2B100A20BE2A2DA84 /* Interfaces */, - DC107D5408D048BECC80CAEAE94824CC /* Pod */, - 202477105C56BF03B3D9CC1885D5A0AA /* Support Files */, - ); - name = UMAppLoader; - path = "../../node_modules/unimodules-app-loader/ios"; - sourceTree = ""; - }; - 95321B4DF45C0F05BFB6477385B7086F /* Pod */ = { - isa = PBXGroup; - children = ( - 251517E5F1BD8410E8CD3FD93A7D9435 /* React-jsi.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 9560E2C255ED145E1B385B858A2B164A /* RNScreens */ = { - isa = PBXGroup; - children = ( - 95048AB5EC80A6FD7899DF9300FAA430 /* RNSScreen.h */, - B8DEA0D80A18F8535E7EC25234F2FD81 /* RNSScreen.m */, - 49C5DB264A324E20ADB75ECB2ABF90AD /* RNSScreenContainer.h */, - 4537D660F139B7A00246C28ED343398A /* RNSScreenContainer.m */, - 6B1A001AF3971D6A74C0EB5FDA87A732 /* RNSScreenStack.h */, - D0AAE68DD397D2CA1FAE9DF98CD3C212 /* RNSScreenStack.m */, - A04A060236236CB1CC69946A6634F6AB /* RNSScreenStackHeaderConfig.h */, - EEF05BEAD756F0B2BA71E8B39C067F78 /* RNSScreenStackHeaderConfig.m */, - D06473E9C42061F1C6EC4051EF5AA20F /* Pod */, - B76DC88883A73DD992DD1CA264C0A51D /* Support Files */, - ); - name = RNScreens; - path = "../../node_modules/react-native-screens"; - sourceTree = ""; - }; - 95AFE9051BF9A54D6048FEE37B4A44E4 /* Support Files */ = { - isa = PBXGroup; - children = ( - 89BDBB64C1BC5D1BB4F805ADB841AA0B /* EXImageLoader.xcconfig */, - 9683C6DA2A8F45520D195D28F24C9D3D /* EXImageLoader-dummy.m */, - 14FEF3C6698DBDC33B81DE2123CA78B5 /* EXImageLoader-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXImageLoader"; - sourceTree = ""; - }; - 964A49BC0AEC05794E9EABB0689632C6 /* Nodes */ = { - isa = PBXGroup; - children = ( - 5562CE4C83195E3FCB9425A9BCBA9F4B /* REAAlwaysNode.h */, - 9D746F514705510EAC14794BD0BBB40D /* REAAlwaysNode.m */, - 021D3A238914E4C4396D0F66537A9862 /* REABezierNode.h */, - 0E7130322F2B2B2F8C06DCD1A9288949 /* REABezierNode.m */, - 19D524162E9BCD6EFFAF8E0F4EC7355C /* REABlockNode.h */, - C672F0A851D2744AEC819BE7EB761550 /* REABlockNode.m */, - 777241DBD36766002052A8E89DE1A923 /* REACallFuncNode.h */, - 72C30B866F76C047B4905813640327C6 /* REACallFuncNode.m */, - 6AA8C8AC1D1EE68AA78B317A9950864E /* REAClockNodes.h */, - 9034F938C79589876C34B7C8D5FE8E9C /* REAClockNodes.m */, - C05FA934427F21B6B65325D242CAB121 /* REAConcatNode.h */, - 51FE99C186FAFDE2DE32D2A15112FE62 /* REAConcatNode.m */, - B022624C369BE97CC1724F31C0B7275E /* REACondNode.h */, - D0B6EF8F03028FC6F7F2C227AA0305ED /* REACondNode.m */, - 300E13D8CD9ABBBE84F65966C2E2D89F /* READebugNode.h */, - DF6B7C1BA29606ABCBFF86F436B3E338 /* READebugNode.m */, - 1231FB2390229D9B8DCC2C8E8015FA4B /* REAEventNode.h */, - 8DE57EFED7D3E7D955E4CC9B7B9F335F /* REAEventNode.m */, - C5E8BA85ED91CBA07263CB3BC35294D8 /* REAFunctionNode.h */, - E83456EAECC433866101BCF8436F8600 /* REAFunctionNode.m */, - B38DB33F670C531001C821BB7D7613C9 /* REAJSCallNode.h */, - 28A3A0F3FBDD846FCD47AC077B8777B3 /* REAJSCallNode.m */, - AA5A5CE2053BA64187F6CAB446174B8D /* REANode.h */, - 85831CDFF1F97D05F42E20822080C13D /* REANode.m */, - D11352460D45BF5E088E22D1C62A7CAE /* REAOperatorNode.h */, - 646273C14DFF10D35676293DE6BD04CA /* REAOperatorNode.m */, - 9F82FC92BBAA394A3778E3F395619E6D /* REAParamNode.h */, - 5A9AB10A51330DF7904DC4C0C9AE6EBD /* REAParamNode.m */, - 8D9A79D228495E5315B0BA3E59908CBE /* REAPropsNode.h */, - 62F3F46BC10E918E6774D29E2338B7CA /* REAPropsNode.m */, - 2C538518209552D98575CD695F5E613F /* REASetNode.h */, - 2B3A82089B5A614E7E34AF6F3B858EA0 /* REASetNode.m */, - 669C987C4F92702E7B0DFEF7CAAAB0F1 /* REAStyleNode.h */, - 95169C2ACD0CFD69D3DA2A7C1BA063BB /* REAStyleNode.m */, - 41DC7C4805BBBD20FFF14A0764206278 /* REATransformNode.h */, - FD50D6AB7F115CD02425C3732120EE43 /* REATransformNode.m */, - 2E74CC6C78C61B321EC7A75976A2BA08 /* REAValueNode.h */, - 04EA08A77D9346780B4B301D8DE2F6B8 /* REAValueNode.m */, - ); - name = Nodes; - path = ios/Nodes; - sourceTree = ""; - }; 98796D2B4A35C296B4C2230305F1F484 /* FirebaseInstallations */ = { isa = PBXGroup; children = ( @@ -10965,95 +10901,72 @@ path = FirebaseInstallations; sourceTree = ""; }; - 98A72BD4C5F972695F4EA1F709A1721E /* Pod */ = { + 996C180176C2AB9BB35BF35B2B5177BC /* Pod */ = { isa = PBXGroup; children = ( - C883296A23EF56DBAACC037EB2F126E6 /* React-RCTText.podspec */, + 8564C07F57E37E38D43687431A38E465 /* React-RCTAnimation.podspec */, ); name = Pod; sourceTree = ""; }; - 99370FA83969D3CC02D4E1D0894B1592 /* Text */ = { + 9A28FEB2FDDC6A6C50DD49E0728E987E /* react-native-appearance */ = { isa = PBXGroup; children = ( - 69CDFAD076C44A8B83929C1858218924 /* NSTextStorage+FontScaling.h */, - 68D81A512B718B97E473BF6AB68B9261 /* RCTTextShadowView.h */, - E67E3486091E43C85BFCF40124719261 /* RCTTextView.h */, - 1A5CE5EDFD4CC2026BCE5EFAD0A77B9F /* RCTTextViewManager.h */, + D2EB5842AB2F72FCE3166D064FA10F10 /* RNCAppearance.h */, + 674FA7B59F6E13FCB007AF7757327943 /* RNCAppearance.m */, + BD506638DCCF06CB0434974BFC80C00A /* RNCAppearanceProvider.h */, + D79E9727C2F33141B180DBDF92EB47F3 /* RNCAppearanceProvider.m */, + E2DC9D466362320D9D82C2ABE0FFAA0D /* RNCAppearanceProviderManager.h */, + DC37764363A76FC196073D8917B4584C /* RNCAppearanceProviderManager.m */, + EEA1A85B6760F650D4DDF334111F1B26 /* Pod */, + 2A70AF40947C85640A0CF21C0EA2B6A8 /* Support Files */, ); - name = Text; - path = Libraries/Text/Text; + name = "react-native-appearance"; + path = "../../node_modules/react-native-appearance"; sourceTree = ""; }; - 997FBCD8BA4E893331F3CE04C6A71953 /* Handlers */ = { + 9A5EBDA2852FF57826543043675865FB /* Pod */ = { isa = PBXGroup; children = ( - 423068FE4F3C20C5F41CFAD48E84FAB3 /* RNFlingHandler.h */, - 71C744BC48D090FDA675214EA23FD003 /* RNFlingHandler.m */, - CB3B48E6147457728CB56CE1BA95DF0F /* RNForceTouchHandler.h */, - 5043F25CA2387BAADA8248011A6F6F29 /* RNForceTouchHandler.m */, - 25CE33BA1C7530FA89B2ACD4901E2FC9 /* RNLongPressHandler.h */, - 788CFE3DEE3D8B745B436F4BFEBA494A /* RNLongPressHandler.m */, - 06B669943C192B510CD5FC44F1C41A75 /* RNNativeViewHandler.h */, - CCD877C48A8ABBE187C4342B50541B21 /* RNNativeViewHandler.m */, - CF7E45F6AFE55A0A4D7B73EC61614501 /* RNPanHandler.h */, - 4C3527A0392AEA73E382892C501CD079 /* RNPanHandler.m */, - D43239CC218A848CC0C62AF8E7DE48D7 /* RNPinchHandler.h */, - F08F8876D360987112249A47F58AACD3 /* RNPinchHandler.m */, - 8CCB10093C9FD906C746FB03D4746CD9 /* RNRotationHandler.h */, - 8DC9D1A3E4C33F5500BE62E412F6184B /* RNRotationHandler.m */, - 4F8B76502130DCE8FFBDE5B203C05202 /* RNTapHandler.h */, - 34051B0AED319EEDA4682DBE6B0DACF9 /* RNTapHandler.m */, - ); - name = Handlers; - path = ios/Handlers; - sourceTree = ""; - }; - 998B245C1C4E5B16778E38252EA8BC1A /* Pod */ = { - isa = PBXGroup; - children = ( - 42FC65C380FA892135A8809B9B3C7B35 /* EXWebBrowser.podspec */, + E6B0CEC82097EE31763F947D714730E0 /* UMCore.podspec */, ); name = Pod; sourceTree = ""; }; - 9A60F0DC53F9869AA3ECB1569DF7BBD1 /* Support Files */ = { + 9AD99CA97E87C898F621A96AF1CA0BCB /* react-native-jitsi-meet */ = { isa = PBXGroup; children = ( - 96B4AB7518B0AEE8B1100BFE3AEAF45A /* React-RCTAnimation.xcconfig */, - 52C6898186BEA2843E1035FAEB3A1194 /* React-RCTAnimation-dummy.m */, - 8504C4E59129798303C42087774AE39D /* React-RCTAnimation-prefix.pch */, + 7E02B942ACBEE1C0746FCBD61B1B0D35 /* RNJitsiMeetView.h */, + 54FA29A58A8091571DFBDADD8EF21000 /* RNJitsiMeetView.m */, + 91D9E1D0C746C2FFBD68E1A7367EC6B7 /* RNJitsiMeetViewManager.h */, + 502EC837155ED714DF23FB05FBC35B3B /* RNJitsiMeetViewManager.m */, + E2D7EA628465A53CE606804DC0F9E87E /* Pod */, + A44CDE19F12DB36C2090AACD4819DF02 /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTAnimation"; + name = "react-native-jitsi-meet"; + path = "../../node_modules/react-native-jitsi-meet"; sourceTree = ""; }; - 9A75682BDDD099E71CEDE4F2707A9909 /* Support Files */ = { + 9B7D20554E22E1C4CCF5659BB3146852 /* links */ = { isa = PBXGroup; children = ( - 8246F155AFFCEEB02887B1984FAA718E /* rn-extensions-share.xcconfig */, - 69228D228ED58E48577E1E205972A156 /* rn-extensions-share-dummy.m */, - 74960A6AFF7C5E7BE62D3AD8B288441B /* rn-extensions-share-prefix.pch */, + 15EC4CE1E11E17AC364ECBAC3B513646 /* RNFirebaseLinks.h */, + 7667B53E10D068E0BFA32C6B17ECCEBA /* RNFirebaseLinks.m */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/rn-extensions-share"; + name = links; + path = RNFirebase/links; sourceTree = ""; }; - 9AF2F23D9F1CE9F3364B0C6842A25BD8 /* Pod */ = { + 9B8498762E7C4BFA0793E1B469FD23D0 /* react-native-document-picker */ = { isa = PBXGroup; children = ( - DB4B7F718D04544A607726F62CEE62E1 /* EXAV.podspec */, + F8B4A74169F9588A6545B52CDB6A092D /* RNDocumentPicker.h */, + 76A2215D06FB7C40AB36F197692FA766 /* RNDocumentPicker.m */, + 9DE7997C234CC835598F55F025F6B880 /* Pod */, + 5CE8EDDB715C31A090A3F0BABC431079 /* Support Files */, ); - name = Pod; - sourceTree = ""; - }; - 9B11A30CDD5D16559F81BCF0B50C99C6 /* Support Files */ = { - isa = PBXGroup; - children = ( - 1F450F79CBFC71A87ABA69D18AF64C1F /* React.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React"; + name = "react-native-document-picker"; + path = "../../node_modules/react-native-document-picker"; sourceTree = ""; }; 9BCEFBA6F728DA1423C8D80E348E9F24 /* Support Files */ = { @@ -11065,23 +10978,65 @@ path = "../Target Support Files/FirebaseCoreDiagnosticsInterop"; sourceTree = ""; }; - 9D1531AE4007A2A9148FB10841984118 /* Pod */ = { + 9C56294BA63CF629E9A870B5321B4677 /* Pod */ = { isa = PBXGroup; children = ( - 2087216659EAF014239AA1836737C53A /* LICENSE */, - 470F371E639027FF1C469A71B508C9C9 /* README.md */, - 9A64BC837A4F96368E4BA3ADE5592C95 /* RNVectorIcons.podspec */, + 36D4A571E35EBFD16999ABF5BBDF5F4A /* UMTaskManagerInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 9D2BC5367D11C623B7A7CC1EEB3764F1 /* Support Files */ = { + 9C65BAEDCB19A016A3CB5DC347249D0D /* Pod */ = { isa = PBXGroup; children = ( - AD2CDF92D73070FFB5EE0C531BCFD946 /* UMFontInterface.xcconfig */, + 0BD8D43D83B7997FCC63F1C3E83C6F1B /* LICENSE */, + B42CEE5D4856722450B5802D85420A5E /* README.md */, + BA828D46422211BE8175BA377FE611A2 /* RNGestureHandler.podspec */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFontInterface"; + name = Pod; + sourceTree = ""; + }; + 9C67426BBFA5213CE185322D72CC433E /* EXImageLoader */ = { + isa = PBXGroup; + children = ( + 64B5D7BB5FFA60F01C8E187D6D93E9B1 /* EXImageLoader.h */, + A615973B85BA181006E0063EBEE40504 /* EXImageLoader.m */, + 79D61CA7C196A1286C653402B2E4FDB0 /* Pod */, + 1EAA8D6BA2392DF7CFDA17F0A2AA645E /* Support Files */, + ); + name = EXImageLoader; + path = "../../node_modules/expo-image-loader/ios"; + sourceTree = ""; + }; + 9CBEC30486697F054242C7954BDF78FC /* Pod */ = { + isa = PBXGroup; + children = ( + 16D47CF049BA220DD66912A75430CD4A /* BugsnagReactNative.podspec */, + 4042FFD2C9AADFCAF567C3972EF9939A /* LICENSE.txt */, + 3A9B6A3890CAB5814678E26BA5596F52 /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + 9DE7997C234CC835598F55F025F6B880 /* Pod */ = { + isa = PBXGroup; + children = ( + 7582E14963B13D27AE0CFC384CE026F9 /* LICENSE.md */, + 9CF3786EE8000A20DFDD143520027865 /* react-native-document-picker.podspec */, + C540F34AA6E51D4B063AADF09A4D7314 /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + 9DEC2C34D18BD19293FEFEFEBBF2B382 /* Multiline */ = { + isa = PBXGroup; + children = ( + 188C9AE6484B0E6EF5C45A6E65126E23 /* RCTMultilineTextInputView.m */, + BF6358AB6D9E2F28FC1C6424EDB2840A /* RCTMultilineTextInputViewManager.m */, + B0211C5BA6C49CB7568A093D135620F4 /* RCTUITextView.m */, + ); + name = Multiline; + path = Multiline; sourceTree = ""; }; 9EA5F86655592B693DE74D95DF3A3C23 /* Frameworks */ = { @@ -11093,70 +11048,127 @@ name = Frameworks; sourceTree = ""; }; - 9FF2C41B6ED144A870F7B91DB6AFB084 /* Pod */ = { + 9F2995718F449AA02D637224A2AB062F /* UMImageLoaderInterface */ = { isa = PBXGroup; children = ( - D812DE14C212897CCAE48C3C86A22F2E /* UMFileSystemInterface.podspec */, + A13C6946B33C455B359738BA52FB0A4A /* UMImageLoaderInterface.h */, + CA5B2FB35C804FF0EE7A1DEF3AAB9BC4 /* Pod */, + 4327AF53E2632320858494B5B7CD605E /* Support Files */, + ); + name = UMImageLoaderInterface; + path = "../../node_modules/unimodules-image-loader-interface/ios"; + sourceTree = ""; + }; + 9F62BF7599A73E242E75EFE67CF89AC0 /* Pod */ = { + isa = PBXGroup; + children = ( + EBEDD9F09018A3CB9E1B5918F5653262 /* LICENSE */, + 4526C8074EFC911D4391FC14652BABCD /* README.md */, + 6595FE78E81599C216E59270F714BC82 /* RNLocalize.podspec */, ); name = Pod; sourceTree = ""; }; - A2B2C6BB2D2ED0D117626553849F6920 /* UIUtils */ = { + 9F75A82E87505DC71E8C2FF08343D03E /* RCTTextHeaders */ = { isa = PBXGroup; children = ( - 2E1B3EDEDD84F4299867D29A64BE66EC /* RCTUIUtils.h */, - 76EE11B53ECF038B91DB707CBB618F95 /* RCTUIUtils.m */, + 14A1909E30018152870D41BE4CF7E326 /* RCTConvert+Text.h */, + A98B8012F144C30D6A38B0B3B345ADF1 /* RCTTextAttributes.h */, + 3F0E13FC825A0389AFB6D7962502FE1D /* RCTTextTransform.h */, + 8A2BAA7744CA0ED87AAE14AB5FEE47E9 /* BaseText */, + B788E545FAED88B23C64450C6955910A /* RawText */, + 2531E5D9CF65C3CF26047BD34D009716 /* Text */, + F219CAF7F8BC8FCF331E390A74833695 /* TextInput */, + DB2F04FEFFA88D64A56C1891D6D33EB5 /* VirtualText */, ); - name = UIUtils; - path = React/UIUtils; + name = RCTTextHeaders; sourceTree = ""; }; - A2FB0CE39C25D5B14C2A122CEEE49CEA /* React-RCTText */ = { + 9FF7A194BE5F7E3424E82028AB7C57B7 /* Requesters */ = { isa = PBXGroup; children = ( - 7DA09F9FC1A6B126F51A2733487247C5 /* RCTConvert+Text.m */, - 77C391A3102EC9FFECFDA582C1B03FD4 /* RCTTextAttributes.m */, - 2D15A88F8C4F9A95B7399F85BEDE6B00 /* BaseText */, - 98A72BD4C5F972695F4EA1F709A1721E /* Pod */, - 0A30D3C6A0F222E474D2865155DF04AD /* RawText */, - 15CEE78E3FCAEDC7C07E9349C8F8A604 /* Support Files */, - 0C4E5B60EEA29CC3C72E554E753FDE08 /* Text */, - 598BA6722DA56E24941E48729D2269C7 /* TextInput */, - 24278B3338F91956F9A83861F54C84B7 /* VirtualText */, + 7643CA6EAFC13DCAC51058242FD000A9 /* RemoteNotification */, + FE98B0896FF26D43B4DA4510D54A3213 /* UserNotification */, ); - name = "React-RCTText"; - path = "../../node_modules/react-native/Libraries/Text"; + name = Requesters; + path = EXPermissions/Requesters; sourceTree = ""; }; - A3BD729ABCDCC75E18F10BEAC7E5934E /* Support Files */ = { + A0DD529EAFD79B64612923DFA2085A7D /* Nodes */ = { isa = PBXGroup; children = ( - 68A4D0305A3CA5885A1016E9E2C7286E /* react-native-background-timer.xcconfig */, - FA6E41E23B34CFFF4C7E7BA11E408967 /* react-native-background-timer-dummy.m */, - E57AE608C40F62CF73A0A12F5C3ACA23 /* react-native-background-timer-prefix.pch */, + 7CDA57B7A037A04CAF162CCF8783CB39 /* REAAlwaysNode.h */, + ADBB374290ACC42CF28CA9F3155AE096 /* REAAlwaysNode.m */, + 85262D71DBAB951692FBC6B28F927FF6 /* REABezierNode.h */, + 1C1DB3872977A9B38AA80081DB9F0D90 /* REABezierNode.m */, + 7493D81119BC9FA4036C10337C09BC5A /* REABlockNode.h */, + 5C5220ADF71397D5B95AA595F8813FE3 /* REABlockNode.m */, + C1F00D3D631186E5C30E5082F7B76425 /* REACallFuncNode.h */, + 62046A26178649AC5D619E9ED83B8CED /* REACallFuncNode.m */, + 331AF84BCC2BA7E0A3BE1703F9444B22 /* REAClockNodes.h */, + C48A8F36129D6901E54E9A08ED6D9BC0 /* REAClockNodes.m */, + 6DE8A4F7C409117A3DC6A2E37ED2DF60 /* REAConcatNode.h */, + 16F343A73D8A9CB64F3C45BCDBA495FC /* REAConcatNode.m */, + A40F869B4425DC36B268AAC134C05811 /* REACondNode.h */, + FD58DB39F9A32D84F2801237B4423F13 /* REACondNode.m */, + 50134151E35E1B96FD28AC7ED0800892 /* READebugNode.h */, + 6B360C00644E9E808A39C5EB37BB1840 /* READebugNode.m */, + BB715B513540E23DAA9A4BA4892EA4C0 /* REAEventNode.h */, + DF27FB27F03D0836198D91EAAB34E562 /* REAEventNode.m */, + D4C5DCBD8CFEB2613D8E43206E263F1B /* REAFunctionNode.h */, + 63F98D42B9567C6BAFED9D04BBDAD278 /* REAFunctionNode.m */, + B6A35BC8425A69E745CA3D09657EF2EA /* REAJSCallNode.h */, + D572767A593EDD6E23A9336C6566817A /* REAJSCallNode.m */, + B55CACA6C91A7C67EF1D293C012BE983 /* REANode.h */, + 5795E5FB84901A09682C23201BD21518 /* REANode.m */, + 45DCCF91BE6331A403D82963970FFDFE /* REAOperatorNode.h */, + 5F0337242837C1D7E4670132D6F493B4 /* REAOperatorNode.m */, + 82C2CC4DA2D0A987F666774AAF991E7C /* REAParamNode.h */, + 54AC49AAA4AFD11414A9FAAF69ED9769 /* REAParamNode.m */, + 74258F81D8E9A10E7FFF59588C4A3450 /* REAPropsNode.h */, + 771101BC66D624FBFA77FBF11A3232C2 /* REAPropsNode.m */, + 0EF13686829746A2F67F9C4179C93609 /* REASetNode.h */, + A6FDFA32B8295040197988E798C0AB0D /* REASetNode.m */, + 5CC1C8636F6E342DC363373509099EC9 /* REAStyleNode.h */, + 513C3F34D99097335FA72E9F425B9845 /* REAStyleNode.m */, + A0BD5F45347AF241ACD522068EE2A13F /* REATransformNode.h */, + 19F051C398E0E0CF5604A783AA3D061F /* REATransformNode.m */, + 0C4157C2FAA19B37B490BC14D91400ED /* REAValueNode.h */, + F6DD803CEEF3E5ED10A5840760D5E1C5 /* REAValueNode.m */, + ); + name = Nodes; + path = ios/Nodes; + sourceTree = ""; + }; + A19A1CAEC2DC473E9CBBBFB88B53E2E2 /* UMBarCodeScannerInterface */ = { + isa = PBXGroup; + children = ( + B12371BCF0527D2B1FE5682D40D9C1F3 /* UMBarCodeScannerInterface.h */, + 1E1021A0C3C509D48D905BADBFF434A1 /* UMBarCodeScannerProviderInterface.h */, + 64618759288B7B69898B7D4936064EE7 /* Pod */, + 3082259E58863D9403713AD11984680B /* Support Files */, + ); + name = UMBarCodeScannerInterface; + path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; + sourceTree = ""; + }; + A44CDE19F12DB36C2090AACD4819DF02 /* Support Files */ = { + isa = PBXGroup; + children = ( + 05DE3B152B393181033A3529CEC2B6BE /* react-native-jitsi-meet.xcconfig */, + 54DCCA8CF849B2B71253E54894E70343 /* react-native-jitsi-meet-dummy.m */, + 3CBDD5CDE2AA4C6B4D0C14D5948DCDCB /* react-native-jitsi-meet-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-background-timer"; + path = "../../ios/Pods/Target Support Files/react-native-jitsi-meet"; sourceTree = ""; }; - A3BFA6BE46F300B5C00E4AEA98954E35 /* Support Files */ = { + A4DF82F35E9EDCF5412AE8523A092D8C /* RCTVibrationHeaders */ = { isa = PBXGroup; children = ( - 7272F183AACAC14F1CF2105ECF6297FC /* react-native-keyboard-input.xcconfig */, - F33070115C54647302E7B680A145468B /* react-native-keyboard-input-dummy.m */, - 7F75A01222D62B6C5AEFF81CD3B869A3 /* react-native-keyboard-input-prefix.pch */, + 60962EF7F5AA7A9D95F94DCEE66EA7F5 /* RCTVibration.h */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-keyboard-input"; - sourceTree = ""; - }; - A59C9E778C256BEA6C4A98325EAB714B /* vendor */ = { - isa = PBXGroup; - children = ( - 53130E49370A5BFFFB78F348B6304236 /* bugsnag-cocoa */, - ); - name = vendor; - path = cocoa/vendor; + name = RCTVibrationHeaders; sourceTree = ""; }; A5ADA69422B84A7580C82CAA5A9168D1 /* Targets Support Files */ = { @@ -11168,73 +11180,41 @@ name = "Targets Support Files"; sourceTree = ""; }; - A5D3C5912FC95990E4865544214A5913 /* React-jsi */ = { + A78F8B84B10BCF1E1A0BE22031D00524 /* jscallinvoker */ = { isa = PBXGroup; children = ( - DBA79DCBFDE0F5CA840BF7EC8649F63B /* JSCRuntime.cpp */, - 7B78F20857A4C7463E80D357604DE7B4 /* JSCRuntime.h */, - 657DC15FB5EC162E18117CEA4C4C2E5B /* jsi */, - 95321B4DF45C0F05BFB6477385B7086F /* Pod */, - 1BD7AB1C10E6FB8F4D7E137FB3209C57 /* Support Files */, + DF8C4FB84FC5CC63827683833BF23659 /* BridgeJSCallInvoker.cpp */, + DFDC939DDDE5B2F633F78E7D72C17D92 /* BridgeJSCallInvoker.h */, + 0302318BE1A4996F6362DEECA23878B8 /* JSCallInvoker.h */, ); - name = "React-jsi"; - path = "../../node_modules/react-native/ReactCommon/jsi"; + name = jscallinvoker; sourceTree = ""; }; - A68B918FDF7156DE9B52F25B4ECDC865 /* EXAV */ = { + A7BFC0F36DEB3F36F0FC94E319B441D0 /* RNDateTimePicker */ = { isa = PBXGroup; children = ( - EF8CA3F3380206E36F78E2DADFF25213 /* EXAudioRecordingPermissionRequester.h */, - D3E6D03C20ACECAE030550547CA1E339 /* EXAudioRecordingPermissionRequester.m */, - 066CA46EC4E3C3080CF06433222E437E /* EXAudioSessionManager.h */, - A64C866B4047D0514B63E16B07FB086E /* EXAudioSessionManager.m */, - 3B1BF033A6168167BD3A578A80C37D50 /* EXAV.h */, - 50381F0689C5591A2CFA421478473E73 /* EXAV.m */, - 3ECC4817DED5EF3C8305E0B1E51CAB24 /* EXAVObject.h */, - 1C10B5A48784E792CA65B3D54A32EE31 /* EXAVPlayerData.h */, - B29E9B69763520242F449457640639CB /* EXAVPlayerData.m */, - 9AF2F23D9F1CE9F3364B0C6842A25BD8 /* Pod */, - 275BCA3B036E61742C28AEF972887AF7 /* Support Files */, - CA068D98FFDD4CC8B6D7314BD7C65AA1 /* Video */, + C9EE23420BFAC48413A4637E84819DC1 /* RNDateTimePicker.h */, + 687D274BCA24C931D4E2AC530A4BB8C9 /* RNDateTimePicker.m */, + BD8DE34D2A5336EA6C638A092D29F16C /* RNDateTimePickerManager.h */, + AB041F83DA810ED8C5D4970D923977BE /* RNDateTimePickerManager.m */, + 59A415744A0596858A0BD53FC33ABAEC /* Pod */, + 6E76E5C1C37AC6F688843C9E740B7212 /* Support Files */, ); - name = EXAV; - path = "../../node_modules/expo-av/ios"; + name = RNDateTimePicker; + path = "../../node_modules/@react-native-community/datetimepicker"; sourceTree = ""; }; - A845D3FF3EF01697BA9A78146D2004A0 /* Pod */ = { + A8226C44832FF0067C03330C984E644A /* Pod */ = { isa = PBXGroup; children = ( - 4D3F207EF3F8FA675C7BF65FC1C38065 /* LICENSE */, - 1603306E49903190875AC507DE2217E9 /* react-native-orientation-locker.podspec */, - 17901D0F238BCABF5F4FF54F39027B17 /* README.md */, + 52D6A118E3DC3F00CB5F5FC58C208510 /* api.md */, + 159D3A6C5F3D43C874A28A3600AC9AE6 /* LICENSE */, + C1A5F8F2DA8110308C5AB74F52C95E76 /* ReactNativeART.podspec */, + A5F862DE55B8DAE16E05BE2AD7B275CE /* README.md */, ); name = Pod; sourceTree = ""; }; - A8495183D521095FB5AD07803F03194A /* React-RCTBlob */ = { - isa = PBXGroup; - children = ( - 80A2424271BAC935A2EA038E05CD2945 /* RCTBlobCollector.h */, - 1DB7F9426084901C06D6B3D810431E36 /* RCTBlobCollector.mm */, - 31EF0BEB53628F3F62B196C7F169532C /* RCTBlobManager.mm */, - 7F44A2F55853EE6E65FA192264929F10 /* RCTFileReaderModule.m */, - 4E8FA752AF2F99F1C9188913CA37EB0B /* Pod */, - 4BC6E5F648873F6C9EF3FA1566BFBB7E /* Support Files */, - ); - name = "React-RCTBlob"; - path = "../../node_modules/react-native/Libraries/Blob"; - sourceTree = ""; - }; - A89929660B3FDA2AF0D5E8784ECC1D0A /* perf */ = { - isa = PBXGroup; - children = ( - 3B421201BC61B8A0A51E7C35E7439D26 /* RNFirebasePerformance.h */, - 703E633D67D09CCA45C691AFEF430AF5 /* RNFirebasePerformance.m */, - ); - name = perf; - path = RNFirebase/perf; - sourceTree = ""; - }; A8C71C322026C911F1F90E2B03F26405 /* Frameworks */ = { isa = PBXGroup; children = ( @@ -11243,29 +11223,6 @@ name = Frameworks; sourceTree = ""; }; - A8F11DA5FD09758723E1142FEF85DB69 /* React-Core */ = { - isa = PBXGroup; - children = ( - 47B66F2C9006D5F2F2E0925262742204 /* CoreModulesHeaders */, - EFF363D4A2ABF985427048873F7ADC19 /* Default */, - F79BD2BD74956D79C039615BB2F612E7 /* DevSupport */, - 7A72C780DA45812C85D2D2D9B7FE6336 /* Pod */, - D55FD50A813CE81764D8AD5B14D65C16 /* RCTActionSheetHeaders */, - F28C3B78ECE85EF6CB12E5D27BC16787 /* RCTAnimationHeaders */, - 7EF5C62967B7C207E85006B06828B379 /* RCTBlobHeaders */, - BEFA474A22B69034D2CD338306D577FF /* RCTImageHeaders */, - 76A751CD9C29E3A03B36E20E0DF4C932 /* RCTLinkingHeaders */, - 0D757575D006C36AF5CA1329845EEDF9 /* RCTNetworkHeaders */, - C870152CE6300E3695F14BDD3BF506E1 /* RCTSettingsHeaders */, - 198989861E3A46A532780C47C718A1BB /* RCTTextHeaders */, - 77D7A6DACCA2327E48F765FDD2A4B172 /* RCTVibrationHeaders */, - 88EE4D090D09DB08440B3F15009A7879 /* RCTWebSocket */, - 6EB2A42B3680DA986C24F2D4B3EEDA70 /* Support Files */, - ); - name = "React-Core"; - path = "../../node_modules/react-native"; - sourceTree = ""; - }; A93FC5B030CC5395435DD39670F9E756 /* Support Files */ = { isa = PBXGroup; children = ( @@ -11275,16 +11232,30 @@ path = "../Target Support Files/Firebase"; sourceTree = ""; }; - A944F15A2548E423B7704E391A961344 /* Pod */ = { + A9EE28D5510AFD24F5A4E92922F72A9D /* Pod */ = { isa = PBXGroup; children = ( - 4BB4B698D12F67FB4917C3F562A99FC5 /* LICENSE */, - B666367F2AEF02583A749EBEB324CAE6 /* README.md */, - 47C9A56AE8F147AA3E3F43ED4FD5F8EC /* RNReanimated.podspec */, + C9EEDC50DC8B5E885F22D39FE6DAFD6D /* UMReactNativeAdapter.podspec */, ); name = Pod; sourceTree = ""; }; + AA1160D4DE7CADD11E97B3EA14933708 /* SafeAreaView */ = { + isa = PBXGroup; + children = ( + 91A9B7A30D4D872C8EC76F32B87D2FD1 /* RCTSafeAreaShadowView.h */, + 1C4FFE3B1606113541FAAA752591E5E7 /* RCTSafeAreaShadowView.m */, + C59A44A3836E48A3D9E63963E2681D6D /* RCTSafeAreaView.h */, + F3CCB24FC34E85BE20A08461CEAC5964 /* RCTSafeAreaView.m */, + 6A43E7DC5723FD9F6489D01E21E04EE0 /* RCTSafeAreaViewLocalData.h */, + 1FA178F75745CEEA3494C31D038EC7FE /* RCTSafeAreaViewLocalData.m */, + 72F3A429601F66AEEBF3B565EEDF1F41 /* RCTSafeAreaViewManager.h */, + 46B486541A6AA377CDD781BA73395D1C /* RCTSafeAreaViewManager.m */, + ); + name = SafeAreaView; + path = SafeAreaView; + sourceTree = ""; + }; AA4F6AAD65B434D8E494DA264036AFDA /* Core */ = { isa = PBXGroup; children = ( @@ -11431,171 +11402,146 @@ name = Core; sourceTree = ""; }; - AA50523176CC36493EC84FFAC0338782 /* Requesters */ = { + AA7EF108B1AF468547A5017D68DE1F7B /* react-native-orientation-locker */ = { isa = PBXGroup; children = ( - C5DBF438A45A754FF69BFE3D149EAE12 /* RemoteNotification */, - 23AE92A2D0CB07FD71099B5E472CC1EC /* UserNotification */, + 5C423F0F22D9E644B5F9E5ECA56CBB8D /* Orientation.h */, + 7BF2B8515953DCD57957BA8EFD20ACFF /* Orientation.m */, + E85D54DAE27FA6537A064F3A51309A0A /* Pod */, + 57BADD79651C53ADA9857150C84BA1C5 /* Support Files */, ); - name = Requesters; - path = EXPermissions/Requesters; + name = "react-native-orientation-locker"; + path = "../../node_modules/react-native-orientation-locker"; sourceTree = ""; }; - AB56AC2A3CB128D22769D17C41A71EBE /* Services */ = { + AAC4B0A2C757525970DB19C0391A29CF /* Services */ = { isa = PBXGroup; children = ( - 3D94F8669BF7E0B52C69D8ECEC6FB1D4 /* UMLogManager.h */, - 63CF31F397DF0BDE9FB607FC2E3007A9 /* UMLogManager.m */, + 8DCA471A96EEDC4FF71B04C0B6280E1E /* UMReactFontManager.h */, + 3E0BF76806F01A4737F7E7FF400AFF7A /* UMReactFontManager.m */, + 559BE7FB81AFF08D3690E3B14F07E8B0 /* UMReactLogHandler.h */, + BEA3586451A5731024F262422F2A0E80 /* UMReactLogHandler.m */, + D96E9F96EC89E9F9284338352C43C102 /* UMReactNativeAdapter.h */, + 8E41897D7B8A9E05D048F023965765EE /* UMReactNativeAdapter.m */, + 606CCE606376DD7990442AF23CEE5A3F /* UMReactNativeEventEmitter.h */, + AD2B06DCAB11F3B99CDEB99300E8B31D /* UMReactNativeEventEmitter.m */, ); name = Services; - path = UMCore/Services; + path = UMReactNativeAdapter/Services; sourceTree = ""; }; - AB6EBD11F4B5566581CF04E0230ACAA4 /* Pod */ = { + AB00C6C5CA12BF25D635208FFF45DC40 /* TextInput */ = { isa = PBXGroup; children = ( - 3CD5C994FB3DA894D19C17ABD9E48DA8 /* React-RCTAnimation.podspec */, + 61FBC6C6160BB2253D991ED26479A5FB /* RCTBackedTextInputDelegateAdapter.m */, + CCABB48D087659B9F3108DC2B38CC33D /* RCTBaseTextInputShadowView.m */, + 1DAE96F078224826317C344961328901 /* RCTBaseTextInputView.m */, + 6E6B3F72D28DBBEB7379B5DBECA7B3B2 /* RCTBaseTextInputViewManager.m */, + C388D8B8AF0927DDBF721CD4F0BAC23B /* RCTInputAccessoryShadowView.m */, + B26961AB7152E0E74BAD19380C69E867 /* RCTInputAccessoryView.m */, + EBB697DB9411C56639A4EEA0CD6D9933 /* RCTInputAccessoryViewContent.m */, + F35E076CF529C953D063452BE7B556C9 /* RCTInputAccessoryViewManager.m */, + 52F26A7E8EED47F49C39F9121B4D43F8 /* RCTTextSelection.m */, + 9DEC2C34D18BD19293FEFEFEBBF2B382 /* Multiline */, + C017DB12561A783826FF948A1F121C3D /* Singleline */, + ); + name = TextInput; + path = TextInput; + sourceTree = ""; + }; + ABD5AB3B3750E40F95CB957B0E21CA15 /* UMConstantsInterface */ = { + isa = PBXGroup; + children = ( + A2BB4A0544ACABAB39F55C9B4DC418F1 /* UMConstantsInterface.h */, + 0277853A137F34F9C5C0831B3D50330F /* Pod */, + 6C517F5AE5A03AAEADD9CBE51FB6E0D2 /* Support Files */, + ); + name = UMConstantsInterface; + path = "../../node_modules/unimodules-constants-interface/ios"; + sourceTree = ""; + }; + AD2FA45F1B35CDA794A4D46F1DFC95E4 /* Surface */ = { + isa = PBXGroup; + children = ( + 4575FF1293FEB3125B895E2A0DA0FD7B /* RCTSurface.h */, + 37B7696826AB43902263D71479D95B63 /* RCTSurface.mm */, + E3E6A1475FA0286C2069129BE72401FE /* RCTSurfaceDelegate.h */, + 40C8CDF7DDF4D4317E4FB9A090B13B2A /* RCTSurfaceRootShadowView.h */, + DC038EAD706B8803534A159BF2D184F0 /* RCTSurfaceRootShadowView.m */, + 233FECEF1AAAE50F2AE5315510F92514 /* RCTSurfaceRootShadowViewDelegate.h */, + 488480EAD543AFDD806FE0620D2A8B9A /* RCTSurfaceRootView.h */, + 124B50748AC829D4F462CD6D1806C564 /* RCTSurfaceRootView.mm */, + E0BC4658ED68247F4D86F89624EC6C18 /* RCTSurfaceStage.h */, + 4BE8E6275C59B97B8ABD3F43F99AF6C8 /* RCTSurfaceStage.m */, + C8FECFA964F448691E08DBF24527F38B /* RCTSurfaceView.h */, + 49EE0D4AA6ECCB30D86E884EBB2E7FEA /* RCTSurfaceView.mm */, + CA9AFC587C2D554D3295F5586D669DF8 /* RCTSurfaceView+Internal.h */, + 2DD1AED08B9659E6582CEAF0363779D2 /* SurfaceHostingView */, + ); + name = Surface; + path = Surface; + sourceTree = ""; + }; + ADAEB9A1C92C89BCB5A904B84782EC9C /* bugsnag-cocoa */ = { + isa = PBXGroup; + children = ( + 91FA45A16A71185F42327D2AA3AE9A3A /* Source */, + ); + name = "bugsnag-cocoa"; + path = "bugsnag-cocoa"; + sourceTree = ""; + }; + AFE75C3A25D721808449B8B69DD04E16 /* Pod */ = { + isa = PBXGroup; + children = ( + E4E7F067F5AF42C063095057CB7F3A45 /* React-RCTVibration.podspec */, ); name = Pod; sourceTree = ""; }; - AC6C578E7DE2F96B25CEBC8591AE69CD /* Pod */ = { + B09B1D032D62946A4FC9C721846F384F /* rn-fetch-blob */ = { isa = PBXGroup; children = ( - 1BA9DA3049A7B31EA6AEEE1FF96B91F3 /* UMTaskManagerInterface.podspec */, + 6B0DF453C24E692E4F8226C5A42A08FB /* IOS7Polyfill.h */, + 3BB8D1658E6620DC5BD8F056364B9CAD /* RNFetchBlobConst.h */, + DF625B9FFD7CA277275930691C3AB5F2 /* RNFetchBlobConst.m */, + 47F3DD333F04504A9B36039EB3EBC91E /* RNFetchBlobFS.h */, + 4083DC5D6BEC378CED9B623819ED172A /* RNFetchBlobFS.m */, + BF8953B11CC5C871E31B1265D3E25346 /* RNFetchBlobNetwork.h */, + 809C97FBE2B7346EB069300DC64893C5 /* RNFetchBlobNetwork.m */, + 2C969BCCC29425F18EE53652B5D8706F /* RNFetchBlobProgress.h */, + 6A9B116DF69ECF6ACD623B9630FD7F1F /* RNFetchBlobProgress.m */, + 7BEC8F33025EEFC8AD46D997458C4839 /* RNFetchBlobReqBuilder.h */, + D428A5F89B83BAC3FD6FC10F08524F4F /* RNFetchBlobReqBuilder.m */, + 1879999503453BFC58A6601D7FAA72B5 /* RNFetchBlobRequest.h */, + B7502A35843D4D02AE02AA4D6FCBEC4D /* RNFetchBlobRequest.m */, + 6CAD6E5F63F068421E0A82826BC0EBA4 /* Pod */, + 82427D4DB5EF92D59620DBEB6830FF7F /* RNFetchBlob */, + 207F66EE9B0DFCE4CAF9DD3E91371E64 /* Support Files */, ); - name = Pod; + name = "rn-fetch-blob"; + path = "../../node_modules/rn-fetch-blob"; sourceTree = ""; }; - AD2553C1438E6E4EFEC8D7A87DAA1C37 /* Support Files */ = { + B0FC10F5EE32C328DEF931F9DB7ABF90 /* Support Files */ = { isa = PBXGroup; children = ( - FE997B88F2CDCED8F816B2BBDD413FC7 /* react-native-slider.xcconfig */, - 0624EC83F8BA9DDD82C75BD1368A4942 /* react-native-slider-dummy.m */, - 453F56DEA38AA67D6B9BD7BF720E29BB /* react-native-slider-prefix.pch */, + DF132347C29A84EF484351CF932FA858 /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */, + 5EEFF7043838ECFBC2155B5C5B83F7CD /* RNImageCropPicker.xcconfig */, + 7EE23C3E92A145C8608B385EAD04D34D /* RNImageCropPicker-dummy.m */, + 5EDBA507EA30949A1594DB294BB7731A /* RNImageCropPicker-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/react-native-slider"; + path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; sourceTree = ""; }; - AD85E3CC465B636DD729EBA6D7AFC85D /* RawText */ = { + B12C4BAC2F9FFE423EBEACA4D7F304BE /* Support Files */ = { isa = PBXGroup; children = ( - E6B2FAB6C78DAD30C101A8E0C7C8ACE0 /* RCTRawTextShadowView.h */, - 686B2034BBE247CCD34FA7167EE6C12A /* RCTRawTextViewManager.h */, - ); - name = RawText; - path = Libraries/Text/RawText; - sourceTree = ""; - }; - AD8D59B618E20E1C04B73AB391C9E42F /* React-CoreModules */ = { - isa = PBXGroup; - children = ( - 7DF3EC3740C96B26BCF2805EA83CA564 /* CoreModulesPlugins.mm */, - 854137F5C0ABC4A4846F9700635C0DFF /* RCTExceptionsManager.mm */, - BE3583A41F596110133CCBC8DDC04DCD /* RCTImageEditingManager.m */, - 4F3DF8CC066372315A0987F5ADAB7C79 /* RCTImageLoader.mm */, - E55C212DD52DAE10D8D1AF4C1840B73F /* RCTImageStoreManager.m */, - 7108B03339E820AA6C483739E8F8F9C3 /* RCTPlatform.mm */, - E314FCF847B717D507A8ECDFEA1C5CF1 /* Pod */, - 58563AE314719F1C5AE43BAE63AA5A3A /* Support Files */, - ); - name = "React-CoreModules"; - path = "../../node_modules/react-native/React/CoreModules"; - sourceTree = ""; - }; - AE915D0B820949DB75A2D75AF6796279 /* Support Files */ = { - isa = PBXGroup; - children = ( - 1DF544D039334F425AEA394890EE3BA1 /* react-native-document-picker.xcconfig */, - 796D6FF12732B49AFA11231E67982356 /* react-native-document-picker-dummy.m */, - 9315C39C62536FC92B607DED8993B973 /* react-native-document-picker-prefix.pch */, + DA744873B7F2AC32520D0FD4D5055112 /* UMTaskManagerInterface.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-document-picker"; - sourceTree = ""; - }; - AEC2091BFDCE204886DE9120B26F30FA /* React-RCTNetwork */ = { - isa = PBXGroup; - children = ( - 1FA9A20AB47A7A1EAAA6D8FE40813C35 /* RCTDataRequestHandler.m */, - 5BE307A8282194964DBE9E8481B9E1B0 /* RCTFileRequestHandler.m */, - 7F54A517880631FC3AB3FE31EDD25CF2 /* RCTHTTPRequestHandler.mm */, - 0515730473F4E50F849E1EB2361EC5F0 /* RCTNetInfo.m */, - 11F111103A19458BC91CBDEFB769696D /* RCTNetworking.mm */, - 02226A43F8307859A386CB61543C5E17 /* RCTNetworkTask.m */, - 7C95DA71CEC87E4BA640419C2BFB1FA4 /* Pod */, - 84EF0CCF30797383C2C7E81B777FC51D /* Support Files */, - ); - name = "React-RCTNetwork"; - path = "../../node_modules/react-native/Libraries/Network"; - sourceTree = ""; - }; - AF0501B9ADCB974172C7AAA504AA2D7F /* UMSensorsInterface */ = { - isa = PBXGroup; - children = ( - E8A0264BD294739E1BB1C2D47520BB86 /* UMAccelerometerInterface.h */, - BA437AC0E4FDCFCC84857B227572A0F9 /* UMBarometerInterface.h */, - 32BFE4D89F4AE73699767169772A6AE6 /* UMDeviceMotionInterface.h */, - 6010993E0A783FD97974261D42AA7374 /* UMGyroscopeInterface.h */, - 8C27643E34012E7108D62962B6B6918D /* UMMagnetometerInterface.h */, - 18FCBF0B93070E0145B5194E6B7B9866 /* UMMagnetometerUncalibratedInterface.h */, - 7F86DF399B8DB342D6BD33EBC85B772D /* Pod */, - D603A09B76B2BA8B76DF88D06A1DFA24 /* Support Files */, - ); - name = UMSensorsInterface; - path = "../../node_modules/unimodules-sensors-interface/ios"; - sourceTree = ""; - }; - AFE65677D56ACA09C70C7E28BACC425D /* firestore */ = { - isa = PBXGroup; - children = ( - 55F1CA98B31C6CECD26788DBB866F396 /* RNFirebaseFirestore.h */, - 84E70303C82DADA2DA050C280492E26F /* RNFirebaseFirestore.m */, - 70527C4CB499808627EBE0CEA40D0252 /* RNFirebaseFirestoreCollectionReference.h */, - 7A545AFD8FE1AABA0B0D87E164A89FAD /* RNFirebaseFirestoreCollectionReference.m */, - 8F5398B210CBA961523993A242B13978 /* RNFirebaseFirestoreDocumentReference.h */, - 2B68F2825A5F62FCD233C7EEDF9B82D2 /* RNFirebaseFirestoreDocumentReference.m */, - ); - name = firestore; - path = RNFirebase/firestore; - sourceTree = ""; - }; - B093999EA790249FAF463220521385A4 /* Pod */ = { - isa = PBXGroup; - children = ( - B574A2614695898261919756FB40E3D9 /* UMImageLoaderInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - B22FF4A473CD51DD3C31378A55968E47 /* Support Files */ = { - isa = PBXGroup; - children = ( - 0764C74C255EA604FCBA84129BEADD2D /* RNVectorIcons.xcconfig */, - D3166CC11D7171E4EDBB61B8556955AD /* RNVectorIcons-dummy.m */, - 55497B8716FC1CA5C77BF7D5671EC736 /* RNVectorIcons-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNVectorIcons"; - sourceTree = ""; - }; - B23D620BDA6334266A94D11DD64A3215 /* RNFastImage */ = { - isa = PBXGroup; - children = ( - A7B18A8AF8D4C770AB7976F1BD5A587C /* FFFastImageSource.h */, - F8F3511A7A0CDB5CD0A574DA1AAA97D1 /* FFFastImageSource.m */, - CCB2A41EEB91EB3807C5482F1A31903C /* FFFastImageView.h */, - 7C9259CE14FDF2FF3EDE76809513EB2A /* FFFastImageView.m */, - 471AD333F94D649505072A135F27151A /* FFFastImageViewManager.h */, - E59E8413EB76AA9A0ACA30CD21A916DB /* FFFastImageViewManager.m */, - EC14FEAF264818E7E570224ACC8BFD4D /* RCTConvert+FFFastImage.h */, - 86B5F738702AFE3D8F90BAD8BFD61770 /* RCTConvert+FFFastImage.m */, - 32C750659D275C2C0EA7339F4B03568F /* Pod */, - 4845F9D2D753ECCE58C8D9D72422B421 /* Support Files */, - ); - name = RNFastImage; - path = "../../node_modules/react-native-fast-image"; + path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; sourceTree = ""; }; B2951A464D62F689D3C6044C7F73302B /* Frameworks */ = { @@ -11606,119 +11552,152 @@ name = Frameworks; sourceTree = ""; }; - B2A26CD551E54C2C1813EFEAD961CD08 /* RNImageCropPicker */ = { + B29DE9FCCC737C3E1BFD4F3B716A81EA /* Development Pods */ = { isa = PBXGroup; children = ( - 92313FE1AAEFAC337407AC82B920B585 /* Compression.h */, - CA0884EEE65265D9C1173315898C715F /* Compression.m */, - 35A9DF7A800D0D82E8400F538C8B28EA /* ImageCropPicker.h */, - D6289D1457043A92CBFCBF02944CE384 /* ImageCropPicker.m */, - 2E7A2E2AC47B7F0AEE9D9E54095643D5 /* UIImage+Resize.h */, - 803AE5834C4E91DED51B2FC9ADFF2954 /* UIImage+Resize.m */, - 90BB7544FD08C32FFC06A1F992914AFD /* Pod */, - 3CD27FDEE527DCF039DB157BC84C390C /* QBImagePickerController */, - ED24AEAB39060E1724BF45F091B4D7C0 /* Support Files */, + 82A012E9979AE498413DA70862AB6DFF /* BugsnagReactNative */, + 0D0AD3655418022438CEF1B152B5381E /* EXAV */, + 6D7697A150FDA36C16E8D3A38337E1E1 /* EXConstants */, + 957EC19CCA8F674A2321D3B461A53A95 /* EXFileSystem */, + 42BFB295E0CF8B1595BA60D8B0DDBA0F /* EXHaptics */, + 9C67426BBFA5213CE185322D72CC433E /* EXImageLoader */, + 81C0870E49C2C1C6FCC73D1E4974A315 /* EXLocalAuthentication */, + 5D8A542AB9C7E0F72D9F10DF9CB9C7F1 /* EXPermissions */, + 7608AB024D1633872B42272B5E1F84FE /* EXWebBrowser */, + 06DA4245F4026EFCD52E35238DDAB908 /* FBLazyVector */, + 6D8A7CB344ECF80DB5110C18F436E842 /* FBReactNativeSpec */, + 29CB50E8CC69F4BB4048F2BB2B2F3823 /* KeyCommands */, + D7E1367DC02B906F7E6233718B617C29 /* RCTRequired */, + 968D1905EC986564B4FDF60599DC3F5C /* RCTTypeSafety */, + E1EF58544C1B364455464CE8173BBB43 /* React */, + 49DFB9D678A577EA84F92F9B365E3781 /* React-Core */, + F36B138CC8C6F856C9223C8DD70A9FAE /* React-CoreModules */, + 2F7690AE1FEF9B42F41E1F8F10D10735 /* React-cxxreact */, + C2699D76DBF367A07940914A73C27C56 /* React-jsi */, + 5325256D86BBD3F06F7B2A8D8CCEF5CF /* React-jsiexecutor */, + 0E7C726891F7E52D63E98B208261E36F /* React-jsinspector */, + 9A28FEB2FDDC6A6C50DD49E0728E987E /* react-native-appearance */, + 4690AAA8E351FE010BF9ADAE16FAA138 /* react-native-background-timer */, + 47B93930C148F7CF326BE7A02DA8C1B6 /* react-native-cameraroll */, + 9B8498762E7C4BFA0793E1B469FD23D0 /* react-native-document-picker */, + 9AD99CA97E87C898F621A96AF1CA0BCB /* react-native-jitsi-meet */, + FD5A082D0D2E340EEE411963B287F13E /* react-native-keyboard-input */, + 377C1100EC2B6658E5E10ED244F6F29F /* react-native-keyboard-tracking-view */, + D7754577A93FC5559AB6AB18E3CB980D /* react-native-notifications */, + AA7EF108B1AF468547A5017D68DE1F7B /* react-native-orientation-locker */, + 03E7D96C0B8726614C4C38EE7E118169 /* react-native-slider */, + 1EBAC964314CB542BDFBB1408A0EC70B /* react-native-video */, + EE41C57A7D32391E9ADD91A3A93F5666 /* react-native-webview */, + 8BC7B8D1E693EF5D8C8C84492C8695E5 /* React-RCTActionSheet */, + 4E13CFBCB0C4E5403AF5C72A29500C9F /* React-RCTAnimation */, + E98D67EA700C0206C36596B528DBCB8C /* React-RCTBlob */, + C8F1B7D0CBF30214472A56173889DEBF /* React-RCTImage */, + 2E25BD9D4FCAAE923B7BFF6C6A7D6DD2 /* React-RCTLinking */, + 97A3B90C8B725260DEF9C1EA02C502A0 /* React-RCTNetwork */, + F0327A6003E18CA9DA6F61303BDB3AC5 /* React-RCTSettings */, + 38E66E7C00D8504B205C563F363DD3DE /* React-RCTText */, + 824FCB05728F40A7EDB0DC578520661F /* React-RCTVibration */, + 767F2EBF981E8690469F1A8949CD95B2 /* ReactCommon */, + 16A8E7E73DC968A6084B1CC63E8D9EA4 /* ReactNativeART */, + B860D21F88BC75F1D273CDEB1130F71D /* rn-extensions-share */, + B09B1D032D62946A4FC9C721846F384F /* rn-fetch-blob */, + 77D12721DE5C7D86E49DFE81A82BCC48 /* RNAudio */, + 65D96D29A12911140E7B564778F069B2 /* RNBootSplash */, + A7BFC0F36DEB3F36F0FC94E319B441D0 /* RNDateTimePicker */, + 7ED1A83997F52CD057EE255451E9B4B4 /* RNDeviceInfo */, + 69A4802389093D8619F156274B3BB3A5 /* RNFastImage */, + 90FCB415BED4848548B3B66B60124569 /* RNFirebase */, + 784060C1F46AC7777BADE925641CCD77 /* RNGestureHandler */, + 59E05BEBD2D2251D2BFCDAE07C8F9A00 /* RNImageCropPicker */, + 216861150F80218EB8A430B06D640529 /* RNLocalize */, + 9191BDCF2CCBF32FF82A40EB7A711AA0 /* RNReanimated */, + 11C372AE7D76F21C17C5164D78F75EB1 /* RNRootView */, + C70AB892FD4BF69417F7CEB17715C03C /* RNScreens */, + 87F3033FCEAEAD21E9AD72258A4B448A /* RNUserDefaults */, + 6E3D9D081618F355E89BC08740B794C1 /* RNVectorIcons */, + F58E2BA46D9BE7AF7E944D70CB1A6DB4 /* UMAppLoader */, + A19A1CAEC2DC473E9CBBBFB88B53E2E2 /* UMBarCodeScannerInterface */, + 481F7DDC3704037F2C749AFF5137CDDD /* UMCameraInterface */, + ABD5AB3B3750E40F95CB957B0E21CA15 /* UMConstantsInterface */, + C6D3E90556C3FDA79928B553D2FF2DFD /* UMCore */, + 247345CA84B10AA5E3AB4E69734A154A /* UMFaceDetectorInterface */, + 8E9C320C4E8F816CA2D95CD6E65F4BF3 /* UMFileSystemInterface */, + 30F75404939D1A08E87AF042E94679A4 /* UMFontInterface */, + 9F2995718F449AA02D637224A2AB062F /* UMImageLoaderInterface */, + CD4E4159305A2E31809C3EF0588E1AED /* UMPermissionsInterface */, + 0A3E08B3A084D45CA8AF3B79FEBFF8C3 /* UMReactNativeAdapter */, + 601D81E7DB6D1A63E552FA48F9818A73 /* UMSensorsInterface */, + EF9BFAB2D3C8DA74B8320075B82B5445 /* UMTaskManagerInterface */, + 5C363871E886613C4F5656188959E6D5 /* Yoga */, ); - name = RNImageCropPicker; - path = "../../node_modules/react-native-image-crop-picker"; + name = "Development Pods"; sourceTree = ""; }; - B397576D54F99BE6B3A0265CDB86D9BC /* fabric */ = { + B3042851285834DAA75A12538B0233F1 /* RCTWebSocket */ = { isa = PBXGroup; children = ( - 2051A4A0C13C98C781BE0FD4281E279F /* crashlytics */, + 5D06D7D56F20F828FAB576DD995736F4 /* RCTReconnectingWebSocket.h */, + 3AAF20889079680A79DCBEB09D19E881 /* RCTReconnectingWebSocket.m */, + 5160329ADA5B68E17C053672412941D6 /* RCTSRWebSocket.h */, + F50C39B607D9C89E5365FAE973EEFBFB /* RCTSRWebSocket.m */, + F3163268C537ADBAD8FD410E13BD2103 /* RCTWebSocketExecutor.h */, + 42E0AF342E91FEF4D7EA5F7325F5828F /* RCTWebSocketExecutor.m */, + AA6B1E1FA365A5D4A33FF54B14068FCF /* RCTWebSocketModule.h */, + BC53B760117C17C307A13435465215B7 /* RCTWebSocketModule.m */, ); - name = fabric; - path = RNFirebase/fabric; + name = RCTWebSocket; sourceTree = ""; }; - B4A5F45A9E9B62BFC13C20E11D584CCE /* DevSupport */ = { + B4F6A7FA053B075A8363A7AD9D168C94 /* Pod */ = { isa = PBXGroup; children = ( - 1B762AC40BC975F6953559AAEA9DA262 /* RCTDevLoadingView.h */, - 1F325A2E92471F8C9A2034C213E23677 /* RCTDevLoadingView.m */, - FDB10C3A017B3DFF534B9D8ADD932C16 /* RCTDevMenu.h */, - 79D38FA4D831B0DF6C21AE95B915D46E /* RCTDevMenu.m */, - 5A7C248BADF3865A6618EF2C69F7E05D /* RCTInspectorDevServerHelper.h */, - DD6E3E7D56FED8F8A3BAE1742C879BE0 /* RCTInspectorDevServerHelper.mm */, - 7B9BAFFB20E75D4AC984487B5BB9A004 /* RCTPackagerClient.h */, - BC7FB46749CEB238F31830ACF280624A /* RCTPackagerClient.m */, - AC7A1ABFFBAE81D95EB7D34A5A84E6BF /* RCTPackagerConnection.h */, - 00CAF1D34389375225EDD890D60EACCE /* RCTPackagerConnection.mm */, - ); - name = DevSupport; - path = React/DevSupport; - sourceTree = ""; - }; - B6C27CF08DCFF69E58AB487E22C1195A /* RNLocalize */ = { - isa = PBXGroup; - children = ( - 12D02610BE157E747D2067DF8797C640 /* RNLocalize.h */, - F6627C545F0044B75E15296F257929F5 /* RNLocalize.m */, - E3CB10AEBB6C3219A8AEF9673E036B49 /* Pod */, - 5A85F47B6E9732D806BBD0D60DD0A792 /* Support Files */, - ); - name = RNLocalize; - path = "../../node_modules/react-native-localize"; - sourceTree = ""; - }; - B6FFCE5824FDD0AB5EDF222D3A5FE0DA /* RNFirebase */ = { - isa = PBXGroup; - children = ( - 77CA10718DB1A0C7E6A87F0F720C0ADD /* RNFirebase.h */, - 563B523AF5F9F59912F84B869AA67C55 /* RNFirebase.m */, - C0595D2F60A504CEDCF98DBC6C2E2792 /* RNFirebaseEvents.h */, - B53D4196483103E20CC3895A19D7515C /* RNFirebaseUtil.h */, - 51A510BB7901A687F6D704C090BF5DBB /* RNFirebaseUtil.m */, - E39B88C9816CD5856E69CC47B09B69C9 /* admob */, - 5D5F5AFD3AED91E98EA71AFFBE1B4FED /* analytics */, - 6B5256DAB3FED095B1611234FCE68927 /* auth */, - D5217E07AE52B8254893EE415E4118A7 /* config */, - 4AA7A2C153BA4DF34C688AE6120CA868 /* converters */, - 35B49F5FFE023F91B61C46A0A0677F32 /* database */, - B397576D54F99BE6B3A0265CDB86D9BC /* fabric */, - AFE65677D56ACA09C70C7E28BACC425D /* firestore */, - 38753B5D39666D18A3B6CAB0EEFD9A90 /* functions */, - 0519BCF2CC425E73BBFC88DDBD46E891 /* instanceid */, - F17570E75B49AEF379AFAEDDE0AA48C4 /* links */, - 8B0A7DE9DB41FBE5A459F89252C015E5 /* messaging */, - CB80E06798B737768D0EE96E27AE633F /* notifications */, - A89929660B3FDA2AF0D5E8784ECC1D0A /* perf */, - C1B62AE2950A8CA17B48DDA024DC7F45 /* Pod */, - 8B711B28DCA40AE985CB0C7E8857587A /* storage */, - 4F8BBADC6C0DA1DD0E0165A06997F368 /* Support Files */, - ); - name = RNFirebase; - path = "../../node_modules/react-native-firebase/ios"; - sourceTree = ""; - }; - B76DC88883A73DD992DD1CA264C0A51D /* Support Files */ = { - isa = PBXGroup; - children = ( - 2230B03BE8991D2B9453D1367C83808B /* RNScreens.xcconfig */, - E5C0B0A941461267A103EFB48484C56E /* RNScreens-dummy.m */, - 9CCF8D5B02E013026830BC2E0685339D /* RNScreens-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNScreens"; - sourceTree = ""; - }; - B832734F7C3CC42382705C3FC1928702 /* Pod */ = { - isa = PBXGroup; - children = ( - 909F788ADA611566390BEBF1E97A2246 /* RCTTypeSafety.podspec */, + 26D64362C346777E7673F5F179426F93 /* React-jsiexecutor.podspec */, ); name = Pod; sourceTree = ""; }; - B8662F96699262D7CDE400929D0F2EFD /* Pod */ = { + B788E545FAED88B23C64450C6955910A /* RawText */ = { isa = PBXGroup; children = ( - D76353E9B31FDBD0A1036D11A35B0552 /* LICENSE */, - 75AD64A166DF3FF036B7EB4B22388CF8 /* README.md */, - EFE28B08DDD3051D4C21D10B1530AB83 /* RNGestureHandler.podspec */, + 56C4203FB922C2EAEC70E9EF0E3F2ACA /* RCTRawTextShadowView.h */, + B3147B54DEFE43FB858A7D64F5171C34 /* RCTRawTextViewManager.h */, ); - name = Pod; + name = RawText; + path = Libraries/Text/RawText; + sourceTree = ""; + }; + B860D21F88BC75F1D273CDEB1130F71D /* rn-extensions-share */ = { + isa = PBXGroup; + children = ( + 3FD87BD5009369711A2F79C3FE3DAFC6 /* ReactNativeShareExtension.h */, + D88F548D375DB8B478A3622B94B83072 /* ReactNativeShareExtension.m */, + 7BB8B5503AC95FE21EF47B1C5153752F /* Pod */, + F7713C2064D6509CD159244C4E39E9ED /* Support Files */, + ); + name = "rn-extensions-share"; + path = "../../node_modules/rn-extensions-share"; + sourceTree = ""; + }; + B898FF0674107D7C7CFEEDCFBF7A63A5 /* admob */ = { + isa = PBXGroup; + children = ( + 933526594E2B49970B93C4331D304EB4 /* BannerComponent.h */, + 6838A85B8F9A94BEA6F282886E2B333E /* BannerComponent.m */, + AD2713659D9174B0454470119CFAA6D8 /* NativeExpressComponent.h */, + D322A8477E1753B864B19AED1740C45E /* NativeExpressComponent.m */, + D629257FE572D69ADAC74927CF7D729B /* RNFirebaseAdMob.h */, + 60978B2DFAAE74E084D487E2882749B4 /* RNFirebaseAdMob.m */, + C958BEB0EE0CA981708C7227698F7D9B /* RNFirebaseAdMobBannerManager.h */, + CDBD1952FFD5475618E10B078F85101C /* RNFirebaseAdMobBannerManager.m */, + A2A0865FC59C46533EFBE99829F2C6E2 /* RNFirebaseAdMobInterstitial.h */, + DE6B237DE91DF63A64ABC835E1448A62 /* RNFirebaseAdMobInterstitial.m */, + 8FCD67CABEA60260ACB5A3DE0C6E76F4 /* RNFirebaseAdMobNativeExpressManager.h */, + 45EA2FFCA9384FA8754DA17B8016F72B /* RNFirebaseAdMobNativeExpressManager.m */, + 770C7A2EFBD59228C347732E76C01546 /* RNFirebaseAdMobRewardedVideo.h */, + F524D386BD08B9CEE9E5CAC22FFEFE24 /* RNFirebaseAdMobRewardedVideo.m */, + ); + name = admob; + path = RNFirebase/admob; sourceTree = ""; }; B8FD7B66934E4234AD5AB2D5EE791A85 /* Support Files */ = { @@ -11732,6 +11711,25 @@ path = "../Target Support Files/Folly"; sourceTree = ""; }; + B93E696AD81C6E78001C38538C32EAB2 /* Pod */ = { + isa = PBXGroup; + children = ( + 2D6463879DFA88F1524A53FDFB525074 /* EXHaptics.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + B9F5D049D13D4CF55A254856B69E82C8 /* Support Files */ = { + isa = PBXGroup; + children = ( + 2CB56EB5913B806DD6E096F58F4D9FF3 /* EXAV.xcconfig */, + B48EC1054F17F4B28C2DA20FE8DF6D50 /* EXAV-dummy.m */, + 33DE8D9A5ACCF2548B1090773EC7AC38 /* EXAV-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXAV"; + sourceTree = ""; + }; BD2D1D74DC7B94DF4049B5D3BE7A4B0E /* Support Files */ = { isa = PBXGroup; children = ( @@ -11798,27 +11796,6 @@ path = JitsiMeetSDK; sourceTree = ""; }; - BEFA474A22B69034D2CD338306D577FF /* RCTImageHeaders */ = { - isa = PBXGroup; - children = ( - 6C9E54AD8B41D0C5767C7A07792FF8A2 /* RCTAnimatedImage.h */, - 63C04C9B808242A07812EE94BE482F00 /* RCTGIFImageDecoder.h */, - 4F79D12827D685E7336B5329A37851D0 /* RCTImageBlurUtils.h */, - 70950053816887A6954C4F28F3B68053 /* RCTImageCache.h */, - 979F8F7FCE58E9A2AC564E172E069713 /* RCTImageDataDecoder.h */, - CFF6C5FEBA77BC2E8951FC79B34E88E0 /* RCTImageLoaderProtocol.h */, - D0C5472A2621B7D14535D32C7F005C79 /* RCTImageShadowView.h */, - 59D99653C038F838A82E5EFF0C321F93 /* RCTImageURLLoader.h */, - 8D8C0E9C7C4ED804863EB5057FE496D1 /* RCTImageUtils.h */, - 6B58CF705D6278253C186C6E616EB8BF /* RCTImageView.h */, - CEDBA84A1F5B47029EDB87F08D3929A7 /* RCTImageViewManager.h */, - 1D2308A6F26544E607E45B047E910138 /* RCTLocalAssetImageLoader.h */, - DE05C87555688FF24DEF167EEFF2E549 /* RCTResizeMode.h */, - 0B32CE21976E9E9D0ECF62099636E0D0 /* RCTUIImageViewAnimated.h */, - ); - name = RCTImageHeaders; - sourceTree = ""; - }; BEFB2B9B5280E10F649378C9E3C14871 /* decode */ = { isa = PBXGroup; children = ( @@ -11826,62 +11803,92 @@ name = decode; sourceTree = ""; }; - BF0227FF44857CC3FEF39A64B3576681 /* react-native-slider */ = { + BF0239A9FB18298116C3B7E18AF61725 /* Support Files */ = { isa = PBXGroup; children = ( - 0D1DE266071B6B3F0DF6EFAD39C2915F /* RNCSlider.h */, - 237A1CC6D459F6C0934647A1B05F8B77 /* RNCSlider.m */, - 4DB898BA3530108074EAAD5490EFD23F /* RNCSliderManager.h */, - 64C48D8D013E8FE6E0BC2EE32C9C0330 /* RNCSliderManager.m */, - DF25F2EAD2298F20C09553F1EED6E84B /* Pod */, - AD2553C1438E6E4EFEC8D7A87DAA1C37 /* Support Files */, - ); - name = "react-native-slider"; - path = "../../node_modules/@react-native-community/slider"; - sourceTree = ""; - }; - BF3427921F7C07DEFE41B3CC80B4ED1D /* Pod */ = { - isa = PBXGroup; - children = ( - CE5EA316A2E1C3F6BCEB417F73B7C7CB /* EXConstants.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - C0FFA12C7BA90E2FACA6D09F6F4876A4 /* Support Files */ = { - isa = PBXGroup; - children = ( - FFBE366BE491287C13480544CDF01F43 /* UMTaskManagerInterface.xcconfig */, + 2DF80B83CB74EB8528D11F700867D9EC /* Yoga.xcconfig */, + 7B4AF1BC881ABF078126D2DE6D9EDC0E /* Yoga-dummy.m */, + 152883F696C0BA3782146C4A42FF82F9 /* Yoga-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; + path = "../../../../ios/Pods/Target Support Files/Yoga"; sourceTree = ""; }; - C1480F45EB7E3E22CC87E2AABA76A0DC /* Pod */ = { + BF186C75EA06E6813F1FBAC8C998D99D /* Handlers */ = { isa = PBXGroup; children = ( - 039F8CCF120C1DF125B71E7498805BE2 /* LICENSE */, - EAD97441CC320A33DF4D6CF5244D8890 /* README.md */, - 949E9A305D19F1E2BF149A0814E591B0 /* RNAudio.podspec */, + AE263565EA9A6623E8098BDDC664794C /* RNFlingHandler.h */, + B2FFA88F32071559CBD53527B42B8AF9 /* RNFlingHandler.m */, + 54002BF23C709D0073AEFC546E5E45E9 /* RNForceTouchHandler.h */, + AA7A8DA70DD67769DD72D97B9581CC98 /* RNForceTouchHandler.m */, + 215284327ECF7BC0EC9C01C23DA52960 /* RNLongPressHandler.h */, + C8A1AD0ABD4B51F526A2B68A27A82E6E /* RNLongPressHandler.m */, + 2A59767FF3F8EBC30C89F5828D15A70F /* RNNativeViewHandler.h */, + AD56F36405180E5DBE926AB9B315D565 /* RNNativeViewHandler.m */, + B31E1FEB4913F38A62E60358EB9BCE37 /* RNPanHandler.h */, + 3C0F9B2DA9AFD56D2F2E9B9C75991BF6 /* RNPanHandler.m */, + 280D196B50B06623BAC88F7C17580D75 /* RNPinchHandler.h */, + 19B7DC0C36E8788004AC04F6BE858392 /* RNPinchHandler.m */, + 9D68A6D7E67D45B0196E2F6716B6A190 /* RNRotationHandler.h */, + 48FB58C1E8633B6CA3292D48F848E3F3 /* RNRotationHandler.m */, + 5DD3CB396B1E0BC01001BDFCBB89C6BD /* RNTapHandler.h */, + 1BDD5D8C1862DCB74794EE23E2C9D4D0 /* RNTapHandler.m */, ); - name = Pod; + name = Handlers; + path = ios/Handlers; sourceTree = ""; }; - C1B62AE2950A8CA17B48DDA024DC7F45 /* Pod */ = { + C017DB12561A783826FF948A1F121C3D /* Singleline */ = { isa = PBXGroup; children = ( - 2BA2F409468E004767A27422AEB33494 /* RNFirebase.podspec */, + 978DA240A5DA324CB45468880D17880F /* RCTSinglelineTextInputView.m */, + 88DF8989F874081F1E477ACCBD40F34C /* RCTSinglelineTextInputViewManager.m */, + 1C258ACC2E0DC8D657144811C2C0F840 /* RCTUITextField.m */, ); - name = Pod; + name = Singleline; + path = Singleline; sourceTree = ""; }; - C457462B0ED6025ECC609E14CFB85393 /* Support Files */ = { + C0AC1B78ED9785E3BB7A6DAA243F0543 /* Support Files */ = { isa = PBXGroup; children = ( - 1C4CF928A9E88CA633B6F95DA4751A46 /* FBLazyVector.xcconfig */, + D65ED7023ED69D130708EF8FEC3925FA /* React-jsiexecutor.xcconfig */, + 3CF969E9497D5EEA00712AC408040AF6 /* React-jsiexecutor-dummy.m */, + 54008DE5511230DD7D05049D49C3B1B3 /* React-jsiexecutor-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/FBLazyVector"; + path = "../../../../ios/Pods/Target Support Files/React-jsiexecutor"; + sourceTree = ""; + }; + C2699D76DBF367A07940914A73C27C56 /* React-jsi */ = { + isa = PBXGroup; + children = ( + D63308F085833F5B80CFD4C19FC1B4DA /* JSCRuntime.cpp */, + 12D0680A4FB4EE6DAC0C2C1E7E07543D /* JSCRuntime.h */, + 433AAF23E6B69256BECA8C24F639F2F5 /* jsi */, + C300B1AF29EB4021A6FBE1F9F6F46AC5 /* Pod */, + 50DAF21F75BA46F0CFF1BF4B8238D87D /* Support Files */, + ); + name = "React-jsi"; + path = "../../node_modules/react-native/ReactCommon/jsi"; + sourceTree = ""; + }; + C300B1AF29EB4021A6FBE1F9F6F46AC5 /* Pod */ = { + isa = PBXGroup; + children = ( + 8EE70BC3A8197176114E7EABB6218665 /* React-jsi.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + C3205B7DE975C5140E227DACC552CF13 /* CxxUtils */ = { + isa = PBXGroup; + children = ( + 148A1C8D6353A1FF05E6C4F40DF9FE8A /* RCTFollyConvert.h */, + 83448ADF44CF1911CCE4D8AAB2164880 /* RCTFollyConvert.mm */, + ); + name = CxxUtils; + path = React/CxxUtils; sourceTree = ""; }; C5AC19D7A9D457167D564B1E75C41A57 /* encode */ = { @@ -11891,37 +11898,109 @@ name = encode; sourceTree = ""; }; - C5D63C9FF668845B812AF08132F5EB8B /* Pod */ = { + C5C5F26E96193E0BC6081DC7A572DF0C /* Core */ = { isa = PBXGroup; children = ( - 1453431E0BC0744C320103A0F1D5378A /* React-jsiexecutor.podspec */, ); - name = Pod; + name = Core; sourceTree = ""; }; - C5DBF438A45A754FF69BFE3D149EAE12 /* RemoteNotification */ = { + C61F00511035F3B8FF833E7B8B63B34A /* Support Files */ = { isa = PBXGroup; children = ( - 23AD90F6598D2FFC0B3AE21D97591D1C /* EXRemoteNotificationPermissionRequester.h */, - 0D0188ABDD81B9AA39D4779AFAEAE851 /* EXRemoteNotificationPermissionRequester.m */, + 189247C2BB52027FFA0C7C6710FE6764 /* React-CoreModules.xcconfig */, + B140EBBBDF37F8A960B5827F2CB7B09E /* React-CoreModules-dummy.m */, + 8F373EF97D2F667F5BA156702ACBEE0F /* React-CoreModules-prefix.pch */, ); - name = RemoteNotification; - path = RemoteNotification; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-CoreModules"; sourceTree = ""; }; - C77A78A8DC8B9F942CCE56285011EC28 /* UMReactNativeAdapter */ = { + C6D3E90556C3FDA79928B553D2FF2DFD /* UMCore */ = { isa = PBXGroup; children = ( - 111BBF6A1A8F20F888226023AC96D7F2 /* UMBridgeModule.h */, - 93FF1883F6A41BDE0B5B1EE549ED7EB6 /* Pod */, - CEE5281E229493C6BCC6AFF6414DCBE2 /* Services */, - F76AB785A32C920886FB66695E6C808D /* Support Files */, - 0B29B022FC7343A88C6F63FF24ACC458 /* UMModuleRegistryAdapter */, - EE4220593CD3F27E4C7DE9D063B42DFE /* UMNativeModulesProxy */, - 91221B945E10E6FC6AEAE1FC8479A232 /* UMViewManagerAdapter */, + DCC990FEA4CF0D91B5AA704511B9A366 /* UMAppDelegateWrapper.h */, + 14A8661687FD61C71A893E1752F079E7 /* UMAppDelegateWrapper.m */, + 41C564A2EAAA42E538E570410F078D09 /* UMDefines.h */, + B8913B693F912E6D545EDCBEB75161E5 /* UMErrorCodes.h */, + CE5B2A1B6F1EFD38BF8C4D5052784952 /* UMErrorCodes.m */, + 0018DB3096F92D334478C93DC9F0224C /* UMExportedModule.h */, + FE36AD354A26A507F517A0A4F4B1692A /* UMExportedModule.m */, + 89FCAA5092C605B11E0AE9CF0E37A25F /* UMSingletonModule.h */, + 3300AF5C29476CE937A000A54DC91A65 /* UMSingletonModule.m */, + 86990969EC135D10A5E2D91C04647541 /* UMUtilities.h */, + DB374EFA51479560B62F10435C12AD7C /* UMUtilities.m */, + 2506D056FF1B5F554E6B1F7F8CA98110 /* UMViewManager.h */, + E879EE624715C69DD9F0F4E2CE434B74 /* UMViewManager.m */, + 9A5EBDA2852FF57826543043675865FB /* Pod */, + 17C4F089BDEDD5172F5587141F514CA7 /* Protocols */, + 754BC65B3E384E70A15C9B89EC311324 /* Services */, + EBC12745279778A882C72416E514E87C /* Support Files */, + 3CE3C357B97965F1EB80E54CA3AE881C /* UMModuleRegistry */, + 4FB4EC3B30CA4BFDE8C9BCA576D389F3 /* UMModuleRegistryProvider */, ); - name = UMReactNativeAdapter; - path = "../../node_modules/@unimodules/react-native-adapter/ios"; + name = UMCore; + path = "../../node_modules/@unimodules/core/ios"; + sourceTree = ""; + }; + C70AB892FD4BF69417F7CEB17715C03C /* RNScreens */ = { + isa = PBXGroup; + children = ( + 1F0555768DB0E5A54A2ADB6CC879ED19 /* RNSScreen.h */, + C13C31ECD854DA37DE88AE1C00078DA8 /* RNSScreen.m */, + 16146E7458BB27ED2AAAAFE6755DE00B /* RNSScreenContainer.h */, + A152BFA1C5A859956B6D2415A42FDCA6 /* RNSScreenContainer.m */, + EF91A2BB1EDA2CD251578C0B4ABE65DE /* RNSScreenStack.h */, + 4125B11710991F319C4DB376FBE1CA9F /* RNSScreenStack.m */, + 6AA5EC5DA0AC2A640AD55520734F6D8F /* RNSScreenStackHeaderConfig.h */, + 72C42A5379F7678BC2480A469AE85D1A /* RNSScreenStackHeaderConfig.m */, + 1F9E65A79F95D4FF6189EFD3AAF437FE /* Pod */, + C761206C5F051CCDAB52F74CB26B5A6B /* Support Files */, + ); + name = RNScreens; + path = "../../node_modules/react-native-screens"; + sourceTree = ""; + }; + C718804C9031CD08FCCE88B1105D910B /* storage */ = { + isa = PBXGroup; + children = ( + 52CA71561A2446043A4E25FC55B9D7F4 /* RNFirebaseStorage.h */, + 39C1FDADC71496F9DD3313658F36CD5F /* RNFirebaseStorage.m */, + ); + name = storage; + path = RNFirebase/storage; + sourceTree = ""; + }; + C761206C5F051CCDAB52F74CB26B5A6B /* Support Files */ = { + isa = PBXGroup; + children = ( + 6B07E156D4BC56BAF650BF430017ADA8 /* RNScreens.xcconfig */, + F75B10ADD795D175038A5C942CC2F902 /* RNScreens-dummy.m */, + FC6ADFB46F1C49C39B89A1605D84EF32 /* RNScreens-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNScreens"; + sourceTree = ""; + }; + C78F7233EE2D4406A69AA0272F01DC28 /* Support Files */ = { + isa = PBXGroup; + children = ( + 9838DD02C421D6A67A4DABE8E5BBD4DE /* RNBootSplash.xcconfig */, + A5783075A6C9B523DDA3C0B60647B0FD /* RNBootSplash-dummy.m */, + A090DCBB0F337EA42C4E3977A9F0B1B0 /* RNBootSplash-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNBootSplash"; + sourceTree = ""; + }; + C7B597B80CF849B7979956947F8C4A8E /* Filters */ = { + isa = PBXGroup; + children = ( + CF1DA6CA493E93D7AFA97F5096626F49 /* BSG_KSCrashReportFilter.h */, + 43757FFCC4023081D0E0FA820FE32047 /* BSG_KSCrashReportFilterCompletion.h */, + ); + name = Filters; + path = Filters; sourceTree = ""; }; C7D050BE37BEB97CCFF3C328E1D81D8A /* Logger */ = { @@ -11934,26 +12013,35 @@ name = Logger; sourceTree = ""; }; - C870152CE6300E3695F14BDD3BF506E1 /* RCTSettingsHeaders */ = { + C8F1B7D0CBF30214472A56173889DEBF /* React-RCTImage */ = { isa = PBXGroup; children = ( - 8C96A05BA36C9D48DA39C7BD583F2C35 /* RCTSettingsManager.h */, + 4DBF282DA8760EFB4100EDA72085C8D0 /* RCTAnimatedImage.m */, + 490B8C7C98FC25E75F19D4B8B135D6F5 /* RCTGIFImageDecoder.m */, + 577553B429DDED8615E5E164CB183A63 /* RCTImageBlurUtils.m */, + 018DA950D2BC6582FBF0875EF15BE036 /* RCTImageCache.m */, + 9452FD50EC910E745BFEA70CD7D7DFC5 /* RCTImageShadowView.m */, + ABB251627EA1EA9F5A808A72F87A62A9 /* RCTImageUtils.m */, + 834EB2958566569C54BB3BDFDCF112CD /* RCTImageView.m */, + 525EB8BBFE9CDE17D718698C8776AD64 /* RCTImageViewManager.m */, + ACE6509B53357A0C5DADE6031CB9CCCB /* RCTLocalAssetImageLoader.m */, + 70088BB7379E97AB2D9E9FF95F92F140 /* RCTResizeMode.m */, + E76502808A9CBAD48934D12CB8CA9BCD /* RCTUIImageViewAnimated.m */, + 8FD3406EFE24F28F50867946EEB4450B /* Pod */, + 4D102FBD7E42969A6E5555EA558F3314 /* Support Files */, ); - name = RCTSettingsHeaders; + name = "React-RCTImage"; + path = "../../node_modules/react-native/Libraries/Image"; sourceTree = ""; }; - C8BBA0A4DB504250596CC0740851129C /* RCTTypeSafety */ = { + C93AC788C6BD7BBC749D28E42F88C3EB /* Pod */ = { isa = PBXGroup; children = ( - F4581140717803888E5C440CE18E3EEA /* RCTConvertHelpers.h */, - B006FACD73AA8737DCDB4B87F42C1DCE /* RCTConvertHelpers.mm */, - A016D6A210522AC24080C76A0C53477C /* RCTTypedModuleConstants.h */, - C1045733D4EEFDFE0FBD40488F4887CD /* RCTTypedModuleConstants.mm */, - B832734F7C3CC42382705C3FC1928702 /* Pod */, - 05284A9D524DADB48163C3176DCF6738 /* Support Files */, + 9A5ABF6A709F9F8B7344A710779D51D8 /* LICENSE */, + 91CBE1B1C314D1D24C75150A144A3BE1 /* README.md */, + B35987451A3EB17624358086304CB840 /* RNDeviceInfo.podspec */, ); - name = RCTTypeSafety; - path = "../../node_modules/react-native/Libraries/TypeSafety"; + name = Pod; sourceTree = ""; }; C9762B9B989E3D2E0734F2D20257BA15 /* Support Files */ = { @@ -11965,96 +12053,31 @@ path = "../Target Support Files/GoogleAppMeasurement"; sourceTree = ""; }; - CA05C6D130127E0746BAFC89E13ECE9F /* rn-extensions-share */ = { + CA5B2FB35C804FF0EE7A1DEF3AAB9BC4 /* Pod */ = { isa = PBXGroup; children = ( - 2E3477F05E5AC74A130FA66DEB8A9335 /* ReactNativeShareExtension.h */, - F47313816C0E531155F60FD26CB42BA0 /* ReactNativeShareExtension.m */, - 5BAACA145A8EE698CEEF29EB375F25A6 /* Pod */, - 9A75682BDDD099E71CEDE4F2707A9909 /* Support Files */, - ); - name = "rn-extensions-share"; - path = "../../node_modules/rn-extensions-share"; - sourceTree = ""; - }; - CA068D98FFDD4CC8B6D7314BD7C65AA1 /* Video */ = { - isa = PBXGroup; - children = ( - D0C142362A2D417012FCB7FD075FCC32 /* EXVideoManager.h */, - F2A1F3952414A47118BF180CB3526A97 /* EXVideoManager.m */, - 38EAD67CF2A3E1955A132851281FF6EE /* EXVideoPlayerViewController.h */, - 02B778A4B4AB6FC889FF15E6943BFC10 /* EXVideoPlayerViewController.m */, - BFC75BD74E2839F062A16CD3F3ECBDD9 /* EXVideoPlayerViewControllerDelegate.h */, - 56D107B000A8B0D9871E0D276C2B74AC /* EXVideoView.h */, - E7D2442F6309A532AB05953CA63E31B1 /* EXVideoView.m */, - ); - name = Video; - path = EXAV/Video; - sourceTree = ""; - }; - CA133D8A948994865AC442C0F0E0668F /* Sentry */ = { - isa = PBXGroup; - children = ( - E2E450206ED9BCA2BE53194642EDE138 /* BSG_KSCrashSentry.c */, - 192F177DEC925CC3D5188479BC0B162A /* BSG_KSCrashSentry.h */, - D66B5E4A692DDB48B6E24A697D6489FA /* BSG_KSCrashSentry_CPPException.h */, - 9408139B2A13DBE3A839E2F98232F29F /* BSG_KSCrashSentry_CPPException.mm */, - 637A12296AAF3AF85429FA156B9063A6 /* BSG_KSCrashSentry_MachException.c */, - 763596D554F9B7C3843E77D1371DBAB0 /* BSG_KSCrashSentry_MachException.h */, - 4F6D899B01559CE22200709ABCCA5208 /* BSG_KSCrashSentry_NSException.h */, - B7306BA5C2451AA1BBB2567333902B39 /* BSG_KSCrashSentry_NSException.m */, - DE28BBB1276CDE8D23BCA233CC99E240 /* BSG_KSCrashSentry_Private.h */, - 35D6078ABC0F8ACC83F36B6668517CDA /* BSG_KSCrashSentry_Signal.c */, - EFAA389BF7DCB78B851D88EE621C0B5D /* BSG_KSCrashSentry_Signal.h */, - 2A4B9563B1F54378C50CF08B27CC588C /* BSG_KSCrashSentry_User.c */, - 91CE1C2FF65D6D5645F184280CB2BF87 /* BSG_KSCrashSentry_User.h */, - ); - name = Sentry; - path = Sentry; - sourceTree = ""; - }; - CAD3AD004E8A62A680BA555CC76ADA79 /* Pod */ = { - isa = PBXGroup; - children = ( - DC17CCAE1DCEE23AC42BC149FE3A64A7 /* UMFontInterface.podspec */, + 4024F08ED7141F641C6D0F5B1CC7C75D /* UMImageLoaderInterface.podspec */, ); name = Pod; sourceTree = ""; }; - CAE49D67439D10716B0F9064A2822BA3 /* Pod */ = { + CB57D8EDCFBC6E588ECFD35966437CF6 /* Pod */ = { isa = PBXGroup; children = ( - C231E24D0601A09B1D661E9021E1FF10 /* LICENSE */, - FF3D3189034C9738319262D6183EC713 /* react-native-appearance.podspec */, - A3BBBD7319B3EAEDF4C76F20AF2AAFE4 /* README.md */, + 600BF46675EC37CC1E4EB9CAEEF7BCDA /* React-RCTText.podspec */, ); name = Pod; sourceTree = ""; }; - CB5CA4EA181D9A264B64167A936A5B3F /* react-native-keyboard-tracking-view */ = { + CBF823573C79B7BBCD55B5B21FA365DE /* Support Files */ = { isa = PBXGroup; children = ( - 1A9591959FA5B1AFCBDC72A739EF39A9 /* KeyboardTrackingViewManager.h */, - A0B0145EB41C3A38809588C7EC1B0453 /* KeyboardTrackingViewManager.m */, - 797EEC8DEE67855B815F6FA3ADF0A50F /* ObservingInputAccessoryView.h */, - B4998D6EA6CE1D68BCEAE9418CC9E1EA /* ObservingInputAccessoryView.m */, - 461C33C67D13793FF59480A4A91A14CD /* UIResponder+FirstResponder.h */, - CE01AF03A65439C83A9931393091FF1C /* UIResponder+FirstResponder.m */, - 2D35A121CBB241C9C2D917767EE033D3 /* Pod */, - DE7BB8853054F6FDE97BF7CA1E954322 /* Support Files */, + F2A0626FD5854C9AB571E75A278FE003 /* React-RCTNetwork.xcconfig */, + 04AC24105BA7DC4445C81E39B4B8D8BE /* React-RCTNetwork-dummy.m */, + 3FD7FB0A67FFB3A6571000B0F9EF4FC2 /* React-RCTNetwork-prefix.pch */, ); - name = "react-native-keyboard-tracking-view"; - path = "../../node_modules/react-native-keyboard-tracking-view"; - sourceTree = ""; - }; - CB80E06798B737768D0EE96E27AE633F /* notifications */ = { - isa = PBXGroup; - children = ( - 3DFBCBC2AB042618C7603F21EE7D8E7D /* RNFirebaseNotifications.h */, - 765838AF981D83C8AD2FD83BB0F79731 /* RNFirebaseNotifications.m */, - ); - name = notifications; - path = RNFirebase/notifications; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTNetwork"; sourceTree = ""; }; CC2718A0477F08C40D8D833570D6DCF7 /* Support Files */ = { @@ -12066,84 +12089,84 @@ path = "../Target Support Files/boost-for-react-native"; sourceTree = ""; }; - CE101CD00A95257BD400A64EEF14DC78 /* React-RCTActionSheet */ = { + CC9E4FEF1978DBDF894BAA50CEB1EB50 /* database */ = { isa = PBXGroup; children = ( - C2191B7CF81D4C1F7B3391CDB0A323CC /* RCTActionSheetManager.m */, - 3DBD4B5C947FFC79481E65BC463B34B7 /* Pod */, - E75E4F59593FCD1960F6A2BE0AE5DC04 /* Support Files */, + 5A6A4F24729B892F09EEE969DB9C3100 /* RNFirebaseDatabase.h */, + 747C66EBF0E1D41E0EB7F66EA1494C98 /* RNFirebaseDatabase.m */, + 56768CE84A6E4F7706E8349354FD227B /* RNFirebaseDatabaseReference.h */, + 743F5E07CF92C6F606DD48A3BCCA1B27 /* RNFirebaseDatabaseReference.m */, ); - name = "React-RCTActionSheet"; - path = "../../node_modules/react-native/Libraries/ActionSheetIOS"; + name = database; + path = RNFirebase/database; sourceTree = ""; }; - CE4585C29DE8B9957503D29782C14336 /* internal */ = { + CD4E4159305A2E31809C3EF0588E1AED /* UMPermissionsInterface */ = { isa = PBXGroup; children = ( - A261092ADB1CF40A6E3D2F9C7D161383 /* experiments.cpp */, - A27B300D06E198DEB17D06A4FFC3D339 /* experiments.h */, - 0DEE0DF28D1C938FB2E16A1233B1CEFB /* experiments-inl.h */, + EE56065787BBC3451B22B3A0C59BC47D /* UMPermissionsInterface.h */, + 505D956DD6CAAC97A19BD66A10131789 /* UMPermissionsMethodsDelegate.h */, + 140D85D2FCCE01CFA3794C3526771E62 /* UMPermissionsMethodsDelegate.m */, + 291516A2A64F6B8BB33660C84E91573C /* UMUserNotificationCenterProxyInterface.h */, + DD149305F868C34F075345D255E9B767 /* Pod */, + 10370B45AC99A668C3F2518C9359639F /* Support Files */, ); - name = internal; - path = yoga/internal; - sourceTree = ""; - }; - CE9F7508057A628A1ADD141C430033DA /* Support Files */ = { - isa = PBXGroup; - children = ( - ACDC8A7FA99E4FF01F265E0D69134BB5 /* ReactCommon.xcconfig */, - 79384E3DF198EE6F9073B43F79D0E5BE /* ReactCommon-dummy.m */, - 6EF6C0021F4ADAA1E452F1B22B02FB85 /* ReactCommon-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/ReactCommon"; - sourceTree = ""; - }; - CEE5281E229493C6BCC6AFF6414DCBE2 /* Services */ = { - isa = PBXGroup; - children = ( - 04F28DD77A9FB29773F86A16D7162345 /* UMReactFontManager.h */, - B836C4150968AB6CB201FDBEAF345D62 /* UMReactFontManager.m */, - ED82E9BE7377A40C6A4CBA6B7667F7E1 /* UMReactLogHandler.h */, - 4BD1FADBF32F99E0345A1A2D2169CAA8 /* UMReactLogHandler.m */, - 3D44ADEA66B7D9218BADCBC933C7A6B3 /* UMReactNativeAdapter.h */, - E70612D1EB1C6A75F6BC4F0F3DBA3E8B /* UMReactNativeAdapter.m */, - 903FE982376C7A755BE05D5F6CEFBB16 /* UMReactNativeEventEmitter.h */, - 56AFFBA8F4384DFAB0FA919B7EAC03AD /* UMReactNativeEventEmitter.m */, - ); - name = Services; - path = UMReactNativeAdapter/Services; + name = UMPermissionsInterface; + path = "../../node_modules/unimodules-permissions-interface/ios"; sourceTree = ""; }; CF1408CF629C7361332E53B88F7BD30C = { isa = PBXGroup; children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, - 16A6F3810248B27816437689C7C6326A /* Development Pods */, + B29DE9FCCC737C3E1BFD4F3B716A81EA /* Development Pods */, D89477F20FB1DE18A04690586D7808C4 /* Frameworks */, 9160F20DFF7DC7F1CACEE969035ACE20 /* Pods */, - 624EFCD3BA0C90967B36FE2B156BE532 /* Products */, + 890910D2505ED7E061FABFCD61823A18 /* Products */, A5ADA69422B84A7580C82CAA5A9168D1 /* Targets Support Files */, ); sourceTree = ""; }; - CF566FC0E705CCBA15E8DB8DCD6A8774 /* Support Files */ = { + CF256EB76BF3C0AAF27AC421B283BCEC /* Pod */ = { isa = PBXGroup; children = ( - DF9C1A1209FD3E5DBEEE7B801F7CEB32 /* EXPermissions.xcconfig */, - 630A182E2B144F70AD92BEAB51A562BD /* EXPermissions-dummy.m */, - 09B3467217EC6F9C8309249B31D9B0C9 /* EXPermissions-prefix.pch */, + 0D9715EB95C9838A87A58AD5F196C593 /* EXConstants.podspec */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXPermissions"; + name = Pod; sourceTree = ""; }; - D06473E9C42061F1C6EC4051EF5AA20F /* Pod */ = { + CF3B9070ED4011E1DA0AA3784370E6C6 /* internal */ = { isa = PBXGroup; children = ( - 7282C62A881942BEDB9DD78FCEFE0BBE /* LICENSE */, - 1D42BAE0F9442B6D18FBAEE5DBFA1044 /* README.md */, - CDA228EE1AA13FB02756455F56CB21E1 /* RNScreens.podspec */, + AA513D0B104EF704EEBE81CD19D01108 /* experiments.cpp */, + 7BE0009AD5A62049E3DBCC72BB4C2C2E /* experiments.h */, + B43AF60286E224ACFA145A668E0211C9 /* experiments-inl.h */, + ); + name = internal; + path = yoga/internal; + sourceTree = ""; + }; + D022F2B2C803BAAEEF46852DDF1FC99B /* Pod */ = { + isa = PBXGroup; + children = ( + 69852DDB634F936AD67EF4AFEEC06D8D /* advancedIos.md */, + 45A7EA6D4B7C0B57FE1F1B0AE74005CE /* installation.md */, + 6538AEC00D420A68AEE31EED4F6580C8 /* LICENSE */, + DE9658FF8987FF4A567A0FC9DC49582D /* localNotifications.md */, + E8BD3D4427BD842D570DD8DC37853DEA /* notificationsEvents.md */, + 33FF8C6ED70EDD30BE81B4D019D5D7C2 /* react-native-notifications.podspec */, + B758A346013E4A3F52D56087B78F9A83 /* README.md */, + 98CA230ACBC6FAFCFD4918557133F565 /* subscription.md */, + ); + name = Pod; + sourceTree = ""; + }; + D170E80B182EC1326B18C57A13ED2FED /* Pod */ = { + isa = PBXGroup; + children = ( + 24A687B750C85CF34EF2CD2D32ED597E /* LICENSE */, + A6F8C6869B72004BE90924A432D55046 /* react-native-video.podspec */, + BD2E48A06D39D267D0A6DE54100BE71A /* README.md */, ); name = Pod; sourceTree = ""; @@ -12159,55 +12182,21 @@ name = Reachability; sourceTree = ""; }; - D34B5D039091BF18908D5BC74A276D9C /* Support Files */ = { + D28D7DAA3C32A57F7E68530A96482DEE /* Pod */ = { isa = PBXGroup; children = ( - 798300D04979555E318EDE2C3006F241 /* FBReactNativeSpec.xcconfig */, - AA4BA87D387B27FC4AAA46D250D21431 /* FBReactNativeSpec-dummy.m */, - 78A12C4301EE6391A53A1577A125DB0B /* FBReactNativeSpec-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/FBReactNativeSpec"; - sourceTree = ""; - }; - D4531833B94DBC77CC0DC1B740F4EDD2 /* Pod */ = { - isa = PBXGroup; - children = ( - AF41A58E42C12B0181094DB4940A2857 /* EXImageLoader.podspec */, + A2F288C170B5F2132D63BEBBA3CDC0C7 /* EXWebBrowser.podspec */, ); name = Pod; sourceTree = ""; }; - D48239A9D05F11C13B96038FAFD2BBD2 /* Support Files */ = { + D4FDB6459CDA592A6EA166545D9D82C1 /* Support Files */ = { isa = PBXGroup; children = ( - 3BCA0395DBAC79F4F0ABBAE0184AED51 /* Yoga.xcconfig */, - 251B86E92411878C6682553867AC98E8 /* Yoga-dummy.m */, - BC1FDEAA35C7D2C0E5B775568F9E43F5 /* Yoga-prefix.pch */, + 390A59F129F705D241B9686AA66E2D7A /* FBLazyVector.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/Yoga"; - sourceTree = ""; - }; - D4F8640B351E2D6438C6AA86BBFAC73C /* Support Files */ = { - isa = PBXGroup; - children = ( - 3EB8F3B4B796FECAFE72B6212207E684 /* ReactNativeART.xcconfig */, - FD45C83428345C00F5023AA9C5BF666B /* ReactNativeART-dummy.m */, - C8EFC9FC0F04542A0C0EC77613AF1962 /* ReactNativeART-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/ReactNativeART"; - sourceTree = ""; - }; - D5217E07AE52B8254893EE415E4118A7 /* config */ = { - isa = PBXGroup; - children = ( - CD49EF6D76776DC6E5F1F172C0945E8E /* RNFirebaseRemoteConfig.h */, - 5F089F3A124DB6CECEAC5C113F2A71FE /* RNFirebaseRemoteConfig.m */, - ); - name = config; - path = RNFirebase/config; + path = "../../../../ios/Pods/Target Support Files/FBLazyVector"; sourceTree = ""; }; D55310A3D7A33E73CB444A32C1FF022B /* boost-for-react-native */ = { @@ -12219,48 +12208,28 @@ path = "boost-for-react-native"; sourceTree = ""; }; - D55FD50A813CE81764D8AD5B14D65C16 /* RCTActionSheetHeaders */ = { + D5656FDA6FD66D5606FAF2B5A9F9824E /* UMModuleRegistryAdapter */ = { isa = PBXGroup; children = ( - 04BD6390C90806014868F7551406BFDA /* RCTActionSheetManager.h */, + 76A01F927DE5F13405330006480C2E10 /* UMModuleRegistryAdapter.h */, + B163ED9C4BB7942553E67152AD19FC89 /* UMModuleRegistryAdapter.m */, + 4F9AD33270B26611BCAC001F0B32C8C0 /* UMModuleRegistryHolderReactModule.h */, + 31EE95149D57FDB9540F3A45E93F2594 /* UMModuleRegistryHolderReactModule.m */, + 312EAC12211C21781B4792A8CEB9CF55 /* UMViewManagerAdapterClassesRegistry.h */, + 08A767C7171B7484BC840053A91D0193 /* UMViewManagerAdapterClassesRegistry.m */, ); - name = RCTActionSheetHeaders; + name = UMModuleRegistryAdapter; + path = UMReactNativeAdapter/UMModuleRegistryAdapter; sourceTree = ""; }; - D603A09B76B2BA8B76DF88D06A1DFA24 /* Support Files */ = { + D583C4762FED683674C7C1A87E20571B /* Pod */ = { isa = PBXGroup; children = ( - 00002E8FB2C0CA6E6D8DFBF2547CADBC /* UMSensorsInterface.xcconfig */, + 1B286F654B59426930A49C1708B01F8A /* LICENCE */, + 74FD8392A11AE2E8B81DD131A4011952 /* react-native-cameraroll.podspec */, + 87CC336CAC5653A542412393A4F8F4AB /* README.md */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; - sourceTree = ""; - }; - D6C056C6BABAC6C5F11B88DBD1A2EAD7 /* UMCore */ = { - isa = PBXGroup; - children = ( - 3D2BDE2A8E9321E6BBFBD4DD0F868D7D /* UMAppDelegateWrapper.h */, - E16A382094A038ECB6A60E86DDFB51FD /* UMAppDelegateWrapper.m */, - EEF472EFFFC67AB1A9C798AF6E7D9B7F /* UMDefines.h */, - D3361AEBF5A9BBEC8490AE74D6138124 /* UMErrorCodes.h */, - 2730787EC1F60F38BD758D8BE06D123E /* UMErrorCodes.m */, - 8CBCB1389DF7CF22F69B32B10EE16F0E /* UMExportedModule.h */, - AA55F1D992C614B377DABE157C495CD4 /* UMExportedModule.m */, - 41FC7635615084D37747948828C3D7A9 /* UMSingletonModule.h */, - 567CDF6AF52742501433BA4D852AF0C7 /* UMSingletonModule.m */, - 0E325B1606A5D238A63D17132321A066 /* UMUtilities.h */, - 30C31DA992CC2BBA6BBFB25792C01FB2 /* UMUtilities.m */, - DC24A7E89EB53B595EF360D6C42ADF3D /* UMViewManager.h */, - AE63784DCC7682872AEA595CE8F18A1E /* UMViewManager.m */, - 5D2CA829575F56AEB1052BBF44859342 /* Pod */, - 56FABFA30CD7252CB9E6F1CE4E392637 /* Protocols */, - AB56AC2A3CB128D22769D17C41A71EBE /* Services */, - F5AEBED96411EBE6BD67F8C09DDF4109 /* Support Files */, - 926212A0AEF581C6876E4164C0749DE7 /* UMModuleRegistry */, - 772C71F3173705218FF53F95C071CDE0 /* UMModuleRegistryProvider */, - ); - name = UMCore; - path = "../../node_modules/@unimodules/core/ios"; + name = Pod; sourceTree = ""; }; D6F490C034FF3884052422C414FFF53A /* SDWebImage */ = { @@ -12273,30 +12242,53 @@ path = SDWebImage; sourceTree = ""; }; - D7B44D3D9B49DB52A88C11F3186D7602 /* Pod */ = { + D7754577A93FC5559AB6AB18E3CB980D /* react-native-notifications */ = { isa = PBXGroup; children = ( - B7C3902228E8998D81D865078AEF626D /* React-RCTImage.podspec */, + F881CC99AF63CFBF850897A4D0123EC2 /* RCTConvert+RNNotifications.h */, + 87DB8BAA7E0AA6309FC82A17A1670CF0 /* RCTConvert+RNNotifications.m */, + D1652AA28A4E5BB9606FA0F0223880BA /* RNBridgeModule.h */, + A4F5A1E99FA7D42C489D0381E573C849 /* RNBridgeModule.m */, + 4604EB84EA7D173EFB6BF96910AEE699 /* RNCommandsHandler.h */, + E222CCBAE4B8B73A1E7FD6E8F2E67F1F /* RNCommandsHandler.m */, + 7AF6A5BBC472C7054D73C96893FD931C /* RNEventEmitter.h */, + 31184F2A33D855B394E7FA887BE6E1C8 /* RNEventEmitter.m */, + 0FD67A5A0A0E791A241650D09B2C852B /* RNNotificationCenter.h */, + BC28432DB28E26600A79158B20F82B6B /* RNNotificationCenter.m */, + C36A46BD905DCD5C55106653B5BB691C /* RNNotificationCenterListener.h */, + EDA960B488DC6DD0DC8848BF6E76941F /* RNNotificationCenterListener.m */, + 9D1D04F15826580499B17234E3912288 /* RNNotificationEventHandler.h */, + 95EF3AD0840BFDDC76F676455E7154DD /* RNNotificationEventHandler.m */, + 34CC6521D5F9809960F39C9D570662BF /* RNNotificationParser.h */, + DF33E3CF7D684DB98F89BAEB8F8E2E65 /* RNNotificationParser.m */, + DCABCC9C8001FA20E4E1830A4BE93DA2 /* RNNotifications.h */, + F0035AD75AF409EED99CE638FCD79F36 /* RNNotifications.m */, + CFB77E55364F07756874798EC9AC40C5 /* RNNotificationsStore.h */, + 27456DCA1E6F6425090860FC8F695FC0 /* RNNotificationsStore.m */, + FDAF171CD6AD6E3563BCE2211C0F9FA2 /* RNNotificationUtils.h */, + D90DB9772E9FBE6044ED0537B3D578FA /* RNNotificationUtils.m */, + FE5E3DDE6DD52E7DD9A1126EAF36F66E /* RNPushKit.h */, + 8C775F0A3839BF88C0D89C889B59B26C /* RNPushKit.m */, + DE11E99498B7A9823D6DA87A938589A6 /* RNPushKitEventHandler.h */, + 4A3108E867C080F1BF3DD43EBB8CC6D7 /* RNPushKitEventHandler.m */, + 6F063C7CC4BD76F426301C2BBE30E27B /* RNPushKitEventListener.h */, + 832862A31898A88E781D6B4F7FECCF18 /* RNPushKitEventListener.m */, + D022F2B2C803BAAEEF46852DDF1FC99B /* Pod */, + 035311CECB99E4F29445B1FE7AE0FFC9 /* Support Files */, ); - name = Pod; + name = "react-native-notifications"; + path = "../../node_modules/react-native-notifications"; sourceTree = ""; }; - D7FC68902E3AF20B96F44A1BDDE4AC4B /* Pod */ = { + D7E1367DC02B906F7E6233718B617C29 /* RCTRequired */ = { isa = PBXGroup; children = ( - 9AE4E75113C9428A4B0C28F154748E6A /* React.podspec */, + ABA6FA0F42B7391DB470C7DD7C8E6BB1 /* RCTRequired.h */, + 80E471F80B32E863E50DD113FCB69EAC /* Pod */, + 1253B43AD4B219811D516CD43567CB45 /* Support Files */, ); - name = Pod; - sourceTree = ""; - }; - D822039F52B4822C2DFF78746E7BC2D5 /* event */ = { - isa = PBXGroup; - children = ( - 001A5C06BAB91C0F64838710C7B61912 /* event.cpp */, - F02634E51831E5B3FD5A787D5BB2BF15 /* event.h */, - ); - name = event; - path = yoga/event; + name = RCTRequired; + path = "../../node_modules/react-native/Libraries/RCTRequired"; sourceTree = ""; }; D89477F20FB1DE18A04690586D7808C4 /* Frameworks */ = { @@ -12306,50 +12298,55 @@ name = Frameworks; sourceTree = ""; }; - DA06E77B58D875E7DB53E8AC8C4F1785 /* ScrollView */ = { + D8DEB1B3CAFFA0C1972EB62B79371208 /* Support Files */ = { isa = PBXGroup; children = ( - 7692255B5991851F786B5D77763DBE26 /* RCTScrollableProtocol.h */, - 515773303247D3067EB6FBB51226837D /* RCTScrollContentShadowView.h */, - CD254CE9CF8E43C6DE245D2EFBB1327A /* RCTScrollContentShadowView.m */, - 9A6FCD0DDF685CFBE2A8C6E32E55AF39 /* RCTScrollContentView.h */, - BB7FD58A664FF21E433E04797D15A3C4 /* RCTScrollContentView.m */, - E0135EE9EF6E64ED0A15859C04043B9B /* RCTScrollContentViewManager.h */, - CC7D21AC60B2AAB8DE08718F0CF5314B /* RCTScrollContentViewManager.m */, - 52428A2381B640479AAAD45EC7423584 /* RCTScrollView.h */, - C3F873101E68AB7AB6750170F1CC997C /* RCTScrollView.m */, - F161325166BAB0C362768E626AC7A17B /* RCTScrollViewManager.h */, - 6E8C0C5F92CD5E2E03FE5D8BD19B7A42 /* RCTScrollViewManager.m */, + 9501CFD3C936BC73BFADBCEFE40AEB0A /* UMFileSystemInterface.xcconfig */, ); - name = ScrollView; - path = ScrollView; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; sourceTree = ""; }; - DAB1CF041C820DE3237FFE1686177AD0 /* react-native-background-timer */ = { + D9EFA9C00413793029A953444995E0DF /* RCTImageHeaders */ = { isa = PBXGroup; children = ( - C5A6DF8A0837F3F1166E6F512F59A7B8 /* RNBackgroundTimer.h */, - FA8ABBEA1E93CE562E48D920956FD8E3 /* RNBackgroundTimer.m */, - 36AA80E897BD7DF26103A90672B47221 /* Pod */, - A3BD729ABCDCC75E18F10BEAC7E5934E /* Support Files */, + 40DD1EB0A38626D7672CEF0EEFF5C426 /* RCTAnimatedImage.h */, + 9C8B81AE3B3926554D716E80CB3FB004 /* RCTGIFImageDecoder.h */, + C637E0FACF0DC21188B21A19BE3893CD /* RCTImageBlurUtils.h */, + EA39A846885AEDDA4978D47BBBC488C4 /* RCTImageCache.h */, + BDD4EC0D01813218623B5372433F8219 /* RCTImageDataDecoder.h */, + A89F5903324F1CD3F6DF49F596580EE9 /* RCTImageLoaderProtocol.h */, + 5277215B950EB8FB831F92FD56554BE3 /* RCTImageShadowView.h */, + 2EC3AF692C410BF61B4507625A2481B4 /* RCTImageURLLoader.h */, + 1E5C2F8D2DDCE00D1854B6E7130E97D6 /* RCTImageUtils.h */, + A8FEE9E165727EA2834D50BF5CD1A68D /* RCTImageView.h */, + 8347D154BA5BF61C554572F3EA4E1F5F /* RCTImageViewManager.h */, + B5FE8F6B235D306BBC8054E5BCA09CDE /* RCTLocalAssetImageLoader.h */, + 43E5FD1C5B9357E739C64C0EAC4F8290 /* RCTResizeMode.h */, + 49777C8BDCF41658EF1462402BDAA962 /* RCTUIImageViewAnimated.h */, ); - name = "react-native-background-timer"; - path = "../../node_modules/react-native-background-timer"; + name = RCTImageHeaders; sourceTree = ""; }; - DB26E59726A435D9A76DD48EEAD12366 /* React-RCTAnimation */ = { + DAF384CBE05A0AC4F06C3593D900EDEE /* Support Files */ = { isa = PBXGroup; children = ( - 7BE324263A2118CDEF9F5504CFC24A3E /* RCTAnimationUtils.m */, - D5A49F2B64B42B33B05ABF1023488437 /* RCTNativeAnimatedModule.m */, - D89A2992BC35577A4DC64CAE8550A305 /* RCTNativeAnimatedNodesManager.m */, - 4CA7843DF349564A095E062B1DEA0319 /* Drivers */, - 0A512C0C912127EAB4B3483C8E814737 /* Nodes */, - AB6EBD11F4B5566581CF04E0230ACAA4 /* Pod */, - 9A60F0DC53F9869AA3ECB1569DF7BBD1 /* Support Files */, + 65CB6926EE4164B88B485A0EB2C889B8 /* react-native-webview.xcconfig */, + B4F2B2382DC297766F83388DBE6A9689 /* react-native-webview-dummy.m */, + 14E28936216B895E1CA952A7599FACA1 /* react-native-webview-prefix.pch */, ); - name = "React-RCTAnimation"; - path = "../../node_modules/react-native/Libraries/NativeAnimation"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-webview"; + sourceTree = ""; + }; + DB2F04FEFFA88D64A56C1891D6D33EB5 /* VirtualText */ = { + isa = PBXGroup; + children = ( + 702CADBFFDC7EF3FBCCA9A11A221319C /* RCTVirtualTextShadowView.h */, + 0E76F3759E8407C982EDBF7A405F370E /* RCTVirtualTextViewManager.h */, + ); + name = VirtualText; + path = Libraries/Text/VirtualText; sourceTree = ""; }; DB6752B59873A91592A7998C80544B13 /* CoreOnly */ = { @@ -12360,18 +12357,39 @@ name = CoreOnly; sourceTree = ""; }; - DC107D5408D048BECC80CAEAE94824CC /* Pod */ = { + DB812DDD4FBD4840842D56B53C970284 /* KSCrash */ = { isa = PBXGroup; children = ( - F430DE53B915A60E1FB00F0DE577F87A /* UMAppLoader.podspec */, + 0BC7458E471671745D749CEDDC1AAA49 /* Source */, + ); + name = KSCrash; + path = KSCrash; + sourceTree = ""; + }; + DBB6767F634D140A8B2B723353E7299E /* Pod */ = { + isa = PBXGroup; + children = ( + B472997F9BA4ED98BA2A1E2F65256632 /* README.md */, + 492AF4B3182C3F6AB2718B67D8E997FB /* RNRootView.podspec */, ); name = Pod; sourceTree = ""; }; - DCC3BE31FD5DDBB073F9D01EE4C7AA92 /* Pod */ = { + DBDFDE81C85A3EF35AEE1191D1DD2FD2 /* Support Files */ = { isa = PBXGroup; children = ( - B13877E87D97E2F8F4EA06D8121A94EC /* UMBarCodeScannerInterface.podspec */, + C5CA46DC3BAC8E34D065E5D96307C663 /* React-RCTLinking.xcconfig */, + 8C1F97DF376D9798299710820D5A07C9 /* React-RCTLinking-dummy.m */, + 28E31A5195F966E49BB86E25398B2B4E /* React-RCTLinking-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTLinking"; + sourceTree = ""; + }; + DD149305F868C34F075345D255E9B767 /* Pod */ = { + isa = PBXGroup; + children = ( + 8655DCC2849051DFAD85B0C211E8A423 /* UMPermissionsInterface.podspec */, ); name = Pod; sourceTree = ""; @@ -12391,17 +12409,6 @@ path = "Target Support Files/Pods-RocketChatRN"; sourceTree = ""; }; - DD9C029B884FD5F8796318956E82AB48 /* Support Files */ = { - isa = PBXGroup; - children = ( - 634532311DB6CBCEABDB8837E125E209 /* RNAudio.xcconfig */, - B4CBF62749100696269A58ABE3AD370E /* RNAudio-dummy.m */, - A97027F18F8FAF07D57DEA2C1E8FB7AA /* RNAudio-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNAudio"; - sourceTree = ""; - }; DDCB62EC2967968D87E1AA9AE1D0355A /* Support Files */ = { isa = PBXGroup; children = ( @@ -12413,68 +12420,95 @@ path = "../Target Support Files/SDWebImage"; sourceTree = ""; }; - DE7BB8853054F6FDE97BF7CA1E954322 /* Support Files */ = { + DDD2D92B40A00B4FEA77410C5F4356E9 /* Support Files */ = { isa = PBXGroup; children = ( - 7B2D2E87A0821787B0CB305C2F199B2B /* react-native-keyboard-tracking-view.xcconfig */, - 6E5EB502BBC0B8F55802C31047B4775D /* react-native-keyboard-tracking-view-dummy.m */, - CA2B916AF3E8C706EEE3FCA793E10BE0 /* react-native-keyboard-tracking-view-prefix.pch */, + 17D5A84F8747106DDCA033C31C5D274F /* RNRootView.xcconfig */, + A060D275F6FB2202E39824FE20772A14 /* RNRootView-dummy.m */, + BFC24908B59EB8AA5084F7D8299EC4EA /* RNRootView-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-keyboard-tracking-view"; + path = "../../ios/Pods/Target Support Files/RNRootView"; sourceTree = ""; }; - DF25F2EAD2298F20C09553F1EED6E84B /* Pod */ = { + DDDE51211789C88B2A3B31BC8D030F15 /* Pod */ = { isa = PBXGroup; children = ( - 5903C106B05EB960481FD19A77CE7452 /* react-native-slider.podspec */, + F2B977120DCE58A53B2F07C61AF5CE2F /* LICENSE */, + EC3C0204BB6B6C009CA6714C0402304B /* README.md */, + 83EE8080CE4DB87300106A0DD3EEFEA0 /* RNReanimated.podspec */, ); name = Pod; sourceTree = ""; }; - DF8CBA8FF9838D3E7588105895DB22E7 /* Tools */ = { + DDF5F20BC9738C8599221D84B8F0C10B /* UMViewManagerAdapter */ = { isa = PBXGroup; children = ( - CBB61D1C8E5DC016AF00232150B33604 /* BSG_KSArchSpecific.h */, - D5030652B98A84EEF508BD0C799DE7E5 /* BSG_KSBacktrace.c */, - 072013CF77A7E9DD1769B206AAF002C5 /* BSG_KSBacktrace.h */, - 94F547B239E503C73BB599D250FC08E5 /* BSG_KSBacktrace_Private.h */, - A2CD12992CBD145D2479A48A3068C9C6 /* BSG_KSCrashCallCompletion.h */, - 2E7B1288BE3BAEE06C25A2F4CBA03615 /* BSG_KSCrashCallCompletion.m */, - F84633D6A322186A6EC2522B0C53D5BA /* BSG_KSDynamicLinker.c */, - 2A875199F18994CD8E1A92BBF9964643 /* BSG_KSDynamicLinker.h */, - F69D004EB967D4DF426BDE52D155C572 /* BSG_KSFileUtils.c */, - 6CF2E9B29664C031D65952681C658B45 /* BSG_KSFileUtils.h */, - 95F2F9E652BC530FD7527C731009D0EC /* BSG_KSJSONCodec.c */, - BA78A1772740B4E478C916E6E8A882DE /* BSG_KSJSONCodec.h */, - 8A28FC5B69E97D14575CA0877222A4C5 /* BSG_KSJSONCodecObjC.h */, - 24D442B49D8704EC885290B27F4261E6 /* BSG_KSJSONCodecObjC.m */, - 883811ECA1A34A96FA9F3D77005A7527 /* BSG_KSLogger.h */, - 393D17394AF2E168A92010C0455E96F7 /* BSG_KSLogger.m */, - CBD4C75C67DACEA8016654464B69DF3D /* BSG_KSMach.c */, - 687045C978C8C32911E216B305D93291 /* BSG_KSMach.h */, - 30C14607A6AEC19A6D6247FA32385616 /* BSG_KSMach_Arm.c */, - BBCF27136550EC50E081875275784C83 /* BSG_KSMach_Arm64.c */, - 5E26F9DB6B30AE836D67F78AF01ED7FD /* BSG_KSMach_x86_32.c */, - CA1B3E1BE6099C5ACCEF3A771967F89B /* BSG_KSMach_x86_64.c */, - 4B0B208F7890597F3918DE32BCD8538F /* BSG_KSMachApple.h */, - E57B61D917422FCC8BB714C6D43CAF88 /* BSG_KSObjC.c */, - 9080EF5E784DDF1531BA49855E01F18C /* BSG_KSObjC.h */, - 47AD2C702B462A8FA9E8BCD3AFC16FDB /* BSG_KSObjCApple.h */, - FD0131611CE63C525179341D549052EB /* BSG_KSSignalInfo.c */, - C1BB0714F1D179F05D35A91AD0F7A8AF /* BSG_KSSignalInfo.h */, - C5091C0A789A5722B65B44F7A1254FCB /* BSG_KSSingleton.h */, - D85B3B178481AFF3161A0E239507A10C /* BSG_KSString.c */, - 1D3C3EEE5A6CB5B2FABE8AFB9B20BD3E /* BSG_KSString.h */, - 0E236CE2865A5040C193A4DFAFD30940 /* BSG_KSSysCtl.c */, - 1687966F55C3D0BA586F39150074CAB0 /* BSG_KSSysCtl.h */, - BC966FD6065991B6F5FDF77BD5F5F17E /* BSG_RFC3339DateTool.h */, - D4D5AA359E271AF660DC523DE65B7185 /* BSG_RFC3339DateTool.m */, - 94D2784367826E2CD691EF61F8A78CD0 /* NSError+BSG_SimpleConstructor.h */, - B7A2694A8E0D25AA9F3005F9D6B28B45 /* NSError+BSG_SimpleConstructor.m */, + 8F0E564DE338119666276106356B8119 /* UMViewManagerAdapter.h */, + 77060C09E6D87AD7316709FF3E32F992 /* UMViewManagerAdapter.m */, ); - name = Tools; - path = Tools; + name = UMViewManagerAdapter; + path = UMReactNativeAdapter/UMViewManagerAdapter; + sourceTree = ""; + }; + DE11E11452EA3705402E9A845B1CE0D8 /* Resources */ = { + isa = PBXGroup; + children = ( + 0200BF5B53B1EAE97CEA1BBB0277DC76 /* AntDesign.ttf */, + D1C21A1963B18619080396F1952EEFF9 /* Entypo.ttf */, + B3EC19732CF8EEFDA9F2B588187D1BE2 /* EvilIcons.ttf */, + 2E20522CFC3FF714F71215AB5DDB9A15 /* Feather.ttf */, + 3BA923BAE3DF1C7582F9AEDBA2BD7679 /* FontAwesome.ttf */, + BCDDAE6A7E41FD7CA7BB64FD8EB9AEF7 /* FontAwesome5_Brands.ttf */, + 9D4106ED572E83D913CD2439E1370845 /* FontAwesome5_Regular.ttf */, + 6F87B8345A7593294B6A9E132EB575AC /* FontAwesome5_Solid.ttf */, + 734CF0DF7D6A8D1307EF38D0E62DFFDC /* Fontisto.ttf */, + 0A517D02219DB5640240657199D64B29 /* Foundation.ttf */, + FB2115D629A9747CDEF3713B6841D0F2 /* Ionicons.ttf */, + 3CACEDF0FB91B2EE5BC301A94357EC00 /* MaterialCommunityIcons.ttf */, + 58DC1810B6C7CB4BD28689381462F2AE /* MaterialIcons.ttf */, + 0A2A0BA4AF08430D48A45519F923A40F /* Octicons.ttf */, + DF320A32A89DFDD836242CF9ACDE905C /* SimpleLineIcons.ttf */, + C293551CD5204586E6F8D5CB1DAF2BE6 /* Zocial.ttf */, + ); + name = Resources; + sourceTree = ""; + }; + DE15CCEF4A2330052F15BED37FF4332E /* Pod */ = { + isa = PBXGroup; + children = ( + 286E26A6C91BBC63A1A66EDCFE83188E /* React-RCTBlob.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + DE162CB7DF8F690F562B7785D34B6E87 /* Support Files */ = { + isa = PBXGroup; + children = ( + 9584BF8B7116E9533B527075D84FC6E2 /* UMCameraInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; + sourceTree = ""; + }; + DF78D4F2DFA4FE1826958AA01886153F /* KSCrash */ = { + isa = PBXGroup; + children = ( + 4B97B54F5497DA6A63A9DEB57979A463 /* Recording */, + FE56202C6992520F70A848D30B72BF6E /* Reporting */, + ); + name = KSCrash; + path = KSCrash; + sourceTree = ""; + }; + E009B0369075FA826BED6EF7E4029CC2 /* Pod */ = { + isa = PBXGroup; + children = ( + D8B3C196C1D0A315CE2BA6A45CECAB7F /* LICENSE */, + 43DAA5C77986E68FEF3383BADC08E3AE /* README.md */, + D135C5009F92091AE2163A9A2E2BE67A /* RNAudio.podspec */, + ); + name = Pod; sourceTree = ""; }; E16AA748B8479800EC9221A9DE4E360E /* Support Files */ = { @@ -12488,164 +12522,65 @@ path = "../Target Support Files/GoogleUtilities"; sourceTree = ""; }; - E17FA5A86E09334846FEB41AC9BD2710 /* CxxBridge */ = { + E1EF58544C1B364455464CE8173BBB43 /* React */ = { isa = PBXGroup; children = ( - 24C7B04FC9CA895172C6D273309C5B5A /* JSCExecutorFactory.h */, - D155EBCDFBC684096F05862E01325617 /* JSCExecutorFactory.mm */, - 205726300BC482B3679A13F3CF37823B /* NSDataBigString.h */, - 50C282BD01406EB53341BA80730F136A /* NSDataBigString.mm */, - 5396DDCF0BBA58C5B926F5A36A397334 /* RCTCxxBridge.mm */, - CAC24283964A041B6B2CF6DE799D797D /* RCTCxxBridgeDelegate.h */, - FE44415B2EA0C3B7EF3C39C4BD78AD6C /* RCTMessageThread.h */, - A36A109784D2B83D3C88A7A23FEE4229 /* RCTMessageThread.mm */, - 6A9C9B65963A8EB86816AA8302B70D7B /* RCTObjcExecutor.h */, - 80860F4CE5B3CFC4012350F2586BF780 /* RCTObjcExecutor.mm */, + 41AB71CF1960229EB3168DEC12D6D7A1 /* Pod */, + 43219D9397ABE3178694DBEC1762B03F /* Support Files */, ); - name = CxxBridge; - path = React/CxxBridge; + name = React; + path = "../../node_modules/react-native"; sourceTree = ""; }; - E2638C4C8232FBC21CE1A3A927F549F9 /* EXHaptics */ = { + E2D7EA628465A53CE606804DC0F9E87E /* Pod */ = { isa = PBXGroup; children = ( - 723E63AFFF5020146327CCB941345F0D /* EXHapticsModule.h */, - 04D9890E05EDA71F5F625F17AF28414C /* EXHapticsModule.m */, - 8238AC90010A1E82556F68ACE52EC7AE /* Pod */, - E8BB5C3B6CC4F311B6644517FDE9AFC0 /* Support Files */, - ); - name = EXHaptics; - path = "../../node_modules/expo-haptics/ios"; - sourceTree = ""; - }; - E314FCF847B717D507A8ECDFEA1C5CF1 /* Pod */ = { - isa = PBXGroup; - children = ( - 1AA5457362BB3AAFC394334AB1FE2BA7 /* React-CoreModules.podspec */, + C8CED9B8885A6D580D6E754E1FE18F32 /* LICENSE */, + A7046377F97424F11727A7BA72F8F52E /* react-native-jitsi-meet.podspec */, + 332A3997F34D8535DA1FD468B7773195 /* README.md */, ); name = Pod; sourceTree = ""; }; - E39B88C9816CD5856E69CC47B09B69C9 /* admob */ = { + E538D4FDC6999A30DA004E57B587F5E3 /* core */ = { isa = PBXGroup; children = ( - E1F3477B4578E3887176C019B49E061D /* BannerComponent.h */, - 6363E470823122AA16E3405C3E6F776E /* BannerComponent.m */, - 32E84E502E0A5332EBF385855C620157 /* NativeExpressComponent.h */, - 2A12EFF825E1C0081EE3DF98F8A217E9 /* NativeExpressComponent.m */, - 5A07FFDF4D4BA10363CB9C0F65B38D36 /* RNFirebaseAdMob.h */, - EB1063DE45A52A4A4BC6F0E3D4C90CDC /* RNFirebaseAdMob.m */, - AAF7B698FAB5610C1CD443A453C33DBD /* RNFirebaseAdMobBannerManager.h */, - D11686F510A95536BF8A8CDDFC2B6601 /* RNFirebaseAdMobBannerManager.m */, - 3A2FEFC65024873FA80E3F728D63377D /* RNFirebaseAdMobInterstitial.h */, - DCEEDFB15DFD2A72A2E61D28D62EDDAD /* RNFirebaseAdMobInterstitial.m */, - 528C5C76C04A1A6D987B79D7E7FD1668 /* RNFirebaseAdMobNativeExpressManager.h */, - 9B81DDCD44C011136B37C39D17850F69 /* RNFirebaseAdMobNativeExpressManager.m */, - 5B648BD77C67F6984E6471526556DA44 /* RNFirebaseAdMobRewardedVideo.h */, - 52ED7149F0530BAF25F6FC7EDC45E587 /* RNFirebaseAdMobRewardedVideo.m */, + D68D7349299EDC71DB05EB4EB4E8C029 /* LongLivedObject.cpp */, + 3F91D027E837C20A326639C1BDCE6567 /* LongLivedObject.h */, + D2915E98F4D3522C540CEB1DAEB4968C /* TurboCxxModule.cpp */, + 8F9250A90777B0FF446D2599F1718133 /* TurboCxxModule.h */, + 30327B3BBCCCAE76BB48273350864929 /* TurboModule.cpp */, + EAC91A933451B8E0BD44C846366D89C1 /* TurboModule.h */, + E847FBA812E94CC9BCCD9EE428CC1966 /* TurboModuleBinding.cpp */, + 6BFB0D55EFAEBD52BC0FBC03A19D7393 /* TurboModuleBinding.h */, + A281B418998BA4257474919CBA88225C /* TurboModuleUtils.cpp */, + 0BD10F59E4A10D804EB12B741C087F5B /* TurboModuleUtils.h */, + 1AD3B7EBD0036F9F4B8506B7411EA899 /* platform */, ); - name = admob; - path = RNFirebase/admob; + name = core; sourceTree = ""; }; - E3CB10AEBB6C3219A8AEF9673E036B49 /* Pod */ = { + E5DF34F2E001EB71173C4194172DDE53 /* Support Files */ = { isa = PBXGroup; children = ( - 9D26DC91E9446B7C02FEFA5D5D9853AC /* LICENSE */, - 1864EEF5B581B6C598B5FBC690058D86 /* README.md */, - 3AC2F63B68ACB4AD0177605BA17A8696 /* RNLocalize.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - E3E2677B2BC7E28F47C971DBBC28A51F /* UMFaceDetectorInterface */ = { - isa = PBXGroup; - children = ( - 569918EEF674C6E18C53AEBAB6E270EC /* UMFaceDetectorManager.h */, - B42C0EEC2AF787FBF74B907ADF09B977 /* UMFaceDetectorManagerProvider.h */, - 7AC84D1E5307D83A20E6F5D058D507D1 /* Pod */, - 038B7759D16622B2EAF884C5E723B119 /* Support Files */, - ); - name = UMFaceDetectorInterface; - path = "../../node_modules/unimodules-face-detector-interface/ios"; - sourceTree = ""; - }; - E5BE9F8EB1758CF789FC8C532161AE71 /* UMFileSystemInterface */ = { - isa = PBXGroup; - children = ( - CB5E95935F2C33DDFF6001A54F399BAB /* UMFilePermissionModuleInterface.h */, - 5FDDFFC2AFB9F3B52B3AAD537CB209A7 /* UMFileSystemInterface.h */, - 9FF2C41B6ED144A870F7B91DB6AFB084 /* Pod */, - 6E72B84AA85114E71FF8D378DF3B089D /* Support Files */, - ); - name = UMFileSystemInterface; - path = "../../node_modules/unimodules-file-system-interface/ios"; - sourceTree = ""; - }; - E6070ED36DE72017F11D066978EC9B4E /* Pod */ = { - isa = PBXGroup; - children = ( - 49142CC56D89B173475626AA1B90D832 /* React-RCTVibration.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - E6232848F442A4C9CF61E282C47025D9 /* react-native-jitsi-meet */ = { - isa = PBXGroup; - children = ( - B74F33AD034F479DC84E3E7D503C826C /* RNJitsiMeetView.h */, - 0C12BC1B8F44AF03BA844784DE394E50 /* RNJitsiMeetView.m */, - 4D505E718CCB16E5F1E3896B054005DD /* RNJitsiMeetViewManager.h */, - FE22CAD0C10E2197AB90FCECDE48AD6F /* RNJitsiMeetViewManager.m */, - 3B53C6832128DC3E51A58678AC5F2914 /* Pod */, - 3D14D9F1B6877C08054895DFD4020190 /* Support Files */, - ); - name = "react-native-jitsi-meet"; - path = "../../node_modules/react-native-jitsi-meet"; - sourceTree = ""; - }; - E75E4F59593FCD1960F6A2BE0AE5DC04 /* Support Files */ = { - isa = PBXGroup; - children = ( - D7F6B806AC4CE8AFBE23CCE6D12C15B2 /* React-RCTActionSheet.xcconfig */, - DD7F7ED4977D67E27097A2C9D2F83889 /* React-RCTActionSheet-dummy.m */, - 3945C05140E58BB4FD12653CEF4D50D5 /* React-RCTActionSheet-prefix.pch */, + 60EBB00780FF2A181C094F49615EB38C /* EXFileSystem.xcconfig */, + D7D51A791FED6E76B08D4DF61681B7E7 /* EXFileSystem-dummy.m */, + F9092F343B1335E2E42BE8DD93B7ABF6 /* EXFileSystem-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTActionSheet"; + path = "../../../ios/Pods/Target Support Files/EXFileSystem"; sourceTree = ""; }; - E7E67BC4769490EF548C8575C2EBFC94 /* Pod */ = { + E85D54DAE27FA6537A064F3A51309A0A /* Pod */ = { isa = PBXGroup; children = ( - C65E211A0633D7CC951D33732CD51F2D /* LICENSE.md */, - 402CDA986750EA3112B840B1830D05D8 /* react-native-document-picker.podspec */, - D0BD5F5B2E797E672656B06E2516C4C5 /* README.md */, + BD7A672E7B21F7C2EB85B2FB241E9428 /* LICENSE */, + 2B8E9C9831ED2F1A5721DC2FE887D0BE /* react-native-orientation-locker.podspec */, + 42DA57592399439652D812EB26D67263 /* README.md */, ); name = Pod; sourceTree = ""; }; - E8B6574C43E0AFC0C9491838EF33D6A3 /* Nodes */ = { - isa = PBXGroup; - children = ( - BC031C46A6F57B9D88C6A473D8BC8721 /* RCTAdditionAnimatedNode.h */, - 1E58F8187571FB8BE19BAB41634D821E /* RCTAnimatedNode.h */, - 704B3006AE3C4DF9E816A98C0AD58C74 /* RCTDiffClampAnimatedNode.h */, - 917F61313C78913F2EF1E925E1D23E9A /* RCTDivisionAnimatedNode.h */, - 685FE3980782BE2DDDB50F4D9DEF7AC8 /* RCTInterpolationAnimatedNode.h */, - 4EEBCC60D88F119311E2306993289D72 /* RCTModuloAnimatedNode.h */, - 50E26AF35C3302A079327C853D581E09 /* RCTMultiplicationAnimatedNode.h */, - 95F532C5C0C284AF79C3E45B2F4C1640 /* RCTPropsAnimatedNode.h */, - 72B29B254D8D74DC776EE9189702D11E /* RCTStyleAnimatedNode.h */, - 45957DF0B7AF8A4C8A0A7621DEDD1EF9 /* RCTSubtractionAnimatedNode.h */, - 542E2DB12C2236A6721B9893F8699B41 /* RCTTrackingAnimatedNode.h */, - 57858FA00E9FCE5B0D6A2DFA7C2688BD /* RCTTransformAnimatedNode.h */, - DEB78093614332D12C5E9B2C2B7A9A7F /* RCTValueAnimatedNode.h */, - ); - name = Nodes; - path = Libraries/NativeAnimation/Nodes; - sourceTree = ""; - }; E8B6A85956573B9F30CD1427074D8E31 /* mux */ = { isa = PBXGroup; children = ( @@ -12660,280 +12595,286 @@ name = mux; sourceTree = ""; }; - E8BB5C3B6CC4F311B6644517FDE9AFC0 /* Support Files */ = { + E98D67EA700C0206C36596B528DBCB8C /* React-RCTBlob */ = { isa = PBXGroup; children = ( - C1A94EA75A7BA3B0E4302059BCFEB33A /* EXHaptics.xcconfig */, - C879CF5F9F3F504690C24C4DD70A20A5 /* EXHaptics-dummy.m */, - 6E0D2F34C0316DC8303B87204FDC43B2 /* EXHaptics-prefix.pch */, + 78444D9D4D9D3C0917B8998976E40C70 /* RCTBlobCollector.h */, + 49081BDA96EB16FA72B9EF7FA37F10AF /* RCTBlobCollector.mm */, + EACBACF9153DD3E5D782F861B1761ED0 /* RCTBlobManager.mm */, + 1F94016E68EEB217508CD4C5B2289C21 /* RCTFileReaderModule.m */, + DE15CCEF4A2330052F15BED37FF4332E /* Pod */, + F17FD1931E1CAD6AC06B4D95C7E42A0C /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXHaptics"; + name = "React-RCTBlob"; + path = "../../node_modules/react-native/Libraries/Blob"; sourceTree = ""; }; - E94B0B9A82C2AA974D7CF334CC7568CE /* Pod */ = { + E9F30F25519F63BF0442A29E1423FFF1 /* Base */ = { isa = PBXGroup; children = ( - D699B67435944136CAA467F95D3FF0C4 /* advancedIos.md */, - 9BBD31B56D156170B565D11F70FE98AC /* installation.md */, - 8815C2E2CAF5A0DBFA8EB61D53624651 /* LICENSE */, - 3726F45252F0D910533091E2097D3F87 /* localNotifications.md */, - 46F605AE3C042BD03662DA9E8CAEBCF6 /* notificationsEvents.md */, - 9B44B3CA80865E6E906E533DE24E3C8F /* react-native-notifications.podspec */, - 725F54D63292B18C8769A45EF72588CD /* README.md */, - 28863C2658C7EC16923E80F29BC3058D /* subscription.md */, + 1DF145921DE85DB434850DC4736F5445 /* RCTAssert.h */, + 14F9A05013AE6BE94D9456BBB14712E2 /* RCTAssert.m */, + C452BF0E9DD1DEB06C0598D01E65657B /* RCTBridge.h */, + 6F0C2E0E933DF322244E10D335D3AA3B /* RCTBridge.m */, + 83669ADFC2BA035A11A398BCCDFB4819 /* RCTBridge+Private.h */, + 0E91B911130158B9E8F172DC0BBB76C9 /* RCTBridgeDelegate.h */, + 6FE00F5B510EE2652825473F9A8E14F2 /* RCTBridgeMethod.h */, + 058D28B4A68C709F7AA6A06D8A25D3F3 /* RCTBridgeModule.h */, + E0B1D28C01B0D9FF019BD11F48423BE1 /* RCTBundleURLProvider.h */, + C644DF549BD49E875B7C6EAADFC9A82A /* RCTBundleURLProvider.m */, + 2978BA2DEBC49B6BF77A935822359DBF /* RCTComponentEvent.h */, + FF47DDBF0E22453293ECB197BA2FC0C5 /* RCTComponentEvent.m */, + DCFDBA48F4D45DD625444D5E3836E3EE /* RCTConvert.h */, + 03DEF745B4A8AB46F50B24D0270F4753 /* RCTConvert.m */, + EDEDC37F633DC4E7C3D71348613CEFDA /* RCTCxxConvert.h */, + B4C688ACFAAB5C8C2F3F7922A721D3C3 /* RCTCxxConvert.m */, + 83A89F0F53AF583C4DDF0EA48B180780 /* RCTDefines.h */, + 553244C5D8BAF7E5DE26EC41D16D370E /* RCTDisplayLink.h */, + AFCB43D3827AE977D3013BE069F70FCD /* RCTDisplayLink.m */, + 915F0FFDA3662093AEC20E034BDB87FC /* RCTErrorCustomizer.h */, + AAD3F86D1EB9651A77F4480C76E25349 /* RCTErrorInfo.h */, + 71A8D8AD63970F41D631921F678B5C49 /* RCTErrorInfo.m */, + B9DEA0BF498BD7640F87AD72AD51B60C /* RCTEventDispatcher.h */, + 9EBE1FD358D5DB444D1994A23AF5B744 /* RCTEventDispatcher.m */, + 129CC95C969B20399F41C6937A02D570 /* RCTFrameUpdate.h */, + C9D0647297B92E80FC92B2CA069FAB5F /* RCTFrameUpdate.m */, + 3B5C9F26FED4E0761F637BAC9D86AD38 /* RCTImageSource.h */, + 6D52E6CD1695F8CFA8572D11EB15479C /* RCTImageSource.m */, + F330BF2530869556DBD57DDFD63437EE /* RCTInvalidating.h */, + FCD33AC7A683628CABF9B4DE61ECAC31 /* RCTJavaScriptExecutor.h */, + BB2398BE031D52DFDEFD4D59EED50148 /* RCTJavaScriptLoader.h */, + FA5F8B27C3393ECAFC57D32F193C67B1 /* RCTJavaScriptLoader.mm */, + FA31819E9AE01BFDEA17BCABC8327379 /* RCTJSStackFrame.h */, + 59F015CD4C3AD382FF8AB6E95C5C94F7 /* RCTJSStackFrame.m */, + B6B1D9D2E4B60BD628785C1C0FD559AF /* RCTKeyCommands.h */, + 87D2BC77CB55F4F29196EF2403D8C31A /* RCTKeyCommands.m */, + E08543FDC39180F83C50169CA50E00A0 /* RCTLog.h */, + 88648F732932432F6DAC9EBED580C353 /* RCTLog.mm */, + 9E795BB03EFA38DE1BDD66FE34A941BC /* RCTManagedPointer.h */, + 6EB980952287CDFD8FC85276F1077929 /* RCTManagedPointer.mm */, + 8BD2A23277F30FEB5D8CC12D42BFE63D /* RCTModuleData.h */, + 59BCEC3BB130D851C55FEEC9372580DA /* RCTModuleData.mm */, + F8963C48B4C9E71258D0BCE42665AC26 /* RCTModuleMethod.h */, + 8F05191A1FFA378F8D0BEFACAF94CF16 /* RCTModuleMethod.mm */, + FE024E817AC1A13A002CF2102FBF3444 /* RCTMultipartDataTask.h */, + B8B19FA68A32FFF3FCFA024A6DA603B3 /* RCTMultipartDataTask.m */, + B2A0D22A3DECC27109C0E62487A5D8E9 /* RCTMultipartStreamReader.h */, + 1C055DB23C96B16780E4FB84A89F34E2 /* RCTMultipartStreamReader.m */, + 03985525EDA89F3F7A68A80B93EC051C /* RCTNullability.h */, + 99AC0483E6DC8F46D5EF5A81815C0919 /* RCTParserUtils.h */, + 534768FC35D1ACE995311324A92A4BF0 /* RCTParserUtils.m */, + 3C0D335F37A02AAF91899A2D661D3AFA /* RCTPerformanceLogger.h */, + B65DD7A796FA1FE4E5337786362D6ADF /* RCTPerformanceLogger.m */, + 5DE3D54D2AA53A71F3B57D92ACDD7671 /* RCTReloadCommand.h */, + 7DDF0744665656F4901AF9C85D660756 /* RCTReloadCommand.m */, + 415459B9DCB71DFC1B666BBDBF009DC0 /* RCTRootContentView.h */, + 0AD90983FA7D465181A1A5CFF499F0DD /* RCTRootContentView.m */, + F1FCB8B8C78B3CC67C0B2905CCC4AAD7 /* RCTRootView.h */, + 447FFC16368F27E9F314B1280981547C /* RCTRootView.m */, + 425FCABB9C9CE8B1487E385F1EBD1E2B /* RCTRootViewDelegate.h */, + F39DA98B4560F63097808A59C778BF0F /* RCTRootViewInternal.h */, + A0C2CBE489F6BE8623AF5ED5DC1FB0B1 /* RCTTouchEvent.h */, + 595753034D06481EB8E563E3BE145B52 /* RCTTouchEvent.m */, + A23FC1C6EEB4D286D5681F8C73164353 /* RCTTouchHandler.h */, + 0142AF2AC764160F5E7DDCFAC7A40FC4 /* RCTTouchHandler.m */, + BF447A67C41DB59965B58758672AA97F /* RCTURLRequestDelegate.h */, + 4265EE4EF3E088E3BB46CCEEF6C01DD7 /* RCTURLRequestHandler.h */, + D79973939CE8EC7D031363E1E2FC21FD /* RCTUtils.h */, + 0CDA8FCB4FCCED71D58F8B8D0C98D377 /* RCTUtils.m */, + 4F385180DE11379132F14DAA02D3F24F /* RCTVersion.h */, + 6EFA3A284870757064A62A77CA020A25 /* RCTVersion.m */, + C22B7A513CC428E42255314BBA5921B6 /* RCTWeakProxy.h */, + 4AB3E49F970E4FD72D9971F0C86245C4 /* RCTWeakProxy.m */, + AD2FA45F1B35CDA794A4D46F1DFC95E4 /* Surface */, + ); + name = Base; + path = React/Base; + sourceTree = ""; + }; + EBC12745279778A882C72416E514E87C /* Support Files */ = { + isa = PBXGroup; + children = ( + 06B0D6A47C619AD6632A50690B027C2D /* UMCore.xcconfig */, + 339D47919E93B2CAED01DCEFD6253C17 /* UMCore-dummy.m */, + E88C45E4936F0D384CC06AC38B3C065C /* UMCore-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/UMCore"; + sourceTree = ""; + }; + EC216FA997440897912EB514820B2C70 /* Support Files */ = { + isa = PBXGroup; + children = ( + 4057007FFCC1F9167336EA33D4D3F28E /* UMFaceDetectorInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; + sourceTree = ""; + }; + ECD0E388727ACC2986139E9FB2E9A41D /* RCTLinkingHeaders */ = { + isa = PBXGroup; + children = ( + D4ECAB3FBF1E5C23384E87E852D246E1 /* RCTLinkingManager.h */, + ); + name = RCTLinkingHeaders; + sourceTree = ""; + }; + EE41C57A7D32391E9ADD91A3A93F5666 /* react-native-webview */ = { + isa = PBXGroup; + children = ( + 5A67CFD126B01032A4BB740C95C4F1A0 /* RNCWebView.h */, + 48FD13DB39CB84687FE2099B379E9042 /* RNCWebView.m */, + BA901DC34FE6CC5679CFCB66E02766D6 /* RNCWebViewManager.h */, + F96477C90288FED4C886718B8328F74C /* RNCWebViewManager.m */, + 943E9B246FD22B5A90F44E9DEE7538D3 /* RNCWKProcessPoolManager.h */, + D28C3C37EFCF29A4649B7A20E82CBEDC /* RNCWKProcessPoolManager.m */, + 2B7ED1B7786AE1885AA5E2948D2A9F21 /* Pod */, + DAF384CBE05A0AC4F06C3593D900EDEE /* Support Files */, + ); + name = "react-native-webview"; + path = "../../node_modules/react-native-webview"; + sourceTree = ""; + }; + EEA1A85B6760F650D4DDF334111F1B26 /* Pod */ = { + isa = PBXGroup; + children = ( + 1E67697363D6ACE2401338E16B3C4BD3 /* LICENSE */, + 5810B799297AAF7BE8E41C230D48EDE1 /* react-native-appearance.podspec */, + CD14C4916843DE205E1E912FA7B8E281 /* README.md */, ); name = Pod; sourceTree = ""; }; - EA9EBD6538D7891BE61671CE31C21655 /* ios */ = { + EF9BFAB2D3C8DA74B8320075B82B5445 /* UMTaskManagerInterface */ = { isa = PBXGroup; children = ( - 4C6CB1CCC878B2530E22CC7F10018B8C /* RCTTurboModule.h */, - ABE4F8095AB04F484F6324A95DE94BBF /* RCTTurboModule.mm */, - CE6D4B16FA4BB2AFCB6D2BCD6F485365 /* RCTTurboModuleManager.h */, - C962AADFCD1221DD7497DC79B7A37C50 /* RCTTurboModuleManager.mm */, + F526CECC51F92CB747322256AE7477A6 /* UMTaskConsumerInterface.h */, + 683256651E619B3F182E3AB4CCA4744F /* UMTaskInterface.h */, + C01B4BFAB4AEDF34EF7BBCBB178D7FA7 /* UMTaskLaunchReason.h */, + B6173241AB27379E5EC529D7392BA90A /* UMTaskManagerInterface.h */, + D3826D8A27E574463157C55E58AE94AE /* UMTaskServiceInterface.h */, + 9C56294BA63CF629E9A870B5321B4677 /* Pod */, + B12C4BAC2F9FFE423EBEACA4D7F304BE /* Support Files */, ); - name = ios; - path = ios; + name = UMTaskManagerInterface; + path = "../../node_modules/unimodules-task-manager-interface/ios"; sourceTree = ""; }; - EB103920D7DC3D9456A43D6DF561F8B8 /* react-native-keyboard-input */ = { + EFD403C3B9850858E56B3FD6BE1897BC /* Pod */ = { isa = PBXGroup; children = ( - 05F36E9E3633506313AD21BF14F2FFE1 /* LNInterpolation */, - 00F55DC35114C7D7D2CF782C61A48436 /* Pod */, - 457B43472B59E8E46A8D4BABFE851266 /* RCTCustomInputController */, - A3BFA6BE46F300B5C00E4AEA98954E35 /* Support Files */, - ); - name = "react-native-keyboard-input"; - path = "../../node_modules/react-native-keyboard-input"; - sourceTree = ""; - }; - ED24AEAB39060E1724BF45F091B4D7C0 /* Support Files */ = { - isa = PBXGroup; - children = ( - 82EE162005AC53C9C031EE256F08603A /* ResourceBundle-QBImagePicker-RNImageCropPicker-Info.plist */, - FA041417DFAF6513DCFA0ABCFD7F2129 /* RNImageCropPicker.xcconfig */, - 80E7E92918D0DE9CC8246E1855B21554 /* RNImageCropPicker-dummy.m */, - 80D4C734F426CCCB13FDB600CFACBFC7 /* RNImageCropPicker-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; - sourceTree = ""; - }; - EE4220593CD3F27E4C7DE9D063B42DFE /* UMNativeModulesProxy */ = { - isa = PBXGroup; - children = ( - 35D78EEAD48E1A7E264E5562768CAF17 /* UMNativeModulesProxy.h */, - 9D8B44D8422C4E7EDE9D751882D45B82 /* UMNativeModulesProxy.m */, - ); - name = UMNativeModulesProxy; - path = UMReactNativeAdapter/UMNativeModulesProxy; - sourceTree = ""; - }; - EE538B64CBA8425E3BB7AB61DF60BB1E /* Support Files */ = { - isa = PBXGroup; - children = ( - E49CFE480C3D29E7EC345A83CE1E2893 /* react-native-notifications.xcconfig */, - 8378085AD74EAA67AB32C6A675D5FA25 /* react-native-notifications-dummy.m */, - 88E392C5C33B8AB637900B7333FAE65E /* react-native-notifications-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-notifications"; - sourceTree = ""; - }; - EE8282308B5F2C38B8E3DD3EF7B33636 /* Pod */ = { - isa = PBXGroup; - children = ( - 63A696EC218DD1DAE902663F3B92C49C /* README.md */, - 835E4B78EE2FB90F2F0D493B4AE7BF68 /* RNRootView.podspec */, + 2AC9B5128EFD1963AE00DB8143F10906 /* EXLocalAuthentication.podspec */, ); name = Pod; sourceTree = ""; }; - EF02899F83ADD13A5C348C8C6AF0E22B /* TextInput */ = { + F0327A6003E18CA9DA6F61303BDB3AC5 /* React-RCTSettings */ = { isa = PBXGroup; children = ( - 070D8D1C1B32FFBE094021C01913F8BC /* RCTBackedTextInputDelegate.h */, - 12EE46404C88EE4302878276636C0E0D /* RCTBackedTextInputDelegateAdapter.h */, - 064C9E82E05BA7D0672A93207EA0A3B5 /* RCTBackedTextInputViewProtocol.h */, - 2D316515E3C4D276B23638661A6A9C23 /* RCTBaseTextInputShadowView.h */, - 3B03D8EA1C5F8BD52B4994EE0D4A0F02 /* RCTBaseTextInputView.h */, - AA0F52207F6680AC6CC12E0FC833672B /* RCTBaseTextInputViewManager.h */, - 4899C6E11AA0D7302D047F15DDFC9A60 /* RCTInputAccessoryShadowView.h */, - A20A1775CECF70FDB0A05B7C12A5D99E /* RCTInputAccessoryView.h */, - D4D7A183F0626C3DEEF5CC2967FE038A /* RCTInputAccessoryViewContent.h */, - 4B3686332A431ADEBE518021AC34BDF6 /* RCTInputAccessoryViewManager.h */, - A30CA10BD3D0FFFC75579BEDA72F4322 /* RCTTextSelection.h */, - 37B2E7A72C315EFFCBE390FF0813F95B /* Multiline */, - 062B03BD8A0EE929780442DBF221B7D2 /* Singleline */, + 2A871FA84A52BD22BB179B42C1F44F20 /* RCTSettingsManager.m */, + 2B20EFB79432F08207A0BC2109EE1EBB /* Pod */, + 238B28F479949ED98B0EC82115122286 /* Support Files */, + ); + name = "React-RCTSettings"; + path = "../../node_modules/react-native/Libraries/Settings"; + sourceTree = ""; + }; + F17FD1931E1CAD6AC06B4D95C7E42A0C /* Support Files */ = { + isa = PBXGroup; + children = ( + 34390AC1C4436AA28EA4274C83B23674 /* React-RCTBlob.xcconfig */, + 3A5C5801730B079C30BC743C5E2977DD /* React-RCTBlob-dummy.m */, + A9A1808533E8B43C330738D66896F12F /* React-RCTBlob-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/React-RCTBlob"; + sourceTree = ""; + }; + F1BDB9B9D34F3B7FE27B9A8AC02719FD /* Support Files */ = { + isa = PBXGroup; + children = ( + 7E31A6B449E57AABC9237A24B247CB6A /* ReactNativeART.xcconfig */, + D85FDDE6F7D1E0584936A5EC114653D0 /* ReactNativeART-dummy.m */, + 25657EDE3FE1FA2CCBB881EC2F327BAA /* ReactNativeART-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/ReactNativeART"; + sourceTree = ""; + }; + F219CAF7F8BC8FCF331E390A74833695 /* TextInput */ = { + isa = PBXGroup; + children = ( + 1308887462257AEAE38116C2EF6147D7 /* RCTBackedTextInputDelegate.h */, + 249EA4001666958E10159EC31E37103B /* RCTBackedTextInputDelegateAdapter.h */, + 21DE35A2679D9ED09F78CC7F60A228D8 /* RCTBackedTextInputViewProtocol.h */, + 0C2B5550BAD8A5777A79E8FB7EB4D833 /* RCTBaseTextInputShadowView.h */, + 885AA0A3C1FC7159967E28C438FE0FB7 /* RCTBaseTextInputView.h */, + EB63F685143CFE850F245E806125F4AE /* RCTBaseTextInputViewManager.h */, + 76092B968AAC9C724EC9667F654AC5B4 /* RCTInputAccessoryShadowView.h */, + C1B98CFF2D3F49F6DFED56367DEDF379 /* RCTInputAccessoryView.h */, + 51E045377B57602000DED486F9BA7183 /* RCTInputAccessoryViewContent.h */, + 379936F1F3A202E81F05EB564A22F2FB /* RCTInputAccessoryViewManager.h */, + 420B51DB8652B52DD1B92079DF6EFBB8 /* RCTTextSelection.h */, + 6B386F027F4B267841A3111DB1104A2B /* Multiline */, + 172890F8F0175FAF1FD29B3C52C16897 /* Singleline */, ); name = TextInput; path = Libraries/Text/TextInput; sourceTree = ""; }; - EFB4C0E900E6E484AEAB8ACC2FA45DBD /* Filters */ = { + F26AAD006FF956042BD5D10835BFAD9F /* ScrollView */ = { isa = PBXGroup; children = ( - A3B3F076BBD3556DC3A8D807870D4889 /* BSG_KSCrashReportFilter.h */, - FB59BD2F76D819846E10393D518459F6 /* BSG_KSCrashReportFilterCompletion.h */, + 05B625DEEE974C099FC67FA0558BC026 /* RCTScrollableProtocol.h */, + 30E517EE6A81BC1E2A5ABBEB29553B67 /* RCTScrollContentShadowView.h */, + 1BE510633AEDC567A5FC1865B344C48C /* RCTScrollContentShadowView.m */, + 85FF47ECA5D929CEE09263D7E7DBA3B3 /* RCTScrollContentView.h */, + 87F1FB06E4034624ADF89C7264155A30 /* RCTScrollContentView.m */, + 99FBE28ACFF451E8AC265AEE68702C39 /* RCTScrollContentViewManager.h */, + F8F38AFD3B266BA2D4AEBDA526734BCC /* RCTScrollContentViewManager.m */, + AD4C01981405A7597CB80DEE9DAF3C4E /* RCTScrollView.h */, + 440B6391AA28FA24977CB94B3896EDD0 /* RCTScrollView.m */, + B41185A17A123EA4A1F48887C13EF48D /* RCTScrollViewManager.h */, + 5567F41097BA02556E86FC147A5DA435 /* RCTScrollViewManager.m */, ); - name = Filters; - path = Filters; + name = ScrollView; + path = ScrollView; sourceTree = ""; }; - EFBE5272DEFA0428BE885E8F99347C8C /* FBLazyVector */ = { + F34ACEB766383EDB5038DABE8BCDB9A1 /* ViewManagers */ = { isa = PBXGroup; children = ( - 425B70D8541A29E62855E3B6164CD604 /* FBLazyIterator.h */, - 2C0A5A89902E2AEDF60F5DE388F6D344 /* FBLazyVector.h */, - 03F78F2C0926E8002C0CCD14B6881AF6 /* Pod */, - C457462B0ED6025ECC609E14CFB85393 /* Support Files */, + 7AC949A6CDC9FAD791701093030E2C19 /* ARTGroupManager.h */, + D499DB14204DC262235EAD034FA63FC1 /* ARTGroupManager.m */, + D7C7649AFE69309F676CF78B232B1D1A /* ARTNodeManager.h */, + CEEA07457F9F80108524E600457D4058 /* ARTNodeManager.m */, + 45224B74709B8DD765226CAF36340E9E /* ARTRenderableManager.h */, + 2FBD67DD275E4D2357C19CDB02960A2E /* ARTRenderableManager.m */, + 50D140D10C5D3ADF647AD0DAE5449594 /* ARTShapeManager.h */, + 3A26988C43DEAD2433F7FDAF9DAE8BF2 /* ARTShapeManager.m */, + 547D8A09A994D72FE717196BE4DB1272 /* ARTSurfaceViewManager.h */, + 0DDE34F065DF5E05D72D5B285F4B2FB3 /* ARTSurfaceViewManager.m */, + AA0F80AA3E4AA05D56513CF3F9689879 /* ARTTextManager.h */, + 3DF5B2C7483E20A7A39072BA3B0AF5A0 /* ARTTextManager.m */, ); - name = FBLazyVector; - path = "../../node_modules/react-native/Libraries/FBLazyVector"; + name = ViewManagers; + path = ios/ViewManagers; sourceTree = ""; }; - EFF363D4A2ABF985427048873F7ADC19 /* Default */ = { + F36B138CC8C6F856C9223C8DD70A9FAE /* React-CoreModules */ = { isa = PBXGroup; children = ( - 82EE6AFC229C4A35B41D60B5164174EF /* Base */, - E17FA5A86E09334846FEB41AC9BD2710 /* CxxBridge */, - 7A173DF295950FB4E46D7E7282A87DE2 /* CxxModule */, - 0980D52EB3205083BC6C9AFC082407F1 /* CxxUtils */, - 120449DC76C4BA02CB26007CA203CA08 /* Modules */, - 7C46F694651C7D860B74F6E6C24C23C7 /* Profiler */, - A2B2C6BB2D2ED0D117626553849F6920 /* UIUtils */, - 32B79062C33B9FFF81C2970C819626DC /* Views */, + 72B02B27678B51B83704A4BE3DFEF191 /* CoreModulesPlugins.mm */, + E5F4B99ABD683869879D48CC022775B4 /* RCTExceptionsManager.mm */, + 2930A500E273DC05E1A45287FE4CA79F /* RCTImageEditingManager.m */, + E17056756AD03B5D1A3A24AE1C8217A1 /* RCTImageLoader.mm */, + BD2997D0C57A5E9834A3F6E7D5A2CDC9 /* RCTImageStoreManager.m */, + 7E9AE99C7865CC26536BC2DD0CB0854B /* RCTPlatform.mm */, + 7AFEC717B70C015C7A0756DF889212C2 /* Pod */, + C61F00511035F3B8FF833E7B8B63B34A /* Support Files */, ); - name = Default; - sourceTree = ""; - }; - F06955599D0B786FE62304EF6D562DE7 /* Support Files */ = { - isa = PBXGroup; - children = ( - 7B9A20A94248F8D409B2B84F98A5721C /* RNRootView.xcconfig */, - FA49BCFA23CB06D68B401F3F82DE2353 /* RNRootView-dummy.m */, - 0E6E452DCA2DFA4CC9919E00868F396B /* RNRootView-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNRootView"; - sourceTree = ""; - }; - F08AC9099B6B0FFF2B05D73A5CE53DB3 /* Pod */ = { - isa = PBXGroup; - children = ( - 0EE3C78A4FB57AF8C4DDA6636283EF42 /* LICENSE */, - 68EE2D25064CC06DF3BB7FACB714AB67 /* react-native-webview.podspec */, - 0410C8D27F334123935DEE0E751BB616 /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - F0D360AB29FF2F5D9F4B632A80C12DBD /* react-native-document-picker */ = { - isa = PBXGroup; - children = ( - A43B2A2F1692B94FFBE6296047F98078 /* RNDocumentPicker.h */, - 575E6B48EA8E2CA349D94E369059D1BD /* RNDocumentPicker.m */, - E7E67BC4769490EF548C8575C2EBFC94 /* Pod */, - AE915D0B820949DB75A2D75AF6796279 /* Support Files */, - ); - name = "react-native-document-picker"; - path = "../../node_modules/react-native-document-picker"; - sourceTree = ""; - }; - F17570E75B49AEF379AFAEDDE0AA48C4 /* links */ = { - isa = PBXGroup; - children = ( - A87A088034D2CEC390DA193A4BB1D57B /* RNFirebaseLinks.h */, - 2F3A0569C30CDC36BA969C3E222C2C32 /* RNFirebaseLinks.m */, - ); - name = links; - path = RNFirebase/links; - sourceTree = ""; - }; - F1D24546CDE01417D66C8738912CB2EA /* Transitioning */ = { - isa = PBXGroup; - children = ( - BE9D0C42DC3FEE44D14FF79EE1BDAFDD /* RCTConvert+REATransition.h */, - FB0466ADC87C26343FE7AE73E674521A /* RCTConvert+REATransition.m */, - 8699EEB9603351EF2A61B531B0CA9064 /* REAAllTransitions.h */, - DA6FEACD26AD2407B6B041023035776F /* REAAllTransitions.m */, - 37FAD1532FB0289245A4838BA68B4A79 /* REATransition.h */, - 2BB9233F6835B791FD570E679411CD36 /* REATransition.m */, - A9F1ECB1C89116CD06A428B9A667E33D /* REATransitionAnimation.h */, - F5BF7947C5E5872211B056BE23B79E74 /* REATransitionAnimation.m */, - 850DC549E6A0EDF11179C96C39F7B3B6 /* REATransitionManager.h */, - 3396D88E1D3A8D3766175396AF1C7CCA /* REATransitionManager.m */, - EB02E1D6B07453B5F6ED0EBFD6E676A5 /* REATransitionValues.h */, - 6F03D14446D09D90638B1413DA22CEF7 /* REATransitionValues.m */, - ); - name = Transitioning; - path = ios/Transitioning; - sourceTree = ""; - }; - F28C3B78ECE85EF6CB12E5D27BC16787 /* RCTAnimationHeaders */ = { - isa = PBXGroup; - children = ( - BE1D3669F434F811A32D13C0E52FAFE8 /* RCTAnimationUtils.h */, - 9D25603DCDBD905C3E3280D640D6E574 /* RCTNativeAnimatedModule.h */, - A2B94ECD37EABC4C367A6D47319FAED9 /* RCTNativeAnimatedNodesManager.h */, - 64075650DA00566B0778664AD8BDD58B /* Drivers */, - E8B6574C43E0AFC0C9491838EF33D6A3 /* Nodes */, - ); - name = RCTAnimationHeaders; - sourceTree = ""; - }; - F2FED0ED3FBC8CA078359C0FC1248886 /* Support Files */ = { - isa = PBXGroup; - children = ( - 85E74382E16E9ABBABA8D056F3A0E03A /* UMCameraInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; - sourceTree = ""; - }; - F325F4A8EEAD79D718FC82BA38E8D588 /* Support Files */ = { - isa = PBXGroup; - children = ( - D48CC1A2F4DBE99ED25B6AB7A23A80BD /* react-native-webview.xcconfig */, - AD75891BD7317952B386BB20DB6EC735 /* react-native-webview-dummy.m */, - 09EAF8FF19D2FABF20F4CEF3A61E196D /* react-native-webview-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-webview"; - sourceTree = ""; - }; - F335E7F00B38376D026AB6D1FCFD9F60 /* Support Files */ = { - isa = PBXGroup; - children = ( - B7AF00286728B672293B3F31A09F7860 /* RNBootSplash.xcconfig */, - 305EF1AA6F32D05EBF526DDE7C61764E /* RNBootSplash-dummy.m */, - DAC279F4E47CB7048005FBC49C4B6F8B /* RNBootSplash-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNBootSplash"; - sourceTree = ""; - }; - F3D006C73416CC0FB96AB6C6D2716BC4 /* Pod */ = { - isa = PBXGroup; - children = ( - 3AF4D0EB3C90215151BCD97FF5309E55 /* LICENSE */, - B78920E7F8B47FA8C28F5FA317E1BC35 /* README.md */, - D545A20954812CF97FA14CE6A6EC31FA /* RNUserDefaults.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - F4A28F4E353E86E13C4118229003C594 /* VirtualText */ = { - isa = PBXGroup; - children = ( - 46CA0C2F0C64FDE17DA59C7E8EBA9F7C /* RCTVirtualTextShadowView.h */, - 9B254C9C4A303F02DB2DDD0A2B7553FC /* RCTVirtualTextViewManager.h */, - ); - name = VirtualText; - path = Libraries/Text/VirtualText; + name = "React-CoreModules"; + path = "../../node_modules/react-native/React/CoreModules"; sourceTree = ""; }; F4E8C74AE7E1C7626C68E1FBF69F4B75 /* GoogleAppMeasurement */ = { @@ -12946,15 +12887,28 @@ path = GoogleAppMeasurement; sourceTree = ""; }; - F5AEBED96411EBE6BD67F8C09DDF4109 /* Support Files */ = { + F58E2BA46D9BE7AF7E944D70CB1A6DB4 /* UMAppLoader */ = { isa = PBXGroup; children = ( - A38AAD5AE0705D48A71F941F0EDD7695 /* UMCore.xcconfig */, - 87DED0944EDC6F15AE77CC2854EE3793 /* UMCore-dummy.m */, - C3A4325D71A2D28D9A420F7F6C4F938D /* UMCore-prefix.pch */, + CA6146538D9EC08C954D0E457725B2A9 /* UMAppLoaderProvider.h */, + D1ADC607BB15353F965858ABCFB3CC56 /* UMAppLoaderProvider.m */, + 87B43EFE108D744676A25D0DE7AB40F7 /* Interfaces */, + 011563D36C5AE7076FD2BDDBB3FD0610 /* Pod */, + 4EFE31D50AF7A61F24A42460E98A5E42 /* Support Files */, + ); + name = UMAppLoader; + path = "../../node_modules/unimodules-app-loader/ios"; + sourceTree = ""; + }; + F650E908CCC38313A969EC02E0FB24DD /* Support Files */ = { + isa = PBXGroup; + children = ( + C209D034DDFC1F6D088783677CACB505 /* React-Core.xcconfig */, + 5AA3E3F6E87FB7BCB39803BEBA093109 /* React-Core-dummy.m */, + 2FFCB9D89EDE35F822F28CD3B3532E08 /* React-Core-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMCore"; + path = "../../ios/Pods/Target Support Files/React-Core"; sourceTree = ""; }; F6908B7F3DAA9157C0C6086537CC4F7A /* demux */ = { @@ -12967,46 +12921,36 @@ name = demux; sourceTree = ""; }; - F6D16938707E0C0317B1C93417D0B379 /* Support Files */ = { + F71F1B3ABD955B695D466A833B0D17F5 /* Sentry */ = { isa = PBXGroup; children = ( - B1D8E53CA06E2FD05334233A34F0A306 /* React-RCTImage.xcconfig */, - D1D920036CBFEB6265368ADF9F6ABB72 /* React-RCTImage-dummy.m */, - 4EBC3FB8171DB46911F391B0CCC569FC /* React-RCTImage-prefix.pch */, + ED6418C05DC7F19AB106263F7C32FCC6 /* BSG_KSCrashSentry.c */, + 97BE7BFFF182E661D432FFE8E3898511 /* BSG_KSCrashSentry.h */, + C95C4506AB6B5CFC28D1AEDBD48CAF91 /* BSG_KSCrashSentry_CPPException.h */, + 630934A42CE715B3E03D88D2901ACCFB /* BSG_KSCrashSentry_CPPException.mm */, + D46C8720FF023E767A3FD73608E6AAFC /* BSG_KSCrashSentry_MachException.c */, + AA0C881E8B3849CF7F576CD086990F1B /* BSG_KSCrashSentry_MachException.h */, + 856E1B287658CC783C39D96BB611437E /* BSG_KSCrashSentry_NSException.h */, + E3DCC62AAF84C99768664D5FCB9581FC /* BSG_KSCrashSentry_NSException.m */, + 2C4321BC4A132B3112F042E5A4BEB420 /* BSG_KSCrashSentry_Private.h */, + A400C135266E951FFAF31B82700341CC /* BSG_KSCrashSentry_Signal.c */, + C3648A8322404CC8C46A79E0F95A315A /* BSG_KSCrashSentry_Signal.h */, + 5614982E5BAB6B26628667BE302DB37F /* BSG_KSCrashSentry_User.c */, + 5D86346C2AE41566D1B246082A4B399A /* BSG_KSCrashSentry_User.h */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTImage"; + name = Sentry; + path = Sentry; sourceTree = ""; }; - F76AB785A32C920886FB66695E6C808D /* Support Files */ = { + F7713C2064D6509CD159244C4E39E9ED /* Support Files */ = { isa = PBXGroup; children = ( - A849D6F17D1FCB59C9CE3912E8FECFDC /* UMReactNativeAdapter.xcconfig */, - 9A06933249D6B6F3242FD631D34B3769 /* UMReactNativeAdapter-dummy.m */, - 01BA4F6CDF122A85D4FEC3D3AE900FB7 /* UMReactNativeAdapter-prefix.pch */, + 5D3CEA80B14F24C4D770A2E19D7204DB /* rn-extensions-share.xcconfig */, + 8EB4958C1AAE02BF779DE65F281D502C /* rn-extensions-share-dummy.m */, + B44A94BD5E5C4FA747BAE1692543611B /* rn-extensions-share-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; - sourceTree = ""; - }; - F79BD2BD74956D79C039615BB2F612E7 /* DevSupport */ = { - isa = PBXGroup; - children = ( - B4A5F45A9E9B62BFC13C20E11D584CCE /* DevSupport */, - F8DAAFAB9784DD4AE12692ECC3DAA1F1 /* Inspector */, - ); - name = DevSupport; - sourceTree = ""; - }; - F7D7024944990F0D66C59AEFCE976E70 /* Support Files */ = { - isa = PBXGroup; - children = ( - 2D3998332EF394DA5DF192449A0CFF01 /* React-RCTLinking.xcconfig */, - 89AB92D65AAB3D9E4D017CFE86A2A83E /* React-RCTLinking-dummy.m */, - F34FCA8A5A303D7FE703BC9FCE26A993 /* React-RCTLinking-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTLinking"; + path = "../../ios/Pods/Target Support Files/rn-extensions-share"; sourceTree = ""; }; F81EBDFF90F8EF7E9C7FD80A121F087B /* RSKImageCropper */ = { @@ -13035,28 +12979,133 @@ path = RSKImageCropper; sourceTree = ""; }; - F8DAAFAB9784DD4AE12692ECC3DAA1F1 /* Inspector */ = { + F8D5524FB063092E3325F8D28B28D52C /* Pod */ = { isa = PBXGroup; children = ( - F55F61BA61E17B03C7DE7BB3DD03F64F /* RCTInspector.h */, - 87D65F715B53D85F2BF5E4AE697B6965 /* RCTInspector.mm */, - 7FB7CD15C80E500BD73C67D1F79C3F61 /* RCTInspectorPackagerConnection.h */, - 9214CCFBCD5FCADCB4FD08313D9448C9 /* RCTInspectorPackagerConnection.m */, + C69C04ADD9CF573C52C251C1A991FF4D /* UMFontInterface.podspec */, ); - name = Inspector; - path = React/Inspector; + name = Pod; sourceTree = ""; }; - F9A9CF467616B1789A8A909A17424316 /* RNRootView */ = { + F99CDB4483656045B76B189556196FA0 /* DevSupport */ = { isa = PBXGroup; children = ( - B890DFC7A7421FAC89BAB926874BFA9F /* RootView.h */, - E7E54C339F5B0A1E7A94E3A2661EFD17 /* RootView.m */, - EE8282308B5F2C38B8E3DD3EF7B33636 /* Pod */, - F06955599D0B786FE62304EF6D562DE7 /* Support Files */, + EB72252CAC0049312C0A632E2F8F719B /* RCTDevLoadingView.h */, + EED0607F4BFC943666CFC8386F9377F4 /* RCTDevLoadingView.m */, + 65E0D2157B64854FED419EF02DE3FD1B /* RCTDevMenu.h */, + 3100F37554E286058370BD062FAC1D47 /* RCTDevMenu.m */, + 15CFC51C2159AED55EF822EE01AA5DFD /* RCTInspectorDevServerHelper.h */, + FF3804F6E5B0A5D91DBA8A993D10FB6A /* RCTInspectorDevServerHelper.mm */, + BEDE3328BA1A8945076556E42D63F101 /* RCTPackagerClient.h */, + E6FEC01938E6E2881B3F79CA8423559A /* RCTPackagerClient.m */, + A8602FC077BA48E60F4F61D2627E4B0F /* RCTPackagerConnection.h */, + 82DE597588FF763411D2654522BE7936 /* RCTPackagerConnection.mm */, ); - name = RNRootView; - path = "../../node_modules/rn-root-view"; + name = DevSupport; + path = React/DevSupport; + sourceTree = ""; + }; + F9AE074AB8667E103AB4D29D06057F3E /* Tools */ = { + isa = PBXGroup; + children = ( + 83DE6C3F3438F8E994848E8EFA9A1D28 /* BSG_KSArchSpecific.h */, + 98329DCCF0E9C701206E2578C76953D5 /* BSG_KSBacktrace.c */, + C80725470BFDE1260F794A5179DD62A2 /* BSG_KSBacktrace.h */, + 63DDE0DC4AACDEEC86EF46E256EFBCE1 /* BSG_KSBacktrace_Private.h */, + A10936A5CFE73F4649919F750A19356F /* BSG_KSCrashCallCompletion.h */, + 9DFEBD29FC57E8774800E8CBB8128456 /* BSG_KSCrashCallCompletion.m */, + CD77225F3389FD634A05B840D1B19DF3 /* BSG_KSDynamicLinker.c */, + 8CE510F89D067BBF690E179DBFE1E75D /* BSG_KSDynamicLinker.h */, + 07FC8D474C39CCD1546659DCEB345DF7 /* BSG_KSFileUtils.c */, + EAC3D0BCF30C8AE869CCC160C96A4108 /* BSG_KSFileUtils.h */, + 1A9CFC66C39806B6AED10B7D782682F5 /* BSG_KSJSONCodec.c */, + B43642FD0E1029A07935168BAA1A3FE9 /* BSG_KSJSONCodec.h */, + C29F91CE67C0C0BD5E497A29A8AF5C6E /* BSG_KSJSONCodecObjC.h */, + 2842B5FFC5432783179FF44CD633B830 /* BSG_KSJSONCodecObjC.m */, + 62479198ABD12ABC2AB2CBB922468BF2 /* BSG_KSLogger.h */, + 8C48D6A870D541C9C33E4D3391F7940F /* BSG_KSLogger.m */, + 19FB76F75E765847C76B32E82B7FD006 /* BSG_KSMach.c */, + 6229001BE76DEB8679ABD3715883D420 /* BSG_KSMach.h */, + 29670EA7212693B9A77B25BCB1B2DE89 /* BSG_KSMach_Arm.c */, + 6C42D1AEB2EA0DD81E36AE847D421E47 /* BSG_KSMach_Arm64.c */, + 5C236F69F20B76124FCDF88A46243966 /* BSG_KSMach_x86_32.c */, + 9C48FC3DE43ECB47614C9E744A10EADB /* BSG_KSMach_x86_64.c */, + 5551575C22DFECDAF2FC590238BBB242 /* BSG_KSMachApple.h */, + B209B9F601D63E666CAD8C90CAC0B43E /* BSG_KSObjC.c */, + 32220994394A40DE7B9D36CAE714B59A /* BSG_KSObjC.h */, + 466503B6AAEA47B56A7ECA1834A44B75 /* BSG_KSObjCApple.h */, + 008EF4A8E637E3AEF9D320EA581F1D58 /* BSG_KSSignalInfo.c */, + 06CBBD83E6C1F160B7D5A5719C8DCBEB /* BSG_KSSignalInfo.h */, + 90790859284BE76172F93E9F7813BB5D /* BSG_KSSingleton.h */, + 73A8489BE4513CBADC8D8802AF64A207 /* BSG_KSString.c */, + 407195066338AC41FC1C9733A789B974 /* BSG_KSString.h */, + 06277AF1991D365E5B1E771917DD49D7 /* BSG_KSSysCtl.c */, + 4B4F0F981C6AD43F5E733E48EBBEC200 /* BSG_KSSysCtl.h */, + 36A03901B4DC6ECFD9F75A20F0D222A6 /* BSG_RFC3339DateTool.h */, + F98E9A2244FBE47544AD9A5D8A263A1D /* BSG_RFC3339DateTool.m */, + 32E8670CCB6423A4F5E3C093AF04252B /* NSError+BSG_SimpleConstructor.h */, + C36359EBCDDD39DCBDD63F8A091AF733 /* NSError+BSG_SimpleConstructor.m */, + ); + name = Tools; + path = Tools; + sourceTree = ""; + }; + FA967AC70E4B763378E1F4FEA9D13281 /* DevSupport */ = { + isa = PBXGroup; + children = ( + F99CDB4483656045B76B189556196FA0 /* DevSupport */, + 8DDE3E86EDA2D6AE1A6843AFAEAF9573 /* Inspector */, + ); + name = DevSupport; + sourceTree = ""; + }; + FC2C423674CE9AAA49F583CD0276499E /* Transitioning */ = { + isa = PBXGroup; + children = ( + 1FC6230FB6919867F9E4FFE36EE66EDB /* RCTConvert+REATransition.h */, + B99B50260D3C74CC0BE95A439511508F /* RCTConvert+REATransition.m */, + B1817447D08BB116B2B09ECD993E1770 /* REAAllTransitions.h */, + 91EAA0DE0CBBA7A05103808C326CDA3E /* REAAllTransitions.m */, + BCC1509149AD55868B0A8C7F4BA1936A /* REATransition.h */, + BF2D6E7BE353183521A57A78A49ADA16 /* REATransition.m */, + 8AC291AC8A6255C6CA2555A29AD5470A /* REATransitionAnimation.h */, + 644EF624B21614E883715488CDB1713E /* REATransitionAnimation.m */, + 871606E35697C7A214F174393C32C5A3 /* REATransitionManager.h */, + 6CF3C6C0E55376CABB4BFAC540BCC319 /* REATransitionManager.m */, + DC7A46600FBDC9BC873D1E50C0822400 /* REATransitionValues.h */, + C57ADAB61AC6F95EDE1531DCF48B51A0 /* REATransitionValues.m */, + ); + name = Transitioning; + path = ios/Transitioning; + sourceTree = ""; + }; + FC59B7331AE341F0413D952C9259C402 /* CxxModule */ = { + isa = PBXGroup; + children = ( + 10A3D7035CD7D2F0C8454D9EDC73BA99 /* DispatchMessageQueueThread.h */, + 89D910E4F42FE041573767A15964B6A7 /* RCTCxxMethod.h */, + 6D47D80CBD48D815F683A354FF3FAFF8 /* RCTCxxMethod.mm */, + 430AB1CF43FF88FADBEFA7054F43AD7C /* RCTCxxModule.h */, + 6E47D5D95BAEAF224B1C3E50EB8D703B /* RCTCxxModule.mm */, + 8EF4278534C114B75848F65D72660EB2 /* RCTCxxUtils.h */, + 9BD2DF60DA184804CFE750C979ACC465 /* RCTCxxUtils.mm */, + 77B65A07E70545FED8EB9F3870F539D4 /* RCTNativeModule.h */, + 55D3CD657EE4B6F69D3372EF182FD636 /* RCTNativeModule.mm */, + ); + name = CxxModule; + path = React/CxxModule; + sourceTree = ""; + }; + FD5A082D0D2E340EEE411963B287F13E /* react-native-keyboard-input */ = { + isa = PBXGroup; + children = ( + 218477F23FA810D68B35E0DF533922A3 /* LNInterpolation */, + 88F1C5CDED7D1A41F977E22A57792F3E /* Pod */, + 3C323F0E225E5DB3AB4E1EDD64942BB1 /* RCTCustomInputController */, + 8EE59F4CD63FDEC3C8A02E47D3D1B10E /* Support Files */, + ); + name = "react-native-keyboard-input"; + path = "../../node_modules/react-native-keyboard-input"; sourceTree = ""; }; FE43C14EE339FF31B74ECE47E1D075CD /* Support Files */ = { @@ -13068,12 +13117,34 @@ path = "../Target Support Files/Fabric"; sourceTree = ""; }; - FF86B41DB7ED68E0A1BEB4722384F4FF /* Pod */ = { + FE56202C6992520F70A848D30B72BF6E /* Reporting */ = { isa = PBXGroup; children = ( - 0DCBA648191323A9584295FF82215FDE /* React-jsinspector.podspec */, + C7B597B80CF849B7979956947F8C4A8E /* Filters */, ); - name = Pod; + name = Reporting; + path = Reporting; + sourceTree = ""; + }; + FE98B0896FF26D43B4DA4510D54A3213 /* UserNotification */ = { + isa = PBXGroup; + children = ( + 6E5DD8E9C4EDFA25C3D2507671F7D2AB /* EXUserNotificationPermissionRequester.h */, + E6670F2D0C21AAC77816339E4F162C86 /* EXUserNotificationPermissionRequester.m */, + ); + name = UserNotification; + path = UserNotification; + sourceTree = ""; + }; + FF530D20D1A8D927B43CFB93470B89E7 /* Support Files */ = { + isa = PBXGroup; + children = ( + 5FF709631B88B27D8DC8102633CDC321 /* EXLocalAuthentication.xcconfig */, + 7CD14069E0DC340CAEA66EBACA998E48 /* EXLocalAuthentication-dummy.m */, + 797BF8D47C6BF3255EE647CCA8E6D2EA /* EXLocalAuthentication-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXLocalAuthentication"; sourceTree = ""; }; FFB3455A3E37A9225E29597AD5CD25E2 /* Support Files */ = { @@ -13860,6 +13931,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 872381D4916F2E9FFB439945BDBFFEE2 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 89C68E4127297AAB36A30F848FAF3423 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -14556,6 +14634,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + FB6293DA6618AC562278E34CC3D78791 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 111D765C73417F5F3D9DB4A549BF16B7 /* EXLocalAuthentication.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; FF03ED8CD43F9BD58ED397C0CAC7D251 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -14580,13 +14666,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - FF2E8180DF64387E4C859A48D9C379C3 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ @@ -15332,6 +15411,25 @@ productReference = ED1E3FC0DC90F4A787472917BFB6B235 /* libEXFileSystem.a */; productType = "com.apple.product-type.library.static"; }; + 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */ = { + isa = PBXNativeTarget; + buildConfigurationList = 72B602FAC3AD6A76C8A864443CFAAEF3 /* Build configuration list for PBXNativeTarget "EXLocalAuthentication" */; + buildPhases = ( + FB6293DA6618AC562278E34CC3D78791 /* Headers */, + F981E37E065FDF8BF74B3C3467322E6B /* Sources */, + FFD53F02DE6776C8D6ECBFC967292969 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 7CDFAC77C9B2E078C4776F6D7DA9941C /* PBXTargetDependency */, + 9944716ED82209B066C56C02B90FA94B /* PBXTargetDependency */, + ); + name = EXLocalAuthentication; + productName = EXLocalAuthentication; + productReference = 72558F571738704549E1838E845D2770 /* libEXLocalAuthentication.a */; + productType = "com.apple.product-type.library.static"; + }; 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */ = { isa = PBXNativeTarget; buildConfigurationList = 2104416FC7DF9DFB898FFF821F2D5A30 /* Build configuration list for PBXNativeTarget "FirebaseInstallations" */; @@ -15709,112 +15807,113 @@ }; B37ECF22F1589E28F59BC9990B4DC476 /* Pods-RocketChatRN */ = { isa = PBXNativeTarget; - buildConfigurationList = F26EE9B2B5FD2D5AD6D57A5E00B6DBA4 /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */; + buildConfigurationList = 24CFDE8E6B59E85841835E4459C1B21E /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */; buildPhases = ( - FF2E8180DF64387E4C859A48D9C379C3 /* Headers */, - 5A33147B89B0F826DBB2A7C8361B6A3A /* Sources */, - 209A305BF84067D6B0C97551AAECEE5B /* Frameworks */, + 872381D4916F2E9FFB439945BDBFFEE2 /* Headers */, + 802D8F4FD9EA610011367FB2EAD9F9FE /* Sources */, + B6B295ECFF8B0B341BF334FEE8E81B65 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 0163A351F7AED8778A416FD3BBD772FB /* PBXTargetDependency */, - 9E3205112CFA1616D4220A5CF00E9F2C /* PBXTargetDependency */, - 787D4534DC2E341B956843A78CF92FC4 /* PBXTargetDependency */, - 850FF5EDEA3F81E067E7F853E3650961 /* PBXTargetDependency */, - EA9D7A3880E7F0B31930D0914654FE19 /* PBXTargetDependency */, - 09B39241B3E280FA2FCB322636EF2593 /* PBXTargetDependency */, - 34642A4D33B4F7C615B5AD15AB446185 /* PBXTargetDependency */, - E3159D5FC343C22520FF2B4B0459E8CF /* PBXTargetDependency */, - CB8E9AD38BD843EEF58EC702EF7ED992 /* PBXTargetDependency */, - 7A22522A5F615F1540FBAFAA7E34AA31 /* PBXTargetDependency */, - 2A18001733C6AD6117F4D146B79A10AB /* PBXTargetDependency */, - F282714507FDC5DC5D886221FF6CDD8C /* PBXTargetDependency */, - FD8A7904ABE8AF27D125769546B5E51E /* PBXTargetDependency */, - DB9AB5B53B6CCCBE2FD776EE42ED950C /* PBXTargetDependency */, - 1E20404CE20D5DCD4DA3FB1B30AAB0E0 /* PBXTargetDependency */, - 065BF63EB91D16B7DBC889DB60ACDE39 /* PBXTargetDependency */, - 1873F9A3182D6554DFFE745033E7C540 /* PBXTargetDependency */, - 989DC387050206A45A03E445661A0613 /* PBXTargetDependency */, - 1BA6E591AEB501BE69EB0A3FDB956DE5 /* PBXTargetDependency */, - 309417E9F9347ABC14B40C15F3AEB4AA /* PBXTargetDependency */, - 3D115EAA51E1D2B2C6503FE8F36DD0B5 /* PBXTargetDependency */, - 986F42DE34BA225BF42B620D544222A7 /* PBXTargetDependency */, - CB0644B1F52A5EFB2BA3841321410C79 /* PBXTargetDependency */, - F8DB381B1BEF02B5B386964E16154261 /* PBXTargetDependency */, - 36B73DF92DD1E06F068E3B539BB985C4 /* PBXTargetDependency */, - A4FC321A64D36BEFC11D8A56667AFA80 /* PBXTargetDependency */, - CE067F0D5ECE4D9453192A0DFC613C06 /* PBXTargetDependency */, - 1091E12556C042D9E61C8237E80EFF88 /* PBXTargetDependency */, - BB5EAD558A24F3E553AC3DD7A76EBD8F /* PBXTargetDependency */, - D489516279FB07C4E2BC2842037AFF6E /* PBXTargetDependency */, - 017CC5B823651056767A759DD1A971A2 /* PBXTargetDependency */, - 1253BC61DC8A0BE7AB5BFA05ADA6DEAF /* PBXTargetDependency */, - A661F2E103126B6C45FF002E351D940B /* PBXTargetDependency */, - C7C8A2C66A7840277621D6BB076F7B8D /* PBXTargetDependency */, - D91D241099F18F0DE183906F1618C336 /* PBXTargetDependency */, - DC5A037D0E60F5F2CA80B060D54A8705 /* PBXTargetDependency */, - 1F4516A9D7A8E409B3903973D4C387E8 /* PBXTargetDependency */, - ED05DB49106E17DAAA5813590CD58153 /* PBXTargetDependency */, - E92925DEC04B767D20A215A0E7E6D2C9 /* PBXTargetDependency */, - 9D4FCAAA47184E75D8730F74D6EC8B9F /* PBXTargetDependency */, - 9877CEF55433A59057C097B100C2D3C4 /* PBXTargetDependency */, - 908909CB5DDC589BCDCB56D567DA7CBF /* PBXTargetDependency */, - EA8631E45B89A3F6F465E6945F642A95 /* PBXTargetDependency */, - EE4DFA6B932AE57EA62D027AE8446ED4 /* PBXTargetDependency */, - 757C305AB757C6AA0ED36E1785120588 /* PBXTargetDependency */, - 2C1A97D3A4CC1E3DE35DD275A536FA46 /* PBXTargetDependency */, - 6FC6F9E653A7BF07473A71113EA8A960 /* PBXTargetDependency */, - 358CFA2540A614D1A8FDC64A9533E56D /* PBXTargetDependency */, - CF6D530D68FE14FA90C3808929AE97D0 /* PBXTargetDependency */, - 04319B9C27D24EEB454464DED7705349 /* PBXTargetDependency */, - 9B08B149DDEF02ED74A7AB6DA47D9BC0 /* PBXTargetDependency */, - 689CCFB1904FF02710C7C21DE725B6D6 /* PBXTargetDependency */, - C6D2AE4C0BCB8E296A6C162EB80EE98A /* PBXTargetDependency */, - 58F792844C39D4E5E0908C683C8C6F24 /* PBXTargetDependency */, - 626E1D2609C31B88EA3F10B5E0AA455C /* PBXTargetDependency */, - A4AF40C2B01E0F7A9132B61DB8C20A93 /* PBXTargetDependency */, - 50E7A41029F5C39EC16175B588B3BA73 /* PBXTargetDependency */, - 7D23035792FB769C51803FF241D0F09C /* PBXTargetDependency */, - DEC0977AE44E646B7EEDABCCE480F726 /* PBXTargetDependency */, - 148D2F0BAC9A8BD1D834A37BE0819723 /* PBXTargetDependency */, - 7468AD0E0A42DFA1B47EB7F70FBBE412 /* PBXTargetDependency */, - 98C01394D330BA20C681270791F31088 /* PBXTargetDependency */, - B8973632A11D2D0239DF0B437FAD315C /* PBXTargetDependency */, - DC39358A91C1E5589850A1C9E8124DCC /* PBXTargetDependency */, - A128AD67B77932462396757E58C2A777 /* PBXTargetDependency */, - FBFE8AB9FADCE03960EAF28AFD0C539E /* PBXTargetDependency */, - 5144DD74DA36D4CAE8C20DB6DA639D3C /* PBXTargetDependency */, - 70179A857AD712438E3CF81888AEA033 /* PBXTargetDependency */, - 7B6D7F84C22DEC1FACCB3BCA71690B87 /* PBXTargetDependency */, - 964C3849C8DBC4ED45A3BB9A88418C85 /* PBXTargetDependency */, - 317DD4D9AE77ADD460AEC78634964950 /* PBXTargetDependency */, - 174AD04B4E0CD582D35D2EF0798B1B42 /* PBXTargetDependency */, - 0D82F02EE45F79EF5B37AED743FE8A5A /* PBXTargetDependency */, - 458D52EB6EBCB5E4376C19AAECB54F2B /* PBXTargetDependency */, - B76881465AAB1FC4A53E8C4B39473774 /* PBXTargetDependency */, - 75BED7C1EEBFD06FDE1970FAD39BDB15 /* PBXTargetDependency */, - 5D0AF523ED0CCD373DB583E1CE7B781A /* PBXTargetDependency */, - 5A44BDF26DFA1CC311E09C0F0F46B1DD /* PBXTargetDependency */, - 536D0FB780DAA465D9077E89B3F45AE9 /* PBXTargetDependency */, - 2C418BBB78672CED740CF03399158E53 /* PBXTargetDependency */, - 33651E7FFBAAFFCBEB29CB56440F1BB6 /* PBXTargetDependency */, - 0A4301DC2C1F68397FBCBE949ED4665B /* PBXTargetDependency */, - 3545FAB5D8AA67BEA9138119E34326D5 /* PBXTargetDependency */, - 6500F8B0D5E132AB5654480EE6C3B61E /* PBXTargetDependency */, - F9C9E5D912A8B2DEA72F1282DFDD29BC /* PBXTargetDependency */, - 8CC2283200E2B004623DCAAC04233A65 /* PBXTargetDependency */, - DFDA8A3D17D0FFB16B98A766B6955171 /* PBXTargetDependency */, - FEA092F97B36E684DF136833224EB093 /* PBXTargetDependency */, - 4AFF7BFA25E79F077F340413E2B5F098 /* PBXTargetDependency */, - BF7FBDC0A3668CD82C0A05E5C2764E74 /* PBXTargetDependency */, - 14F43CF5F839411B8E33A1ADCA0A1E50 /* PBXTargetDependency */, - D37014B2787F0459DA5F53ED4B361666 /* PBXTargetDependency */, - EE42278421F6B4DEABF1042392C5C4FD /* PBXTargetDependency */, - 17783559A31F87F4479184B4A4168D2B /* PBXTargetDependency */, - 612CA803AAA77E11E155A8D6921ECEC1 /* PBXTargetDependency */, - 7D413AF540D8799F5DF9020563B3E9A6 /* PBXTargetDependency */, - 1692FD33EA895769512CA8A3165A2395 /* PBXTargetDependency */, + 0F5AC68B8F821BBC65F6AD5B157A18AD /* PBXTargetDependency */, + 47A3BA653CB3E560483CEB5784298DF8 /* PBXTargetDependency */, + F0B9FD087F82784B9A70207837E386AF /* PBXTargetDependency */, + 0B9CD7D1986FFCAD7F18DF6841FC0CD8 /* PBXTargetDependency */, + A2C844D4DC58B9F97D4AC1FC800548F5 /* PBXTargetDependency */, + 9ACE2ADFDEBE68E4FCCA88976FB3CE7A /* PBXTargetDependency */, + 3C020EF79E1484A006CA298B5C275B7B /* PBXTargetDependency */, + 12010EBD7A8C4FFE93CF37675B582BFB /* PBXTargetDependency */, + 9F4CFCA9BC82118FFBF78C0B72ACC94C /* PBXTargetDependency */, + 6A72B467767A7B3986726F5B79772B36 /* PBXTargetDependency */, + 85029F5EB910A907C275C2C712517B1B /* PBXTargetDependency */, + 8BB1C29F712B8C5DF39DFB9B8140B7D8 /* PBXTargetDependency */, + AD3982566AD1002C35248C61015494E3 /* PBXTargetDependency */, + 4E3E946268023BE8AA406DC1422D57D0 /* PBXTargetDependency */, + A9F1DDED590825469EA873A8E0694C8C /* PBXTargetDependency */, + B9799B6DA322AD50EC4B04325EA554D3 /* PBXTargetDependency */, + C0CD4B115AF32DE4F52266A949F58BC3 /* PBXTargetDependency */, + 4CC001915FDB3AFCA05B8B266E65B47A /* PBXTargetDependency */, + 95DD0C3CE9B6B3793053D081D757F749 /* PBXTargetDependency */, + 3AC6557BA6C9CA302B438E6966922CD7 /* PBXTargetDependency */, + 3CF89670A4DE4B1EDEF8DDD910015E85 /* PBXTargetDependency */, + BFE48FA185215467778A90B18D4BC4B4 /* PBXTargetDependency */, + 3FD1803971E707CBD0225A281FD40E4E /* PBXTargetDependency */, + 68F224AFF674DD4299735389C9E0A3EA /* PBXTargetDependency */, + 0A4229A5BE369057D1A795555A24F892 /* PBXTargetDependency */, + B9EA0838D098B37EEFD1960E17A898AA /* PBXTargetDependency */, + AB07C974BD70E3B197B7923D52C115EC /* PBXTargetDependency */, + 4DA01EC7028D1057127D121972CA0F59 /* PBXTargetDependency */, + EE13F855FFD4A175849E154EF38C3099 /* PBXTargetDependency */, + 20710B5CCD95B8069610E5B3748F1AC9 /* PBXTargetDependency */, + 9D5B0B4BAA18E7FC3EBA5F9532D330CF /* PBXTargetDependency */, + A91F595EB8A2ACC3E2B368E8A47D6C67 /* PBXTargetDependency */, + 24009844375A5ECFB4324F4DDDF75D1E /* PBXTargetDependency */, + DAE915E26056C93906E8A1B04F56AA0D /* PBXTargetDependency */, + 59BDD4E987E20DFE99862EF7B8DDED15 /* PBXTargetDependency */, + CBD2F9D3CBE2717E24E09A737DFE801C /* PBXTargetDependency */, + 783C7A4BF6D4F52D6641CD06F0CF150D /* PBXTargetDependency */, + 01509242F40226F02A79A24FCCAABF9D /* PBXTargetDependency */, + 9329640E64A875BE2D6E333F11CB5D3E /* PBXTargetDependency */, + EC1397A3235EF60E03D6BA6283DF2C57 /* PBXTargetDependency */, + 54FB066B207A0E19C8B59746FE053B36 /* PBXTargetDependency */, + 38772D2A402A8554C0E8D50B8A2FF601 /* PBXTargetDependency */, + A9A8A542AD7A0B35E075C3E07D132720 /* PBXTargetDependency */, + EFA20BBD349FFA6BBE19093E83F0072D /* PBXTargetDependency */, + 9A6F8FEA9E0AFC127DA9ABD5BF694B32 /* PBXTargetDependency */, + A7DE55FF81A199753C33BB0FF60CF10B /* PBXTargetDependency */, + DCD5A2D3D1B59A3B78D92E40EED0B557 /* PBXTargetDependency */, + 44A3AE260F57AE982CA9137FF7E53209 /* PBXTargetDependency */, + 7729F116E58CCBBF2BB25B8F358AD099 /* PBXTargetDependency */, + F968CC5BFA92B79143588DA28EB600AF /* PBXTargetDependency */, + E50013E07D1B758D4DB54CF1D7D8E057 /* PBXTargetDependency */, + 2E2CAF9A1787060693AC55D0A39EB282 /* PBXTargetDependency */, + B835A9847018155857C6F7EEFA489993 /* PBXTargetDependency */, + C6D033D4965A83E51682F8D176CBD190 /* PBXTargetDependency */, + E72253786BAC9675B9B901505BA7E0BD /* PBXTargetDependency */, + C83870D84414B274428A901251F2A0CC /* PBXTargetDependency */, + 4BA08B05E6FEF61848F16C4922FB3461 /* PBXTargetDependency */, + B7141525630398CD759CF12D639C1C70 /* PBXTargetDependency */, + 594950D05FEB529075EEF0413E8D412E /* PBXTargetDependency */, + C6C9BA57D6B9E5E63518B6DDBB178383 /* PBXTargetDependency */, + DE235AFB04088ACE99A5172675F402C2 /* PBXTargetDependency */, + B1795AB7FF93851119E344734596F8C8 /* PBXTargetDependency */, + D194470B7DAA44624DEA160F934FA0B4 /* PBXTargetDependency */, + 4B332B52776123DEBAE7F5F56206983C /* PBXTargetDependency */, + C0CC47BDC6FDD04B0015CBDFEF8AEA08 /* PBXTargetDependency */, + 8358C68443853E1186176B2C08B5E629 /* PBXTargetDependency */, + 64060F33B5D34105944C73A876EA3528 /* PBXTargetDependency */, + BB91FABE98864B5420AD34B5552AE752 /* PBXTargetDependency */, + 2D47A30F992A44607813E85C3190665E /* PBXTargetDependency */, + 2FDDEF79244DA0AAAAAC94C32C18A2F6 /* PBXTargetDependency */, + D7BFCFCB56D34393D79178E24B3E5436 /* PBXTargetDependency */, + A10F028786CFD8379F8F202CECC53828 /* PBXTargetDependency */, + 3D72E16ED21BC3D52CD121881EC290E2 /* PBXTargetDependency */, + 04F8EBA88BEBF70B12474D708E1B166E /* PBXTargetDependency */, + 61C9CA43B73A8823740491FA1A6C49BF /* PBXTargetDependency */, + A8CC4594BD5ADDF40463AEC9B3C71A9E /* PBXTargetDependency */, + 7C7CD2936ED779A875F8429F4608CA8D /* PBXTargetDependency */, + 851F4DDA4A5AFCBDC9FA448C61764BFD /* PBXTargetDependency */, + A222A6167B100CD181C1B406EFD3EBC4 /* PBXTargetDependency */, + B640C702D7B3879174D76E36AAB68157 /* PBXTargetDependency */, + 1930E635DFC182EF51B6593EE6BAEC00 /* PBXTargetDependency */, + 25FC803241FEDC235161DE6790A788BE /* PBXTargetDependency */, + D453B131DE00E30C0C551DBA5EDC984B /* PBXTargetDependency */, + D6BDCC81ACFAFB3FA8FFFC2107431323 /* PBXTargetDependency */, + E866327FFC1162431884B82F14B5F964 /* PBXTargetDependency */, + CB112F564EA1F429184FE996AEDF2386 /* PBXTargetDependency */, + D1AA7C4F247E7691115F4D8995DC5ABB /* PBXTargetDependency */, + D3E5FE5F812BB250FC13AC7AF58B9A75 /* PBXTargetDependency */, + 9045DE354437144318FB896AECE0B0D8 /* PBXTargetDependency */, + EBF039172671835D2E43AF4392FC2FF2 /* PBXTargetDependency */, + 03C317C68CB8AF7D0D34030F8520446C /* PBXTargetDependency */, + B394EB23099E0BFD990E14927708C6CD /* PBXTargetDependency */, + A5566EF8FD918838B34FD9AB79AFC6DE /* PBXTargetDependency */, + BC0C1D1BF373901A193B57FEB886C277 /* PBXTargetDependency */, + FC436C7B528B08F9DC831249F794DB6E /* PBXTargetDependency */, + B66087BDCB72F4F675E8791E50F1C036 /* PBXTargetDependency */, + 1118F75D7EE8F9808786F531BCC08A6E /* PBXTargetDependency */, + 4BA5600396F4FFC1F7BE02C0672C728B /* PBXTargetDependency */, ); name = "Pods-RocketChatRN"; productName = "Pods-RocketChatRN"; @@ -16275,7 +16374,7 @@ Base, ); mainGroup = CF1408CF629C7361332E53B88F7BD30C; - productRefGroup = 624EFCD3BA0C90967B36FE2B156BE532 /* Products */; + productRefGroup = 890910D2505ED7E061FABFCD61823A18 /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( @@ -16288,6 +16387,7 @@ 868B90C74770285449C60DBA82181479 /* EXFileSystem */, 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */, 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */, + 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */, 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */, 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */, ABB048B191245233986A7CD75FE412A5 /* Fabric */, @@ -17165,14 +17265,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 5A33147B89B0F826DBB2A7C8361B6A3A /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - C30309C9191A34D7D22A2256EC998ADA /* Pods-RocketChatRN-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 5B70EC17842E8ACBBFDBBD2E3B94A3DF /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -17377,6 +17469,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 802D8F4FD9EA610011367FB2EAD9F9FE /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 798057C43424B8388D37B37C0FF3D516 /* Pods-RocketChatRN-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 8554764A2D1C1901709057D3B8ABEBB9 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -17876,6 +17976,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + F981E37E065FDF8BF74B3C3467322E6B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + A06FEF799AA13ED077FFB3494AEDD1DB /* EXLocalAuthentication-dummy.m in Sources */, + 1ABD61549684E693C9ABD854DE580471 /* EXLocalAuthentication.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; FD8D846724BD9A9EFDD245A14950A564 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -17902,17 +18011,11 @@ /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 0163A351F7AED8778A416FD3BBD772FB /* PBXTargetDependency */ = { + 01509242F40226F02A79A24FCCAABF9D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = BugsnagReactNative; - target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; - targetProxy = 6DACF8C0F22A39191BC967102D6C106D /* PBXContainerItemProxy */; - }; - 017CC5B823651056767A759DD1A971A2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNAudio; - target = 449C1066B8C16DEDB966DCB632828E44 /* RNAudio */; - targetProxy = 944166BB75C3540947B47A61E00F1027 /* PBXContainerItemProxy */; + name = RNGestureHandler; + target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; + targetProxy = 2A905BCFAF16D3E950B9D2A951CD7B8E /* PBXContainerItemProxy */; }; 0195F5DEB7685B9F2265A12A925425D7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17932,17 +18035,23 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = C978E2B36D38968087242ADBB0DE8929 /* PBXContainerItemProxy */; }; + 03C317C68CB8AF7D0D34030F8520446C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-keyboard-tracking-view"; + target = EAB05A8BED2CAC923712E1C584AEB299 /* react-native-keyboard-tracking-view */; + targetProxy = 428AE3E3B0C434B2BE72A0E6DC13CFAA /* PBXContainerItemProxy */; + }; 03C5D1361123B1B19A913F4F89661FDB /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = 46123FA0B5C451A00D38BB12B40AD23A /* PBXContainerItemProxy */; }; - 04319B9C27D24EEB454464DED7705349 /* PBXTargetDependency */ = { + 04F8EBA88BEBF70B12474D708E1B166E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; - targetProxy = A299ADA3FDB57DC308D9943551798DC9 /* PBXContainerItemProxy */; + name = UMFontInterface; + target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; + targetProxy = 78960F097FC7A2E31B0C67A8BF19D7C0 /* PBXContainerItemProxy */; }; 0601407CEF1C58A062803387CCDB2AF4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -17950,12 +18059,6 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = D1DD6F0528614F3F6A959C01AB7F7DCB /* PBXContainerItemProxy */; }; - 065BF63EB91D16B7DBC889DB60ACDE39 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCore; - target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; - targetProxy = BC0E24BAD53CA37058593F97F194653F /* PBXContainerItemProxy */; - }; 073CD2E5F0971C9A28E591F6289C48BA /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Crashlytics; @@ -17986,17 +18089,17 @@ target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; targetProxy = 2AF3E62F6A3C8DFFC033624C8B125A17 /* PBXContainerItemProxy */; }; - 09B39241B3E280FA2FCB322636EF2593 /* PBXTargetDependency */ = { + 0A4229A5BE369057D1A795555A24F892 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXFileSystem; - target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; - targetProxy = B6F6DE272AE840D439D4E212F15B9972 /* PBXContainerItemProxy */; + name = GoogleDataTransportCCTSupport; + target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; + targetProxy = D681F2B0538A69821F2C0FD7218C3B49 /* PBXContainerItemProxy */; }; - 0A4301DC2C1F68397FBCBE949ED4665B /* PBXTargetDependency */ = { + 0B9CD7D1986FFCAD7F18DF6841FC0CD8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = libwebp; - target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; - targetProxy = 858548AA95583BA281547528A7EB75C9 /* PBXContainerItemProxy */; + name = EXAV; + target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; + targetProxy = 9F4E2440EF4574322286CDA4DA94C082 /* PBXContainerItemProxy */; }; 0BDC71A280A13EDA3BACEEA9FFA4057C /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18010,23 +18113,23 @@ target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; targetProxy = EE98A4C80DE900CD0C9ED8195B4EF52D /* PBXContainerItemProxy */; }; - 0D82F02EE45F79EF5B37AED743FE8A5A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFontInterface; - target = 014495932E402CA67C37681988047CA2 /* UMFontInterface */; - targetProxy = D3EE9341838CA7E943BB9AD25B50B193 /* PBXContainerItemProxy */; - }; 0EA175BD24BB28A0E0412FF094DE386B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = B7CA8E5E6048734280447632DB142C89 /* PBXContainerItemProxy */; }; - 1091E12556C042D9E61C8237E80EFF88 /* PBXTargetDependency */ = { + 0F5AC68B8F821BBC65F6AD5B157A18AD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = PromisesObjC; - target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; - targetProxy = 07DC6E90BB516E5BBEDABE6015A7FABA /* PBXContainerItemProxy */; + name = BugsnagReactNative; + target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; + targetProxy = 7479C9A02CE9BD8D4DD262E3491EA1C7 /* PBXContainerItemProxy */; + }; + 1118F75D7EE8F9808786F531BCC08A6E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "rn-extensions-share"; + target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; + targetProxy = 037069A333838AB146D7F63FFFE3951D /* PBXContainerItemProxy */; }; 111B42C5DC57FD6481F10A216C2A2A54 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18040,23 +18143,11 @@ target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; targetProxy = 0ECB4C54EED84F5258E41AFD4657F11F /* PBXContainerItemProxy */; }; - 1253BC61DC8A0BE7AB5BFA05ADA6DEAF /* PBXTargetDependency */ = { + 12010EBD7A8C4FFE93CF37675B582BFB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNBootSplash; - target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; - targetProxy = 0DC6D7B6B51A1759AA29C1CFE8A83A64 /* PBXContainerItemProxy */; - }; - 148D2F0BAC9A8BD1D834A37BE0819723 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsiexecutor"; - target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; - targetProxy = A967341B3ABFCE9F8CB2F366C557AE3F /* PBXContainerItemProxy */; - }; - 14F43CF5F839411B8E33A1ADCA0A1E50 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-notifications"; - target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; - targetProxy = DDB8A150219B61420412DA360BC8EEBB /* PBXContainerItemProxy */; + name = EXImageLoader; + target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; + targetProxy = C295506CE457FFFFB2D724BE5655F8B0 /* PBXContainerItemProxy */; }; 16287F1A04D1FD826286E74E1DFCAA4F /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18064,30 +18155,12 @@ target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; targetProxy = 1AEF2AE5DA4BA57F6D0DD29D48C9BBB4 /* PBXContainerItemProxy */; }; - 1692FD33EA895769512CA8A3165A2395 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "rn-fetch-blob"; - target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; - targetProxy = 4E893028394A552BE41B6226518DE75A /* PBXContainerItemProxy */; - }; 16D9EDA83A5EAC350AAADE42DC833185 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "boost-for-react-native"; target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; targetProxy = E7713748923D5218C5086559D4632CF6 /* PBXContainerItemProxy */; }; - 174AD04B4E0CD582D35D2EF0798B1B42 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFileSystemInterface; - target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; - targetProxy = 03712FEDA4115C56DD8AD56ED7AB6180 /* PBXContainerItemProxy */; - }; - 17783559A31F87F4479184B4A4168D2B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-video"; - target = 3E5D106F8D3D591BD871408EEE0CC9FD /* react-native-video */; - targetProxy = E137612F47B7A22F0242E14FC690929F /* PBXContainerItemProxy */; - }; 17B0305E08C7EF9ED292AA9014450AF0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; @@ -18100,35 +18173,17 @@ target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; targetProxy = D4CAA9CA7C8E69C0DC481167E31BE48B /* PBXContainerItemProxy */; }; - 1873F9A3182D6554DFFE745033E7C540 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCoreDiagnostics; - target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; - targetProxy = E13B3730EAAD0D2C19BDCA36DD877D2F /* PBXContainerItemProxy */; - }; 18FD1501C797648CCBBE6F5A312BFE05 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = A2714C3F770F38D4074DD0F61DA9CF45 /* PBXContainerItemProxy */; }; - 1BA6E591AEB501BE69EB0A3FDB956DE5 /* PBXTargetDependency */ = { + 1930E635DFC182EF51B6593EE6BAEC00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseInstallations; - target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; - targetProxy = 2317A40B7C150D46FAA9E0C3DCDB9517 /* PBXContainerItemProxy */; - }; - 1E20404CE20D5DCD4DA3FB1B30AAB0E0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; - targetProxy = 1D878A6381A4238997D5B579163E3859 /* PBXContainerItemProxy */; - }; - 1F4516A9D7A8E409B3903973D4C387E8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNGestureHandler; - target = B9E8F4CA2A4A8599389FEB665A9B96FF /* RNGestureHandler */; - targetProxy = FA8F60EF2A2A0BC56FA8B5C042E073D1 /* PBXContainerItemProxy */; + name = "boost-for-react-native"; + target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; + targetProxy = 079575269BF1C202F91689D97EB0CB8C /* PBXContainerItemProxy */; }; 1F7F74A9D27293B2CD3A13D6A29E8DCF /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18136,6 +18191,18 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 65685AEAE3C8051C0DE124A6E5ACB197 /* PBXContainerItemProxy */; }; + 20710B5CCD95B8069610E5B3748F1AC9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RCTRequired; + target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; + targetProxy = EA5E346BB2401BCD34D7C25846427199 /* PBXContainerItemProxy */; + }; + 24009844375A5ECFB4324F4DDDF75D1E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNBootSplash; + target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; + targetProxy = DE9AC43A73900857969F0FAA687D7E50 /* PBXContainerItemProxy */; + }; 24490FC5D8FD6C825E67E30EBE7E91BD /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "react-native-background-timer"; @@ -18154,6 +18221,12 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = E3DCB3D8F0A533B7BB46EB61E99CA3EE /* PBXContainerItemProxy */; }; + 25FC803241FEDC235161DE6790A788BE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = glog; + target = D0EFEFB685D97280256C559792236873 /* glog */; + targetProxy = AD880691E573EBE9FCDF6F2A893C48CE /* PBXContainerItemProxy */; + }; 25FF94CB1F0E40824E1E6AF9F1F0421A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; @@ -18184,12 +18257,6 @@ target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; targetProxy = C920F0CCDE6B125D03C36F35E1B070B0 /* PBXContainerItemProxy */; }; - 2A18001733C6AD6117F4D146B79A10AB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBLazyVector; - target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; - targetProxy = 87E5C9F975AB763A5143A82246A5F346 /* PBXContainerItemProxy */; - }; 2AA010E3221FCB666E0D6123C66594C6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; @@ -18202,24 +18269,12 @@ target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; targetProxy = 9B2BFB5DEFEF28F0C14CFF2FE14B9160 /* PBXContainerItemProxy */; }; - 2C1A97D3A4CC1E3DE35DD275A536FA46 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = DEB197AF412E24C112F52BB60EB5FBEE /* PBXContainerItemProxy */; - }; 2C3AC2CEA8022D07044F7BA29590CA5A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 553C9E2156C22165A3D5F8E54F781E1E /* PBXContainerItemProxy */; }; - 2C418BBB78672CED740CF03399158E53 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = CC7579BE594E9C2055FF160E880AE8D1 /* PBXContainerItemProxy */; - }; 2D12D63E9EFDBBACEC8A2C6384D85FD7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTImage"; @@ -18238,30 +18293,36 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 4F47ACA22456ABDDC1033CCE85E508AC /* PBXContainerItemProxy */; }; + 2D47A30F992A44607813E85C3190665E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCameraInterface; + target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; + targetProxy = 1EB1D3D9073FEC354A84EF669DD545EB /* PBXContainerItemProxy */; + }; + 2E2CAF9A1787060693AC55D0A39EB282 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTBlob"; + target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; + targetProxy = 10B716BE952DF4ACDC263269B6902701 /* PBXContainerItemProxy */; + }; 2E5A8B52DC4EB0A2B4F078A2DEBADCF6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = CAAEE7A21CB80F6BF942643AE53B944E /* PBXContainerItemProxy */; }; + 2FDDEF79244DA0AAAAAC94C32C18A2F6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMConstantsInterface; + target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; + targetProxy = 94B3FE0841D5771605B743B9D9C34B0F /* PBXContainerItemProxy */; + }; 303A329EFE63F98C76E1F88C1909DC69 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = F56EBC18CB64EE0482444624DFEC06A2 /* PBXContainerItemProxy */; }; - 309417E9F9347ABC14B40C15F3AEB4AA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseInstanceID; - target = 9E25537BF40D1A3B30CF43FD3E6ACD94 /* FirebaseInstanceID */; - targetProxy = 4F542B7BEAB5005B3265BACDE9299050 /* PBXContainerItemProxy */; - }; - 317DD4D9AE77ADD460AEC78634964950 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFaceDetectorInterface; - target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; - targetProxy = 4E3B033EEA55F3FA32B3BC861CB9E268 /* PBXContainerItemProxy */; - }; 31D7553C59D34192E1999597259D474E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; @@ -18280,42 +18341,18 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 1C84D35F43BF9C71C2EEE3812CDC5C8D /* PBXContainerItemProxy */; }; - 33651E7FFBAAFFCBEB29CB56440F1BB6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = 60E25F7A2D036C215268B0133A2B25BC /* PBXContainerItemProxy */; - }; 33F5B6A58855F2016450517E03B74C4E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = SDWebImageWebPCoder; target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; targetProxy = D466E30F6A7C6BA97286EAE8358F3B63 /* PBXContainerItemProxy */; }; - 34642A4D33B4F7C615B5AD15AB446185 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXHaptics; - target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; - targetProxy = 3C7C3304584EEE799BC8B7B9303A3DEF /* PBXContainerItemProxy */; - }; - 3545FAB5D8AA67BEA9138119E34326D5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = nanopb; - target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; - targetProxy = CD7690E946928C6C0840D661BE36A3E0 /* PBXContainerItemProxy */; - }; 3574436076660220B89F7A70BC6E18FE /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "react-native-jitsi-meet"; target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; targetProxy = E8E93431DE5B9EDBC4D3B99AA008285F /* PBXContainerItemProxy */; }; - 358CFA2540A614D1A8FDC64A9533E56D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-CoreModules"; - target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; - targetProxy = D1B96D1A2A83B4518555350707DCC5E4 /* PBXContainerItemProxy */; - }; 35D5269AD31979BA1B767BBD3ED53885 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DoubleConversion; @@ -18328,35 +18365,53 @@ target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; targetProxy = 66CA566BF093B4FA85B1B5D4D953BBDA /* PBXContainerItemProxy */; }; - 36B73DF92DD1E06F068E3B539BB985C4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleUtilities; - target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; - targetProxy = 8B0CC042D2BB6CFDE6FBCECEEEF2823A /* PBXContainerItemProxy */; - }; 3739916787D47022FEBE0DBE7FDAC532 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RSKImageCropper; target = A30157FD17984D82FB7B26EE61267BE2 /* RSKImageCropper */; targetProxy = AEC8DF6D4B91F6B6CAA5DFE9C52B76F8 /* PBXContainerItemProxy */; }; + 38772D2A402A8554C0E8D50B8A2FF601 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNRootView; + target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; + targetProxy = 1681F444A2C51CE79C7CBC093E01B2B3 /* PBXContainerItemProxy */; + }; + 3AC6557BA6C9CA302B438E6966922CD7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseInstallations; + target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; + targetProxy = 8E2912F692FBDA68360FBA733E4BD06E /* PBXContainerItemProxy */; + }; 3BDD26DF1C76A2717767412BFEFD633E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = nanopb; target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; targetProxy = C6318E60C9E68C5F678F7ADDF357AED8 /* PBXContainerItemProxy */; }; + 3C020EF79E1484A006CA298B5C275B7B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXHaptics; + target = 409F3A0DB395F53FFB6AB30E5CD8ACD1 /* EXHaptics */; + targetProxy = 70FAF6A591BC2B09C3E9689203FA3205 /* PBXContainerItemProxy */; + }; 3CDE7CA6B5E8DC488FDB8E4812131AE4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMPermissionsInterface; target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; targetProxy = 61101C6B91C9ABBD9763AA3B33D38B1C /* PBXContainerItemProxy */; }; - 3D115EAA51E1D2B2C6503FE8F36DD0B5 /* PBXTargetDependency */ = { + 3CF89670A4DE4B1EDEF8DDD910015E85 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Folly; - target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; - targetProxy = FA0CF652A37D1E756453BEDCBDE97146 /* PBXContainerItemProxy */; + name = FirebaseInstanceID; + target = 9E25537BF40D1A3B30CF43FD3E6ACD94 /* FirebaseInstanceID */; + targetProxy = 4112A28F2A24F4716BA9B280425C93C1 /* PBXContainerItemProxy */; + }; + 3D72E16ED21BC3D52CD121881EC290E2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFileSystemInterface; + target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; + targetProxy = F5A9D915D6C8FD061CB4DB0667D354C8 /* PBXContainerItemProxy */; }; 3EC9C41467F00AB41E8790F4AABEC57D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18364,6 +18419,12 @@ target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; targetProxy = C5D50E7D903962E2C2E382B536062BDB /* PBXContainerItemProxy */; }; + 3FD1803971E707CBD0225A281FD40E4E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleAppMeasurement; + target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; + targetProxy = 590A41B12D8E65F97795BD838AF35F3E /* PBXContainerItemProxy */; + }; 405971DE6EC14F620353F9ED880AAC0B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "react-native-notifications"; @@ -18388,18 +18449,18 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = B40AA08577F30A00FD2A25A08341964A /* PBXContainerItemProxy */; }; + 44A3AE260F57AE982CA9137FF7E53209 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-Core"; + target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; + targetProxy = FD2DF1CD4E96EAAF9AA56671852F345E /* PBXContainerItemProxy */; + }; 4525B78AB9B05D2433479A9579FE333F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; targetProxy = 557407361285FA301951204E241F9CDB /* PBXContainerItemProxy */; }; - 458D52EB6EBCB5E4376C19AAECB54F2B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMImageLoaderInterface; - target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; - targetProxy = 4DB049AE68293453192E1CEC8BA2A43D /* PBXContainerItemProxy */; - }; 45DC7BE3A7DCBE4CCA2D7E955A28F755 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseInstanceID; @@ -18412,6 +18473,12 @@ target = EAB05A8BED2CAC923712E1C584AEB299 /* react-native-keyboard-tracking-view */; targetProxy = CE4ABC821438FE01620EA075157CDAD2 /* PBXContainerItemProxy */; }; + 47A3BA653CB3E560483CEB5784298DF8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Crashlytics; + target = C0E41540D6862472ED7F2FA11669BE1F /* Crashlytics */; + targetProxy = 646FD43A8C1D0BF61EA88C3762BB9EF7 /* PBXContainerItemProxy */; + }; 48076A1E02117E39C56513D1F085E022 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCoreDiagnosticsInterop; @@ -18448,11 +18515,11 @@ target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; targetProxy = 33023E1C4E6C76195C27F42572686F64 /* PBXContainerItemProxy */; }; - 4AFF7BFA25E79F077F340413E2B5F098 /* PBXTargetDependency */ = { + 4B332B52776123DEBAE7F5F56206983C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-keyboard-input"; - target = 7573B71C21FB5F78D28A1F4A184A6057 /* react-native-keyboard-input */; - targetProxy = 6ABF63A64703FB6B8EDE20D7D0C9D210 /* PBXContainerItemProxy */; + name = ReactNativeART; + target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; + targetProxy = 5723BD8BC9FC87052D11640A573EA5A8 /* PBXContainerItemProxy */; }; 4B7CF4BCE880915A07A1011FB01F4A55 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18460,12 +18527,42 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = D59A73644A58ECC04E1987DB3C8A1BC6 /* PBXContainerItemProxy */; }; + 4BA08B05E6FEF61848F16C4922FB3461 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTText"; + target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; + targetProxy = 7E6AE3A663516C885BEC6831BB93EA13 /* PBXContainerItemProxy */; + }; + 4BA5600396F4FFC1F7BE02C0672C728B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "rn-fetch-blob"; + target = 64F427905796B33B78A704063422979D /* rn-fetch-blob */; + targetProxy = 49132977A4DA3680C1269CBAB66DEFE5 /* PBXContainerItemProxy */; + }; + 4CC001915FDB3AFCA05B8B266E65B47A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCoreDiagnostics; + target = 620E05868772C10B4920DC7E324F2C87 /* FirebaseCoreDiagnostics */; + targetProxy = 0C1F6CC4A277B307210A9116412BCF88 /* PBXContainerItemProxy */; + }; 4CF06059EAB58EC36AFC1EB383725395 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 3E4CD36F9EC3B65498E3DB16276FF67A /* PBXContainerItemProxy */; }; + 4DA01EC7028D1057127D121972CA0F59 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = KeyCommands; + target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; + targetProxy = 91BEA0F05746420FDC0C50149AEC23BB /* PBXContainerItemProxy */; + }; + 4E3E946268023BE8AA406DC1422D57D0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Fabric; + target = ABB048B191245233986A7CD75FE412A5 /* Fabric */; + targetProxy = C88F1C5A940B23F4CC7C8E730D593988 /* PBXContainerItemProxy */; + }; 4E7A54EBDEED5E1498EB0028BFC71740 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; @@ -18484,18 +18581,6 @@ target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; targetProxy = 013C8C712E31279FB89EBADB1C1A4BC4 /* PBXContainerItemProxy */; }; - 50E7A41029F5C39EC16175B588B3BA73 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTVibration"; - target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; - targetProxy = 8031C67A3AC6BFD0567A0899EFCE3F81 /* PBXContainerItemProxy */; - }; - 5144DD74DA36D4CAE8C20DB6DA639D3C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMBarCodeScannerInterface; - target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; - targetProxy = F9E81C3B88924A5793FE10331731D898 /* PBXContainerItemProxy */; - }; 5195D675E015DEB9B99885FE0B15AAFF /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; @@ -18514,12 +18599,6 @@ target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; targetProxy = A8D228C6F74629133C291F6B44D7694D /* PBXContainerItemProxy */; }; - 536D0FB780DAA465D9077E89B3F45AE9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Yoga; - target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = 1630DDB4D96B5C56F8CC9F20A2C9566E /* PBXContainerItemProxy */; - }; 53B411A732F99F8D51E15B2CE451B1C2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; @@ -18532,18 +18611,18 @@ target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = 878C9C18439BE6DA5F4652C3D8CC13AA /* PBXContainerItemProxy */; }; + 54FB066B207A0E19C8B59746FE053B36 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNReanimated; + target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; + targetProxy = 14B666024CA64597B43CE38F6D7DDE09 /* PBXContainerItemProxy */; + }; 58EB016622ABE5A31A364D8F7F8E67EB /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMImageLoaderInterface; target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; targetProxy = 36984564ED77D3FA35292387EE92F363 /* PBXContainerItemProxy */; }; - 58F792844C39D4E5E0908C683C8C6F24 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = 8127C199B09E7344E16D06C2DAC0BFF3 /* PBXContainerItemProxy */; - }; 5924D847641E3D79FD6103D481F9E03B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Crashlytics; @@ -18556,23 +18635,17 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 592671C6C3F74111AF89BE688E45B730 /* PBXContainerItemProxy */; }; - 5A44BDF26DFA1CC311E09C0F0F46B1DD /* PBXTargetDependency */ = { + 594950D05FEB529075EEF0413E8D412E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMTaskManagerInterface; - target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; - targetProxy = 68882FE91E8F07801F9D4053F4DAB9BC /* PBXContainerItemProxy */; + name = "React-cxxreact"; + target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; + targetProxy = 30D7589FC8A6B5E61EACF670AD7DE482 /* PBXContainerItemProxy */; }; - 5D0AF523ED0CCD373DB583E1CE7B781A /* PBXTargetDependency */ = { + 59BDD4E987E20DFE99862EF7B8DDED15 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMSensorsInterface; - target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; - targetProxy = C1E040C72155E0BD72C0036B503132D1 /* PBXContainerItemProxy */; - }; - 612CA803AAA77E11E155A8D6921ECEC1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-webview"; - target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; - targetProxy = 36ED6E3FCEDC81325131F54C8CC01C7A /* PBXContainerItemProxy */; + name = RNDeviceInfo; + target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; + targetProxy = 24E824196205BBC567A456AAE112E95F /* PBXContainerItemProxy */; }; 6142C90C7067738802070DBD12BAA802 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18580,11 +18653,11 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 34B556DF76EB14506DA19B1213547A54 /* PBXContainerItemProxy */; }; - 626E1D2609C31B88EA3F10B5E0AA455C /* PBXTargetDependency */ = { + 61C9CA43B73A8823740491FA1A6C49BF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTSettings"; - target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; - targetProxy = 135111807A876FFA943605E046969218 /* PBXContainerItemProxy */; + name = UMImageLoaderInterface; + target = 97C4DE84FA3CC4EC06AA6D8C249949B7 /* UMImageLoaderInterface */; + targetProxy = 704327F4FCF1D8A6879F755448C69B26 /* PBXContainerItemProxy */; }; 6395E3254FF15C5334B441B2D03EFBCE /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18598,18 +18671,18 @@ target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; targetProxy = EEE33F6558983BA2DF282DB4EE7B037C /* PBXContainerItemProxy */; }; + 64060F33B5D34105944C73A876EA3528 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMAppLoader; + target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; + targetProxy = C6344B644685ABDE6E42DAE49708EB83 /* PBXContainerItemProxy */; + }; 6451B8973D840A0A374086225070784F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMPermissionsInterface; target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; targetProxy = 72AEF3DC8768694E58AE665D174CE14F /* PBXContainerItemProxy */; }; - 6500F8B0D5E132AB5654480EE6C3B61E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-appearance"; - target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; - targetProxy = 6464B6E6A508315ADBF0DD9910C87F42 /* PBXContainerItemProxy */; - }; 659CE20F5F8A4FDAFAC33456B26AD2CC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = SDWebImage; @@ -18646,11 +18719,11 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = CAD9ABFE1D8247DFCA7C5B5DC70C1C94 /* PBXContainerItemProxy */; }; - 689CCFB1904FF02710C7C21DE725B6D6 /* PBXTargetDependency */ = { + 68F224AFF674DD4299735389C9E0A3EA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = 77C0307677F96E7EAA19E44B4AC1C36F /* PBXContainerItemProxy */; + name = GoogleDataTransport; + target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; + targetProxy = 6D40AA86B2E2885EA4685884E1B247A7 /* PBXContainerItemProxy */; }; 68FB2B8F06277465B5375A45215CC9BB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18658,6 +18731,12 @@ target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; targetProxy = A7E5D397C11338DEED5E896EF959836C /* PBXContainerItemProxy */; }; + 6A72B467767A7B3986726F5B79772B36 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXPermissions; + target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; + targetProxy = 802EFC4137516115D17EF457E62E586F /* PBXContainerItemProxy */; + }; 6AC6BE62F45C5A349953D87D6DB3C545 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = PromisesObjC; @@ -18682,18 +18761,6 @@ target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; targetProxy = 832315DA7CF7E5E93C27A1A2AC92539D /* PBXContainerItemProxy */; }; - 6FC6F9E653A7BF07473A71113EA8A960 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = C46FA263189B0ECE07304B366E0F235D /* PBXContainerItemProxy */; - }; - 70179A857AD712438E3CF81888AEA033 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCameraInterface; - target = 0A915EE9D35CA5636731F8763E774951 /* UMCameraInterface */; - targetProxy = 304C800E427F82D90C34E1A52A661AFF /* PBXContainerItemProxy */; - }; 712C238E87A4A55B2C12C9C6B9788C48 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "rn-fetch-blob"; @@ -18724,29 +18791,17 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = FC21EA40C24BBDB20C2BE4568BC0017C /* PBXContainerItemProxy */; }; - 7468AD0E0A42DFA1B47EB7F70FBBE412 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsinspector"; - target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = 348632903E55247A44879A3CF2E78753 /* PBXContainerItemProxy */; - }; 74F58832B6EE859ACAC8329A38B23E43 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMFileSystemInterface; target = 2644525CCE081E967809A8163D893A93 /* UMFileSystemInterface */; targetProxy = 02884AC05BC4B650EBE6E310CA3916B7 /* PBXContainerItemProxy */; }; - 757C305AB757C6AA0ED36E1785120588 /* PBXTargetDependency */ = { + 7729F116E58CCBBF2BB25B8F358AD099 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RSKImageCropper; - target = A30157FD17984D82FB7B26EE61267BE2 /* RSKImageCropper */; - targetProxy = 547E94C3029432044C20F637A66A2197 /* PBXContainerItemProxy */; - }; - 75BED7C1EEBFD06FDE1970FAD39BDB15 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMReactNativeAdapter; - target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; - targetProxy = 315B8DAAF144D14207F6A71EA0436D24 /* PBXContainerItemProxy */; + name = "React-CoreModules"; + target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; + targetProxy = 182481D8C5E337F94FA9D3653C09772D /* PBXContainerItemProxy */; }; 777C61721A7AF46C5FA6FD015A73949C /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18766,11 +18821,11 @@ target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; targetProxy = 386C0EB352726BA92F7F015C2FB264EF /* PBXContainerItemProxy */; }; - 787D4534DC2E341B956843A78CF92FC4 /* PBXTargetDependency */ = { + 783C7A4BF6D4F52D6641CD06F0CF150D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = BC053D6398114D625FF0A3961F6EADDD /* PBXContainerItemProxy */; + name = RNFirebase; + target = A83ECDA5673771FA0BA282EBF729692B /* RNFirebase */; + targetProxy = 57EAE39E918ED16C96A59433DEDBE065 /* PBXContainerItemProxy */; }; 78C3E049647A441330DCCD8089408D2B /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18778,12 +18833,6 @@ target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; targetProxy = 8B7A5156DF566192088634AF35396110 /* PBXContainerItemProxy */; }; - 7A22522A5F615F1540FBAFAA7E34AA31 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXWebBrowser; - target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; - targetProxy = FCBB1B42DCB705A8679475F8526B16E1 /* PBXContainerItemProxy */; - }; 7AEC0D15EF11C1415A94D769184AD812 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseAnalytics; @@ -18808,23 +18857,17 @@ target = 6677891AC2F7AB93E04BFF30B293A46B /* RNBootSplash */; targetProxy = 3003CE0CFABA4E201818060DE26E35D6 /* PBXContainerItemProxy */; }; - 7B6D7F84C22DEC1FACCB3BCA71690B87 /* PBXTargetDependency */ = { + 7C7CD2936ED779A875F8429F4608CA8D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMReactNativeAdapter; + target = 897EF6A99176326E24F51E2F2103828C /* UMReactNativeAdapter */; + targetProxy = 5B947975706BA7F74B186549D744C4F8 /* PBXContainerItemProxy */; + }; + 7CDFAC77C9B2E078C4776F6D7DA9941C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMConstantsInterface; target = 9668C19AA6D8EA320F83875FA286855A /* UMConstantsInterface */; - targetProxy = 01E5B55FE466BBE88DFD1C484E69B112 /* PBXContainerItemProxy */; - }; - 7D23035792FB769C51803FF241D0F09C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = AA4771F2AE7A8217798AF679AFBD766C /* PBXContainerItemProxy */; - }; - 7D413AF540D8799F5DF9020563B3E9A6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "rn-extensions-share"; - target = A238B7CE3865946D1F214E1FE0023AAE /* rn-extensions-share */; - targetProxy = 983212EB1986FDC908F36896EC393334 /* PBXContainerItemProxy */; + targetProxy = 81B20C29D8DE0AECFEEA7BFC3548E125 /* PBXContainerItemProxy */; }; 7DCE32D473F4F7CC77F17725D7C937C1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18856,6 +18899,12 @@ target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; targetProxy = 729C920815C311E1D586861019E10612 /* PBXContainerItemProxy */; }; + 8358C68443853E1186176B2C08B5E629 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDWebImageWebPCoder; + target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; + targetProxy = BC406AA3DA99669F34D95FC9E8727CCE /* PBXContainerItemProxy */; + }; 8428EE18A7782DDB4023470F96AFF628 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; @@ -18868,11 +18917,11 @@ target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; targetProxy = B59CFF3791DD86ED3E948C16CAA52C6E /* PBXContainerItemProxy */; }; - 850FF5EDEA3F81E067E7F853E3650961 /* PBXTargetDependency */ = { + 85029F5EB910A907C275C2C712517B1B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXAV; - target = 13D7009C3736FB694854D88BAD4742B6 /* EXAV */; - targetProxy = 031C2EA37CDB75891AE2780B35BA5650 /* PBXContainerItemProxy */; + name = EXWebBrowser; + target = 9EB556EE511D43F3D5D7AAF51D8D0397 /* EXWebBrowser */; + targetProxy = C25EC963308C8AD23F2EAEE4190FBF7F /* PBXContainerItemProxy */; }; 8516F632E2ACF7BD9A95F0E2E17B1068 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18880,6 +18929,12 @@ target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; targetProxy = F11BC96676F5675A20A8EEF5971E90CC /* PBXContainerItemProxy */; }; + 851F4DDA4A5AFCBDC9FA448C61764BFD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMSensorsInterface; + target = 2038C6F97563AAD6162C284B3EDD5B3B /* UMSensorsInterface */; + targetProxy = 664EF26E9FE25B5113E4BA5E3DF75A7C /* PBXContainerItemProxy */; + }; 8641D87D24B973C225A85E11DDB59FAB /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseAnalytics; @@ -18922,23 +18977,23 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 8D04B36B23A984DDD45F643F1C461D61 /* PBXContainerItemProxy */; }; + 8BB1C29F712B8C5DF39DFB9B8140B7D8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBLazyVector; + target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; + targetProxy = 4F327B4F5B04100E23934DEAE1F1ADF9 /* PBXContainerItemProxy */; + }; 8C496C378AF5C2C390ABB9ACAD262DA8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = DE8F7B6EA7B1B017A43DEDEAA9020A16 /* PBXContainerItemProxy */; }; - 8CC2283200E2B004623DCAAC04233A65 /* PBXTargetDependency */ = { + 9045DE354437144318FB896AECE0B0D8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-cameraroll"; - target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; - targetProxy = BF84C143D6EBE43DF555D15B5EE3ACE0 /* PBXContainerItemProxy */; - }; - 908909CB5DDC589BCDCB56D567DA7CBF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNScreens; - target = 214E42634D1E187D876346D36184B655 /* RNScreens */; - targetProxy = 7EC255EF0588263AD48E5A9D82667AA3 /* PBXContainerItemProxy */; + name = "react-native-jitsi-meet"; + target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; + targetProxy = DDEC6C04AA59AC1B97F3C2BB108C4518 /* PBXContainerItemProxy */; }; 9296ACB615A242C598BD5B8651C60E56 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -18946,6 +19001,12 @@ target = 0745200E60DC80C9A0A48B7E6C1518D7 /* BugsnagReactNative */; targetProxy = D224D3EBA87061A216C2971F45AA7EBD /* PBXContainerItemProxy */; }; + 9329640E64A875BE2D6E333F11CB5D3E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNImageCropPicker; + target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; + targetProxy = 7C0EFBC3DA1A8FEEE7CCF50505737ECA /* PBXContainerItemProxy */; + }; 93758C4B0D549F9D1531B7A242E150A6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTBlob"; @@ -18976,18 +19037,18 @@ target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; targetProxy = 3A87B12C316BC1DE6A35D15571BD605F /* PBXContainerItemProxy */; }; + 95DD0C3CE9B6B3793053D081D757F749 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCoreDiagnosticsInterop; + target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; + targetProxy = 1973D2AB91A1181FC1F0BCCCE2121517 /* PBXContainerItemProxy */; + }; 96223EBAFF1A97E77F70B672C1DD807F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNFastImage; target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; targetProxy = F9D5F40BCFDFFDC398817338196D7F89 /* PBXContainerItemProxy */; }; - 964C3849C8DBC4ED45A3BB9A88418C85 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCore; - target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; - targetProxy = 960835EC514314A05F7943573E7BEFC2 /* PBXContainerItemProxy */; - }; 966429256B271DD0F30E2FA25D97B79D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTSettings"; @@ -19006,29 +19067,11 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = CB8A7E990CD7E856B8CADD28DC191F90 /* PBXContainerItemProxy */; }; - 986F42DE34BA225BF42B620D544222A7 /* PBXTargetDependency */ = { + 9944716ED82209B066C56C02B90FA94B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = B53D977A951AFC38B21751B706C1DF83 /* GoogleAppMeasurement */; - targetProxy = 226EAAFF3F88F12C59774DBDE73D5CC8 /* PBXContainerItemProxy */; - }; - 9877CEF55433A59057C097B100C2D3C4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNRootView; - target = 18B56DB36E1F066C927E49DBAE590128 /* RNRootView */; - targetProxy = 0276F213FBFC4511C62F0F477562E5B5 /* PBXContainerItemProxy */; - }; - 989DC387050206A45A03E445661A0613 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseCoreDiagnosticsInterop; - target = 5EB4B0B6DA6D5C0C3365733BEAA1C485 /* FirebaseCoreDiagnosticsInterop */; - targetProxy = 64503D6CF9D1179C0E7053FA07627612 /* PBXContainerItemProxy */; - }; - 98C01394D330BA20C681270791F31088 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 2F4213A00BA48DD07F2FD714B1A52A04 /* PBXContainerItemProxy */; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = D62C017428E93B98F00E023C43EC1EE8 /* PBXContainerItemProxy */; }; 994ADAEEEA94855F19638FBB96D0D629 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19036,18 +19079,24 @@ target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 201C6A1323C6921817533893269BBE9D /* PBXContainerItemProxy */; }; + 9A6F8FEA9E0AFC127DA9ABD5BF694B32 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNVectorIcons; + target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; + targetProxy = 1A6CA696B572F159D2EE37ABDDCD59DF /* PBXContainerItemProxy */; + }; + 9ACE2ADFDEBE68E4FCCA88976FB3CE7A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXFileSystem; + target = 868B90C74770285449C60DBA82181479 /* EXFileSystem */; + targetProxy = CB066F03A91730AB0A64FB00C885A955 /* PBXContainerItemProxy */; + }; 9AE14FA1F306013F286ABA20DD87B69C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; target = D0EFEFB685D97280256C559792236873 /* glog */; targetProxy = 69B6897572B545367799A5E51AFE075D /* PBXContainerItemProxy */; }; - 9B08B149DDEF02ED74A7AB6DA47D9BC0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; - targetProxy = 2DA8FD4B3FFE4F55DA70E52BDA699220 /* PBXContainerItemProxy */; - }; 9B848D16E111D4984B7C6DBC23CC1609 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTImage"; @@ -19060,17 +19109,11 @@ target = 9E25537BF40D1A3B30CF43FD3E6ACD94 /* FirebaseInstanceID */; targetProxy = C6C35C61164D4136265E61ECEB28D38A /* PBXContainerItemProxy */; }; - 9D4FCAAA47184E75D8730F74D6EC8B9F /* PBXTargetDependency */ = { + 9D5B0B4BAA18E7FC3EBA5F9532D330CF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNReanimated; - target = FF879E718031128A75E7DE54046E6219 /* RNReanimated */; - targetProxy = 05B411B5A4EB787DE1F9BC701E22AF0C /* PBXContainerItemProxy */; - }; - 9E3205112CFA1616D4220A5CF00E9F2C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Crashlytics; - target = C0E41540D6862472ED7F2FA11669BE1F /* Crashlytics */; - targetProxy = 7BF3F72957B341826FB5C431428C574A /* PBXContainerItemProxy */; + name = RCTTypeSafety; + target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; + targetProxy = 90490396F7C1E940A6B8AD3BB303EFAD /* PBXContainerItemProxy */; }; 9F4B49F01A597EA4F18DDCEBB1AF2B2E /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19078,6 +19121,12 @@ target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; targetProxy = DDC3038F75F2A9519773ABAA55479EB1 /* PBXContainerItemProxy */; }; + 9F4CFCA9BC82118FFBF78C0B72ACC94C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXLocalAuthentication; + target = 869CED37B4B77AAE35DF8B6E70788BBC /* EXLocalAuthentication */; + targetProxy = 2C18553D873449FD7C3173E75DF691C9 /* PBXContainerItemProxy */; + }; 9F65DE6BF013C35BE1F4C9234232B8C1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsiexecutor"; @@ -19090,11 +19139,17 @@ target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; targetProxy = 861146BBBDF6493BE7981140D74FCF30 /* PBXContainerItemProxy */; }; - A128AD67B77932462396757E58C2A777 /* PBXTargetDependency */ = { + A10F028786CFD8379F8F202CECC53828 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = SDWebImageWebPCoder; - target = 1953860EA9853AA2BC8022B242F08512 /* SDWebImageWebPCoder */; - targetProxy = CDBE94877C6D4B970862A0ADD531BFB6 /* PBXContainerItemProxy */; + name = UMFaceDetectorInterface; + target = 2AD4F40E67E1874A0816F6B34289EB41 /* UMFaceDetectorInterface */; + targetProxy = 5FF29D64C467F8686429C38FCC131E61 /* PBXContainerItemProxy */; + }; + A222A6167B100CD181C1B406EFD3EBC4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMTaskManagerInterface; + target = 50188AAB5FAECCA9583327DBA2B0AF2B /* UMTaskManagerInterface */; + targetProxy = 02525C2141BB9A4A01F1E0FA5C519889 /* PBXContainerItemProxy */; }; A23070E2AC8D432C5107A1256E0275F4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19102,24 +19157,18 @@ target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; targetProxy = 7A9D426F64FA97581C779ECB7FA9F4E1 /* PBXContainerItemProxy */; }; + A2C844D4DC58B9F97D4AC1FC800548F5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXConstants; + target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; + targetProxy = 3E67D0361165AA4BE02DBF5A3BD9A612 /* PBXContainerItemProxy */; + }; A3F4258D4EA27D6C88C15BCDA4CDEDA4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = DDFCA674E1FE8DC1DB86D5A0C0A1FB6A /* PBXContainerItemProxy */; }; - A4AF40C2B01E0F7A9132B61DB8C20A93 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTText"; - target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; - targetProxy = 757B77F0B498E69396E0C74846D8BF12 /* PBXContainerItemProxy */; - }; - A4FC321A64D36BEFC11D8A56667AFA80 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = JitsiMeetSDK; - target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; - targetProxy = EBF3E550B17EEEE25D8FAB7E96AD83A4 /* PBXContainerItemProxy */; - }; A5351590EF2D946171B0ECC1142DED94 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleDataTransportCCTSupport; @@ -19132,11 +19181,35 @@ target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; targetProxy = DF12C5D7BB68C2724D2F39A531F2A52A /* PBXContainerItemProxy */; }; - A661F2E103126B6C45FF002E351D940B /* PBXTargetDependency */ = { + A5566EF8FD918838B34FD9AB79AFC6DE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNDateTimePicker; - target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; - targetProxy = 10A2CA64564D9BE7D4B0CDC43B00130B /* PBXContainerItemProxy */; + name = "react-native-orientation-locker"; + target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; + targetProxy = 3D02FF26ACBED825F851904ABFF34A97 /* PBXContainerItemProxy */; + }; + A7DE55FF81A199753C33BB0FF60CF10B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RSKImageCropper; + target = A30157FD17984D82FB7B26EE61267BE2 /* RSKImageCropper */; + targetProxy = 27A25526B87AA7A8A1D634F37B5D6D92 /* PBXContainerItemProxy */; + }; + A8CC4594BD5ADDF40463AEC9B3C71A9E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMPermissionsInterface; + target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; + targetProxy = F7C50B898D179D7DFE35ECD39EC435E5 /* PBXContainerItemProxy */; + }; + A91F595EB8A2ACC3E2B368E8A47D6C67 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNAudio; + target = 449C1066B8C16DEDB966DCB632828E44 /* RNAudio */; + targetProxy = D34E826E72AAC6075591C569DE222FC3 /* PBXContainerItemProxy */; + }; + A9A8A542AD7A0B35E075C3E07D132720 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNScreens; + target = 214E42634D1E187D876346D36184B655 /* RNScreens */; + targetProxy = 05F3296DC7B71257BAB4E7EA20B49B5C /* PBXContainerItemProxy */; }; A9ED98A5552DD136966D3057C908CB45 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19144,6 +19217,12 @@ target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; targetProxy = F41400F9BEE622517440881C0BD1FD56 /* PBXContainerItemProxy */; }; + A9F1DDED590825469EA873A8E0694C8C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Firebase; + target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; + targetProxy = C9BE69FB541275F9EC7555AE25270410 /* PBXContainerItemProxy */; + }; AA221BE904C0C01C40321032D459D905 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RNScreens; @@ -19168,6 +19247,12 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = E8524B7128B54F7936616A550BEB7203 /* PBXContainerItemProxy */; }; + AB07C974BD70E3B197B7923D52C115EC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = JitsiMeetSDK; + target = 5B40FBDAD0AB75D17C4760F4054BFF71 /* JitsiMeetSDK */; + targetProxy = C833FE201BE782A869104308A103F20A /* PBXContainerItemProxy */; + }; ABFEEAB51B34B9279043783E67531D27 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = PromisesObjC; @@ -19186,6 +19271,12 @@ target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; targetProxy = 8F2CFEAA002887A4B7BB9024FB93494D /* PBXContainerItemProxy */; }; + AD3982566AD1002C35248C61015494E3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FBReactNativeSpec; + target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; + targetProxy = 26354B7FDB6A56A235F8E0C3C3F671DD /* PBXContainerItemProxy */; + }; AD8CC2C3AD641422282F5A8CD85BA0A7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = ReactCommon; @@ -19198,6 +19289,18 @@ target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = 5BE488B88EB1D7B8BFE4A63D278D4B18 /* PBXContainerItemProxy */; }; + B1795AB7FF93851119E344734596F8C8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsinspector"; + target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; + targetProxy = DA35838819017E5F13ACCA694A4E876D /* PBXContainerItemProxy */; + }; + B394EB23099E0BFD990E14927708C6CD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-notifications"; + target = CA400829100F0628EC209FBB08347D42 /* react-native-notifications */; + targetProxy = 679C5C413972E4C8C96CE0EDE50D9F82 /* PBXContainerItemProxy */; + }; B522C45997E90058E7BACAB65C97DDE3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Firebase; @@ -19210,29 +19313,41 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 81C7B5355049BCCDEE79296B202D9398 /* PBXContainerItemProxy */; }; + B640C702D7B3879174D76E36AAB68157 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Yoga; + target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; + targetProxy = 5DDF9A546640B539CD3819B6E7B9C201 /* PBXContainerItemProxy */; + }; + B66087BDCB72F4F675E8791E50F1C036 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-webview"; + target = 8D18C49071FC5370C25F5758A85BA5F6 /* react-native-webview */; + targetProxy = 571319F08F76CC193EBD50B6E656DB59 /* PBXContainerItemProxy */; + }; + B7141525630398CD759CF12D639C1C70 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTVibration"; + target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; + targetProxy = 2E86699B107E612C4D1692104AA502A8 /* PBXContainerItemProxy */; + }; B761561CFFC648F4B058F9B496469FD7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsinspector"; target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; targetProxy = 509A25B05A998CAB3B86A6C80C7B78C7 /* PBXContainerItemProxy */; }; - B76881465AAB1FC4A53E8C4B39473774 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMPermissionsInterface; - target = F7845084F0CF03F54107EEF7411760AD /* UMPermissionsInterface */; - targetProxy = 87902AC2034D180399F6F9616A496B19 /* PBXContainerItemProxy */; - }; B7CA987A1545E9E4D990C621C4B0D48F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = F9BC7D28AD87790D95A38C36E89FA025 /* PBXContainerItemProxy */; }; - B8973632A11D2D0239DF0B437FAD315C /* PBXTargetDependency */ = { + B835A9847018155857C6F7EEFA489993 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = ReactNativeART; - target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; - targetProxy = 714A07B70CFE0D342507C7441A7733AF /* PBXContainerItemProxy */; + name = "React-RCTImage"; + target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; + targetProxy = 431A487526903183015DF762ADFE9D43 /* PBXContainerItemProxy */; }; B89D2CB67178C93A2DFF80F628C7A710 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19258,6 +19373,18 @@ target = A83ECDA5673771FA0BA282EBF729692B /* RNFirebase */; targetProxy = 11D6BA14BE41FE745D7D6A4967351B99 /* PBXContainerItemProxy */; }; + B9799B6DA322AD50EC4B04325EA554D3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseAnalytics; + target = C49E7A4D59E5C8BE8DE9FB1EFB150185 /* FirebaseAnalytics */; + targetProxy = 065BFE3FBC016DE8B3F82D6E861F4425 /* PBXContainerItemProxy */; + }; + B9EA0838D098B37EEFD1960E17A898AA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleUtilities; + target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; + targetProxy = 13AC1F43D30AB26B7E2C8CF0E0C7AF85 /* PBXContainerItemProxy */; + }; BA241D5679EFEE167EE2F6CED9B54AF4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; @@ -19270,11 +19397,17 @@ target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; targetProxy = 95BD7607104E910918F88DD81F19B1C1 /* PBXContainerItemProxy */; }; - BB5EAD558A24F3E553AC3DD7A76EBD8F /* PBXTargetDependency */ = { + BB91FABE98864B5420AD34B5552AE752 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RCTRequired; - target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = A3DBDB7E61928C7A987A5757D63FC1D8 /* PBXContainerItemProxy */; + name = UMBarCodeScannerInterface; + target = 49821C2B9E764AEDF2B35DFE9AA7022F /* UMBarCodeScannerInterface */; + targetProxy = 98DC88E4F289D79EC718F92BFAEEA55A /* PBXContainerItemProxy */; + }; + BC0C1D1BF373901A193B57FEB886C277 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-slider"; + target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; + targetProxy = B9FDCA5AC3313C8525A813F6509EA979 /* PBXContainerItemProxy */; }; BC14137DC7B24901959AF5A38B67F823 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19318,24 +19451,36 @@ target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; targetProxy = 2284921B4FC397971FFFACC555D01A18 /* PBXContainerItemProxy */; }; - BF7FBDC0A3668CD82C0A05E5C2764E74 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-keyboard-tracking-view"; - target = EAB05A8BED2CAC923712E1C584AEB299 /* react-native-keyboard-tracking-view */; - targetProxy = 998F35AD969AB327A363BDA289A1D1EE /* PBXContainerItemProxy */; - }; BF9BF0CDEA697B8AF2D71C6FF954AC77 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTRequired; target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; targetProxy = 2C95DFFCB2EC326C56D43774DED19805 /* PBXContainerItemProxy */; }; + BFE48FA185215467778A90B18D4BC4B4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Folly; + target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; + targetProxy = 2805E98090370AB565058323100E30E1 /* PBXContainerItemProxy */; + }; C0B06A5C5229F7876D8CF13D76EADE7F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTLinking"; target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; targetProxy = B10540874D34CE93E1E04DA052C09DD7 /* PBXContainerItemProxy */; }; + C0CC47BDC6FDD04B0015CBDFEF8AEA08 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SDWebImage; + target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; + targetProxy = B12303CADAB09821A27E506ABCC2BF15 /* PBXContainerItemProxy */; + }; + C0CD4B115AF32DE4F52266A949F58BC3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCore; + target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; + targetProxy = BE30554915EAC89D8ABF9586ADFB7195 /* PBXContainerItemProxy */; + }; C217101135EFE0403239B5B2FC6C3632 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = nanopb; @@ -19366,11 +19511,17 @@ target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; targetProxy = 25911D74E71C182E5A343DC800E7A898 /* PBXContainerItemProxy */; }; - C6D2AE4C0BCB8E296A6C162EB80EE98A /* PBXTargetDependency */ = { + C6C9BA57D6B9E5E63518B6DDBB178383 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsi"; + target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; + targetProxy = 241B0C0FBFB4AB65D5322D5FF2360773 /* PBXContainerItemProxy */; + }; + C6D033D4965A83E51682F8D176CBD190 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTLinking"; target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; - targetProxy = 90F7EC51D8E0445FEB8FEF6F191B8E01 /* PBXContainerItemProxy */; + targetProxy = A5C032CADFDD5FF9425906A35EEF7600 /* PBXContainerItemProxy */; }; C76A0EE6871933CE34033765BE030A22 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19378,11 +19529,11 @@ target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; targetProxy = 48FF23C1BE2FC883261B458A2FEFC1BB /* PBXContainerItemProxy */; }; - C7C8A2C66A7840277621D6BB076F7B8D /* PBXTargetDependency */ = { + C83870D84414B274428A901251F2A0CC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNDeviceInfo; - target = 807428FE76D80865C9F59F3502600E89 /* RNDeviceInfo */; - targetProxy = F78CA6764FF0A3E4A6A11A27010FB8AF /* PBXContainerItemProxy */; + name = "React-RCTSettings"; + target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; + targetProxy = 6B407D74ACD4C0726B90F63D35661B74 /* PBXContainerItemProxy */; }; C85153279823DD6D83526F6B511CE44D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19414,11 +19565,11 @@ target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; targetProxy = 455009ED9ED8F59E3D7880EA52A66B11 /* PBXContainerItemProxy */; }; - CB0644B1F52A5EFB2BA3841321410C79 /* PBXTargetDependency */ = { + CB112F564EA1F429184FE996AEDF2386 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransport; - target = 5C0371EE948D0357B8EE0E34ABB44BF0 /* GoogleDataTransport */; - targetProxy = FD2BBD7914DC0A39373ABFE08B456E66 /* PBXContainerItemProxy */; + name = "react-native-background-timer"; + target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; + targetProxy = 720CC6AB7ACA5F827E8E8393EBC84D85 /* PBXContainerItemProxy */; }; CB1231450678EB40FF6D52E17793B56F /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19432,11 +19583,11 @@ target = 4402AFF83DBDC4DD07E198685FDC2DF2 /* FirebaseCore */; targetProxy = F6A14184DE3C02C257A7298719E4FD9B /* PBXContainerItemProxy */; }; - CB8E9AD38BD843EEF58EC702EF7ED992 /* PBXTargetDependency */ = { + CBD2F9D3CBE2717E24E09A737DFE801C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXPermissions; - target = 0A72FB88825FDC7D301C9DD1F8F96824 /* EXPermissions */; - targetProxy = DB563667E5597F27C55793C16A9BC07F /* PBXContainerItemProxy */; + name = RNFastImage; + target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; + targetProxy = 3C6AAF9121D88F931A8C5859842DAD29 /* PBXContainerItemProxy */; }; CC1E39817A216780CA9BEFAD07BD06A7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19450,24 +19601,24 @@ target = 449C1066B8C16DEDB966DCB632828E44 /* RNAudio */; targetProxy = C10C10F78B02C8C76D9682A59B3593F3 /* PBXContainerItemProxy */; }; - CE067F0D5ECE4D9453192A0DFC613C06 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = KeyCommands; - target = 7F591BD8674041AAAA4F37DC699B5518 /* KeyCommands */; - targetProxy = 3771870BC3D85AF57CBBDD44F9990F27 /* PBXContainerItemProxy */; - }; - CF6D530D68FE14FA90C3808929AE97D0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTActionSheet"; - target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; - targetProxy = 311F21EA672234C162B1F34F1C02DF00 /* PBXContainerItemProxy */; - }; D0E424AA51C6766027686207E235EA45 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-RCTImage"; target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; targetProxy = CD13E8227960B07BA93BD3A6A40F0B23 /* PBXContainerItemProxy */; }; + D194470B7DAA44624DEA160F934FA0B4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ReactCommon; + target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; + targetProxy = 4AAD8356AB559C18D4616CBF8EDFF5C1 /* PBXContainerItemProxy */; + }; + D1AA7C4F247E7691115F4D8995DC5ABB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-cameraroll"; + target = BA3F5E5AA483B263B69601DE2FA269CB /* react-native-cameraroll */; + targetProxy = AF3BD2E560D9BCB5EB0470EC5E3F3D6A /* PBXContainerItemProxy */; + }; D1F1057A65FDD43412DCD824E1BE5E0A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; @@ -19486,11 +19637,17 @@ target = 90148E8FD1C445D7A019D504FA8CBC53 /* ReactNativeART */; targetProxy = 76EEA5F62CC441995D555175CAB0A477 /* PBXContainerItemProxy */; }; - D37014B2787F0459DA5F53ED4B361666 /* PBXTargetDependency */ = { + D3E5FE5F812BB250FC13AC7AF58B9A75 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-orientation-locker"; - target = 1092C13E1E1172209537C28D0C8D4D3C /* react-native-orientation-locker */; - targetProxy = 9389B24C6FEE926EB5868FF077EE995B /* PBXContainerItemProxy */; + name = "react-native-document-picker"; + target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; + targetProxy = 6D065445C5F828CD139CE00E33ABA0A9 /* PBXContainerItemProxy */; + }; + D453B131DE00E30C0C551DBA5EDC984B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = libwebp; + target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; + targetProxy = E9C75B361059AEFF9DABA06F2AB989EA /* PBXContainerItemProxy */; }; D4675DE12C9CE28E7BE2DF3CB5F65EE1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19498,12 +19655,6 @@ target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 0FBA34E2E29F880F6473E91F3C51B883 /* PBXContainerItemProxy */; }; - D489516279FB07C4E2BC2842037AFF6E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 9B9B97ED97C50B630A191963DB572D6F /* PBXContainerItemProxy */; - }; D49D843655AD1EC0C07874F136577A0E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RSKImageCropper; @@ -19516,11 +19667,17 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = E79050B7B79BB88D74178F90A19D9ECF /* PBXContainerItemProxy */; }; - D91D241099F18F0DE183906F1618C336 /* PBXTargetDependency */ = { + D6BDCC81ACFAFB3FA8FFFC2107431323 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNFastImage; - target = 0BB7745637E0758DEA373456197090C6 /* RNFastImage */; - targetProxy = DFB4A58260571AB91C9D0C4EB0E6A1B7 /* PBXContainerItemProxy */; + name = nanopb; + target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; + targetProxy = 443A841EF4596E3CCD4E5368DB1090E2 /* PBXContainerItemProxy */; + }; + D7BFCFCB56D34393D79178E24B3E5436 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCore; + target = DBCB1B4965863DDD3B9DED9A0918A526 /* UMCore */; + targetProxy = 803F096642966EB8F55A6272ACDE03AE /* PBXContainerItemProxy */; }; D9C70B462572E65C4929094AC7476233 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19546,11 +19703,11 @@ target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; targetProxy = ACE9683B43AB87C56DB560A905FE8BA5 /* PBXContainerItemProxy */; }; - DB9AB5B53B6CCCBE2FD776EE42ED950C /* PBXTargetDependency */ = { + DAE915E26056C93906E8A1B04F56AA0D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Firebase; - target = 072CEA044D2EF26F03496D5996BBF59F /* Firebase */; - targetProxy = EF12062ACBD3E6ED97BAD7CDB5D34D97 /* PBXContainerItemProxy */; + name = RNDateTimePicker; + target = D760AF58E12ABBB51F84160FB02B5F39 /* RNDateTimePicker */; + targetProxy = 965AB3845BF6C37B9A2E428591D1EE93 /* PBXContainerItemProxy */; }; DC365AF9AFF0EED32BE0CC92E8B78C42 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19558,54 +19715,42 @@ target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; targetProxy = 7DFBE4295EB2D14288E99BCD22619405 /* PBXContainerItemProxy */; }; - DC39358A91C1E5589850A1C9E8124DCC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SDWebImage; - target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = CEB3DDBD3B319EA1083FDAFB813591F1 /* PBXContainerItemProxy */; - }; - DC5A037D0E60F5F2CA80B060D54A8705 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNFirebase; - target = A83ECDA5673771FA0BA282EBF729692B /* RNFirebase */; - targetProxy = 8C57ADD29742FFBBDEBD6F8118B4A203 /* PBXContainerItemProxy */; - }; DC7881C26EA469ACDBBF85DA037F15E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = SDWebImage; target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; targetProxy = 59A6F7E541C545C99CA82678B8F26212 /* PBXContainerItemProxy */; }; + DCD5A2D3D1B59A3B78D92E40EED0B557 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 1BEE828C124E6416179B904A9F66D794 /* React */; + targetProxy = 81B4FA49E72F5B07122014F9148A9903 /* PBXContainerItemProxy */; + }; DD42749A0327BDFDE691A4721767F0F3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 6423924A022902547DBE5FC8EF93BD4D /* PBXContainerItemProxy */; }; + DE235AFB04088ACE99A5172675F402C2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-jsiexecutor"; + target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; + targetProxy = EF1EEBC25EEF9243F1A601C1A96218C2 /* PBXContainerItemProxy */; + }; DE716E784C9BE88B8C21494C695AA318 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-jsi"; target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 048AC4BFC3DEB50A8114C3826879AEB7 /* PBXContainerItemProxy */; }; - DEC0977AE44E646B7EEDABCCE480F726 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 8334C8FC8577858592BDC0786942DFB0 /* PBXContainerItemProxy */; - }; DF072AA82B95EF5DD4445A2E27AEC5E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = 21B7FFD1A14C9DCA797642821E09A7B1 /* PBXContainerItemProxy */; }; - DFDA8A3D17D0FFB16B98A766B6955171 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-document-picker"; - target = D11E74324175FE5B0E78DB046527F233 /* react-native-document-picker */; - targetProxy = 30EAEAFC419AE08F635DB2086318C0A9 /* PBXContainerItemProxy */; - }; DFE54EFB8E8ADDF029A3564B9073A3BC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; @@ -19618,12 +19763,6 @@ target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; targetProxy = DFEA33431E17294C1ED8951538F844D0 /* PBXContainerItemProxy */; }; - E3159D5FC343C22520FF2B4B0459E8CF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXImageLoader; - target = 263266A9E29FFF0E9C8CA0E4582BFCF4 /* EXImageLoader */; - targetProxy = 5DF272D084A199962A43D10C0BC00758 /* PBXContainerItemProxy */; - }; E33A6948181332F36C1B948AB5E3D4F1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RCTTypeSafety; @@ -19642,6 +19781,12 @@ target = 8D7F5D5DD528D21A72DC87ADA5B12E2D /* GoogleUtilities */; targetProxy = F142B4DF83D0AEA677D3ABE7D7E5BA0C /* PBXContainerItemProxy */; }; + E50013E07D1B758D4DB54CF1D7D8E057 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTAnimation"; + target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; + targetProxy = E3055A8F01220FCFBA2C6E15CEAAA9B4 /* PBXContainerItemProxy */; + }; E528B28EAE6AC6A2D51788DB2F13BAE0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = SDWebImageWebPCoder; @@ -19654,29 +19799,29 @@ target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; targetProxy = 418E15E77F7E215AA9622C72DC826707 /* PBXContainerItemProxy */; }; + E72253786BAC9675B9B901505BA7E0BD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "React-RCTNetwork"; + target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; + targetProxy = 449A7602971F7F4AD6E8484B88342D55 /* PBXContainerItemProxy */; + }; E81B9D94D6D9DDB9A947C7FB8749DA9C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 4FF10556B9B41D07EFAC6AA420559421 /* PBXContainerItemProxy */; }; - E92925DEC04B767D20A215A0E7E6D2C9 /* PBXTargetDependency */ = { + E866327FFC1162431884B82F14B5F964 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNLocalize; - target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; - targetProxy = 2D1AA35A20094E6443447E8F9F65C5B9 /* PBXContainerItemProxy */; + name = "react-native-appearance"; + target = 3FF2E78BB54ED67CA7FAD8DA2590DBEE /* react-native-appearance */; + targetProxy = 7ED2152CB8618F6EE3F905D50E567C27 /* PBXContainerItemProxy */; }; - EA8631E45B89A3F6F465E6945F642A95 /* PBXTargetDependency */ = { + EBF039172671835D2E43AF4392FC2FF2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNUserDefaults; - target = 4D67CFB913D9C3BE37252D50364CD990 /* RNUserDefaults */; - targetProxy = F1FAA6FE9B6B2A3E535F20FB1BB8CC36 /* PBXContainerItemProxy */; - }; - EA9D7A3880E7F0B31930D0914654FE19 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXConstants; - target = 6C1893932A69822CBE3502F2E0BCFB6D /* EXConstants */; - targetProxy = 41C5364D3A2E064BF82FBB179744B077 /* PBXContainerItemProxy */; + name = "react-native-keyboard-input"; + target = 7573B71C21FB5F78D28A1F4A184A6057 /* react-native-keyboard-input */; + targetProxy = 010F36F2347E5BDCBC4E6E49710D2278 /* PBXContainerItemProxy */; }; EBF53D7C37C35CC2489D0C6A47D3E9AA /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19684,54 +19829,60 @@ target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; targetProxy = 4E1A7F06A2ADFDF1CD0745680382112F /* PBXContainerItemProxy */; }; + EC1397A3235EF60E03D6BA6283DF2C57 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNLocalize; + target = B51433D546A38C51AA781F192E8836F8 /* RNLocalize */; + targetProxy = 99F60170E12FF8170CD126673B97BE8D /* PBXContainerItemProxy */; + }; EC566DF9BFE7FD959CB2819808630F73 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Folly; target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; targetProxy = 973587FD3243D488ACC2A2CBA4B833BD /* PBXContainerItemProxy */; }; - ED05DB49106E17DAAA5813590CD58153 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNImageCropPicker; - target = 0D82774D2A533D3FFAE27CAB4A6E9CB2 /* RNImageCropPicker */; - targetProxy = CE84263865CA613B1FA36C369A82E708 /* PBXContainerItemProxy */; - }; EDE4622A231D7E4C637C51459B075FDC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = F1D31400DE78E76FE461920F078645F1 /* PBXContainerItemProxy */; }; + EE13F855FFD4A175849E154EF38C3099 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = PromisesObjC; + target = 2BBF7206D7FAC92C82A042A99C4A98F8 /* PromisesObjC */; + targetProxy = 4F9FAD4B19C28355027266679630E3C7 /* PBXContainerItemProxy */; + }; EE1CC51893DCF92DD4E8E26E4F3526E4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "React-Core"; target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; targetProxy = 8110DAB12235E146C76645C74A703974 /* PBXContainerItemProxy */; }; - EE42278421F6B4DEABF1042392C5C4FD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-slider"; - target = A4EF87F5681665EAE943D9B06BBB17DF /* react-native-slider */; - targetProxy = 466357888C957D35FD3CC1086163251D /* PBXContainerItemProxy */; - }; - EE4DFA6B932AE57EA62D027AE8446ED4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNVectorIcons; - target = 96150F524B245896B800F84F369A9A5A /* RNVectorIcons */; - targetProxy = BEE30E3C2F5A9552CB3F23E358CFDFDD /* PBXContainerItemProxy */; - }; EE5C681F19C2BD960C9FE0FB6B28DC90 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseInstallations; target = 87803597EB3F20FC46472B85392EC4FD /* FirebaseInstallations */; targetProxy = 6BA468018F66C1D47DAEA3ECC88158D1 /* PBXContainerItemProxy */; }; + EFA20BBD349FFA6BBE19093E83F0072D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNUserDefaults; + target = 4D67CFB913D9C3BE37252D50364CD990 /* RNUserDefaults */; + targetProxy = 03F91BE40E4BA9EF5AEC14AE2493E3C6 /* PBXContainerItemProxy */; + }; EFD075E2561A9315EB30A1E324BFDC10 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FBLazyVector; target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; targetProxy = C1BB201CBC816A7930A924C64808A024 /* PBXContainerItemProxy */; }; + F0B9FD087F82784B9A70207837E386AF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DoubleConversion; + target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; + targetProxy = 857F47971C60AB633BBCA1479AD1A1F9 /* PBXContainerItemProxy */; + }; F13EA7DAE7A846C572332EFD93580166 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; @@ -19756,12 +19907,6 @@ target = 1BEE828C124E6416179B904A9F66D794 /* React */; targetProxy = C737ED823B86A2EB5AE9F688BEE3FDCE /* PBXContainerItemProxy */; }; - F282714507FDC5DC5D886221FF6CDD8C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = B01B77BFA13926F2953C36CCF9208B26 /* PBXContainerItemProxy */; - }; F40AEEAA637FAD62AA68E398038D3782 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleDataTransport; @@ -19810,17 +19955,11 @@ target = 47D2E85A78C25869BB13521D8561A638 /* libwebp */; targetProxy = DFCEEA3FA40436CB4AA040326D6F8E6D /* PBXContainerItemProxy */; }; - F8DB381B1BEF02B5B386964E16154261 /* PBXTargetDependency */ = { + F968CC5BFA92B79143588DA28EB600AF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleDataTransportCCTSupport; - target = F4F25FCAC51B51FD5F986EB939BF1F87 /* GoogleDataTransportCCTSupport */; - targetProxy = 87B1438B0FFEB51C8DCBA37F36B873A8 /* PBXContainerItemProxy */; - }; - F9C9E5D912A8B2DEA72F1282DFDD29BC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-background-timer"; - target = 6514D69CB93B41626AE1A05581F97B07 /* react-native-background-timer */; - targetProxy = 5970E9A1ABF2A305A073A3AB53C00BB1 /* PBXContainerItemProxy */; + name = "React-RCTActionSheet"; + target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; + targetProxy = 1B0B63EFB5EDF8CAF404F6A7CA74FBED /* PBXContainerItemProxy */; }; FAC411C23D2CEEC99A061A1A4B22D07D /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19834,11 +19973,11 @@ target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; targetProxy = 6D3BF89DF4987F4669AD095F4AB5877B /* PBXContainerItemProxy */; }; - FBFE8AB9FADCE03960EAF28AFD0C539E /* PBXTargetDependency */ = { + FC436C7B528B08F9DC831249F794DB6E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMAppLoader; - target = C452F579644C83E8D8E36EC24A9BBD46 /* UMAppLoader */; - targetProxy = 28BC4B6D182A1D27AFA08B556E747E67 /* PBXContainerItemProxy */; + name = "react-native-video"; + target = 3E5D106F8D3D591BD871408EEE0CC9FD /* react-native-video */; + targetProxy = A5E93EA8063D382962CD625FB871E75A /* PBXContainerItemProxy */; }; FD7FFC18DDE8D049C817E5F819EF924E /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -19846,18 +19985,6 @@ target = D2B5E7DCCBBFB32341D857D01211A1A3 /* nanopb */; targetProxy = C6B6F02506FCA9766276DEF5FAE04229 /* PBXContainerItemProxy */; }; - FD8A7904ABE8AF27D125769546B5E51E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Fabric; - target = ABB048B191245233986A7CD75FE412A5 /* Fabric */; - targetProxy = 0D3E742EA786DBC3E2BF9E2225E7DCD8 /* PBXContainerItemProxy */; - }; - FEA092F97B36E684DF136833224EB093 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-jitsi-meet"; - target = D39AB631E8050865DE01F6D5678797D2 /* react-native-jitsi-meet */; - targetProxy = 009B366E5E2A3C5851414797EEDD5C92 /* PBXContainerItemProxy */; - }; FEE4267D512CD5EAA1C9FF46F88ED492 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DoubleConversion; @@ -19869,7 +19996,7 @@ /* Begin XCBuildConfiguration section */ 00718DA2EF2C79DDC75597E5CCB5F43B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1DF544D039334F425AEA394890EE3BA1 /* react-native-document-picker.xcconfig */; + baseConfigurationReference = 32AAFADD3DD8438F7CBA97F98D670481 /* react-native-document-picker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19945,7 +20072,7 @@ }; 024274BA705D432C4A7E56971B76D5C2 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 687B021CBCA2D118D572F00E2FD2B142 /* KeyCommands.xcconfig */; + baseConfigurationReference = 6B6F4AC2C5C639CD50BF159830CC8CFA /* KeyCommands.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -19971,7 +20098,7 @@ }; 02590A2E54E292E4B163CC19E59F2F78 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DDF2C579C0326557934351E533B57C1F /* react-native-appearance.xcconfig */; + baseConfigurationReference = 80D020E86A3DB547A971CA1B20F7E6C7 /* react-native-appearance.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20026,7 +20153,7 @@ }; 06BC0A8E01BE9D8AA3FB15051DD205D6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1F450F79CBFC71A87ABA69D18AF64C1F /* React.xcconfig */; + baseConfigurationReference = 93FAB1745DC86F18A7B2CF702DE72503 /* React.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -20040,7 +20167,7 @@ }; 07503BE4DBA728321A66841DFD7B509C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DDF2C579C0326557934351E533B57C1F /* react-native-appearance.xcconfig */; + baseConfigurationReference = 80D020E86A3DB547A971CA1B20F7E6C7 /* react-native-appearance.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20066,7 +20193,7 @@ }; 0A5C3272020B713D7C5769D443274095 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1BE77D3218DD612963BA380A7A6E2414 /* React-RCTNetwork.xcconfig */; + baseConfigurationReference = F2A0626FD5854C9AB571E75A278FE003 /* React-RCTNetwork.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20092,7 +20219,7 @@ }; 0B4C266D7201BE42578B00130B939087 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1DF544D039334F425AEA394890EE3BA1 /* react-native-document-picker.xcconfig */; + baseConfigurationReference = 32AAFADD3DD8438F7CBA97F98D670481 /* react-native-document-picker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20168,7 +20295,7 @@ }; 0EC3A23A31F25E370EFBA1F1586B2011 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1C4CF928A9E88CA633B6F95DA4751A46 /* FBLazyVector.xcconfig */; + baseConfigurationReference = 390A59F129F705D241B9686AA66E2D7A /* FBLazyVector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -20207,7 +20334,7 @@ }; 0FFE4A7E6463DF8D2BF607C001EF26C2 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7B2D2E87A0821787B0CB305C2F199B2B /* react-native-keyboard-tracking-view.xcconfig */; + baseConfigurationReference = 5E6658E4489794B6871AB115234109D0 /* react-native-keyboard-tracking-view.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20257,7 +20384,7 @@ }; 12FAC84E34D27F50918DC68E37434C4A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1849DA14CADFB7DF37364ACEFA91166A /* EXWebBrowser.xcconfig */; + baseConfigurationReference = E866CECE6F9A3676B266DA1070DF8A37 /* EXWebBrowser.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -20347,7 +20474,7 @@ }; 17ADCC17D6FBAC88D3849258BEE3E4D7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 73D013982DDC79D1EF058C324B1AD36F /* RNDateTimePicker.xcconfig */; + baseConfigurationReference = ED2B0EF803D68091C2A97BE33361B636 /* RNDateTimePicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20437,7 +20564,7 @@ }; 1A149D092E2CFC6DDCD8E48A2155676C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C0D61DC80278A4BBC9BA7185A8F3A0B1 /* React-cxxreact.xcconfig */; + baseConfigurationReference = FB30A0C1F84B37E7A63836AD635BF79E /* React-cxxreact.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20463,7 +20590,7 @@ }; 1ADC1178A3B04EF7FE98ACB41A34CD34 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DF9C1A1209FD3E5DBEEE7B801F7CEB32 /* EXPermissions.xcconfig */; + baseConfigurationReference = 08D8CE592E3E6D38A9ADF97B640DA0CB /* EXPermissions.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -20512,9 +20639,33 @@ }; name = Debug; }; + 1BA15885B9AD13582E65019E666D898E /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = A9916A69A97251C8AA9535F6F70AE9DB /* Pods-RocketChatRN.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + APPLICATION_EXTENSION_API_ONLY = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + MACH_O_TYPE = staticlib; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 1BBF1FC67203BE8FFEF02CD562A0ABB0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2D70BAEE4F12958BC061A7CFE3DEF4B7 /* React-RCTSettings.xcconfig */; + baseConfigurationReference = 21AC208C4538DED1D54AB4C102653BF0 /* React-RCTSettings.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20554,7 +20705,7 @@ }; 21B20C7A656B8B26606666450F233202 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3F375F20E60CF86FBB63E7C28CBE4208 /* React-jsiexecutor.xcconfig */; + baseConfigurationReference = D65ED7023ED69D130708EF8FEC3925FA /* React-jsiexecutor.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20579,7 +20730,7 @@ }; 23C22B2E5EC2C98879114D860E72E83B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9F0D389ACAFD22E926E943101A0A259D /* UMAppLoader.xcconfig */; + baseConfigurationReference = 564AC08059D7AA58D39DD0DF9EAAB6A9 /* UMAppLoader.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -20606,7 +20757,7 @@ }; 23C6C4DC319C746B0FB2B500A5F11865 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E49CFE480C3D29E7EC345A83CE1E2893 /* react-native-notifications.xcconfig */; + baseConfigurationReference = 34D25768B4EDCBE8AD32CF4F46796704 /* react-native-notifications.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20646,7 +20797,7 @@ }; 244CAA427CEE1963C66E8F160A2D7C44 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2D70BAEE4F12958BC061A7CFE3DEF4B7 /* React-RCTSettings.xcconfig */; + baseConfigurationReference = 21AC208C4538DED1D54AB4C102653BF0 /* React-RCTSettings.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20672,7 +20823,7 @@ }; 24E956857A25D64EBE7A89C2B15C277C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9F0D389ACAFD22E926E943101A0A259D /* UMAppLoader.xcconfig */; + baseConfigurationReference = 564AC08059D7AA58D39DD0DF9EAAB6A9 /* UMAppLoader.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -20698,7 +20849,7 @@ }; 26551564308AC8D658D695032AA5AE58 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 798300D04979555E318EDE2C3006F241 /* FBReactNativeSpec.xcconfig */; + baseConfigurationReference = B70F154A574728B8D4C1C0B9438FF4B3 /* FBReactNativeSpec.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20724,7 +20875,7 @@ }; 269C7EC08CD9FB35EE6AF46DB2BAF924 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F344C77888A1036128EB010D9ED1C690 /* EXAV.xcconfig */; + baseConfigurationReference = 2CB56EB5913B806DD6E096F58F4D9FF3 /* EXAV.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -20751,7 +20902,7 @@ }; 26AE1A694F9D65DF074CD64665B2C058 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A38AAD5AE0705D48A71F941F0EDD7695 /* UMCore.xcconfig */; + baseConfigurationReference = 06B0D6A47C619AD6632A50690B027C2D /* UMCore.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -20778,7 +20929,7 @@ }; 2703B7272D54F6883D4FB415677DB5D4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 09CFE0206070257FA56A9423FF01E393 /* React-RCTBlob.xcconfig */; + baseConfigurationReference = 34390AC1C4436AA28EA4274C83B23674 /* React-RCTBlob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20803,7 +20954,7 @@ }; 27BCC9CA860F306C015533FEE3107CCD /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7B9A20A94248F8D409B2B84F98A5721C /* RNRootView.xcconfig */; + baseConfigurationReference = 17D5A84F8747106DDCA033C31C5D274F /* RNRootView.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20829,7 +20980,7 @@ }; 28D56E215E53845903676C02E9E657A4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1F450F79CBFC71A87ABA69D18AF64C1F /* React.xcconfig */; + baseConfigurationReference = 93FAB1745DC86F18A7B2CF702DE72503 /* React.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -20844,7 +20995,7 @@ }; 2953790EFB1BD8A9E78C65D8FCEEACFB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2572341F607B3FA647DECA06B7E4D625 /* EXConstants.xcconfig */; + baseConfigurationReference = D5CC0DC1CF5E80A3E4FAD91A65678C96 /* EXConstants.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -20871,7 +21022,7 @@ }; 2A5E7696D7993201DAD047C1A0D2C4E3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B7AF00286728B672293B3F31A09F7860 /* RNBootSplash.xcconfig */; + baseConfigurationReference = 9838DD02C421D6A67A4DABE8E5BBD4DE /* RNBootSplash.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20896,7 +21047,7 @@ }; 2AF938D92353FFD31BE3DB678B15377C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CD3B1E4836C2B5451865F6CBA58759A1 /* react-native-cameraroll.xcconfig */; + baseConfigurationReference = DED3C306036B86D6BAD40A6FC8471859 /* react-native-cameraroll.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20921,7 +21072,7 @@ }; 2B272C4CE6BEAA0B9E0AA72279542905 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FCEC38F8421233C14D48F446A407222B /* React-Core.xcconfig */; + baseConfigurationReference = C209D034DDFC1F6D088783677CACB505 /* React-Core.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -20946,7 +21097,7 @@ }; 2BE44409CF53F7716718039FCCF13617 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D48CC1A2F4DBE99ED25B6AB7A23A80BD /* react-native-webview.xcconfig */; + baseConfigurationReference = 65CB6926EE4164B88B485A0EB2C889B8 /* react-native-webview.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21012,7 +21163,7 @@ }; 324577209359925CC1ED71DD383014A2 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E6B899F02890ECA8F69E16739FC723D9 /* UMFileSystemInterface.xcconfig */; + baseConfigurationReference = 9501CFD3C936BC73BFADBCEFE40AEB0A /* UMFileSystemInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -21042,7 +21193,7 @@ }; 335ABEB200F4DFB0F95C1E68123C8F5E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A38AAD5AE0705D48A71F941F0EDD7695 /* UMCore.xcconfig */; + baseConfigurationReference = 06B0D6A47C619AD6632A50690B027C2D /* UMCore.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -21082,7 +21233,7 @@ }; 34F3BB3A9EA6790A534F9E5EF2254D12 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FA041417DFAF6513DCFA0ABCFD7F2129 /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = 5EEFF7043838ECFBC2155B5C5B83F7CD /* RNImageCropPicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21107,7 +21258,7 @@ }; 371989D182BF95DFA0EC5239D0C21ADD /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1262C362E414E45C0BF6B4B8BAF38B88 /* RNReanimated.xcconfig */; + baseConfigurationReference = C0515A170A399D7811374BCD654EC21A /* RNReanimated.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21132,7 +21283,7 @@ }; 37E163221C1422D15853A75EC40F1ADE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 93F179CAC37400A573A57D7C580C75D5 /* RNLocalize.xcconfig */; + baseConfigurationReference = 0F218E27E1059AFDA5D2F6B49784ED27 /* RNLocalize.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21183,7 +21334,7 @@ }; 3C6DE2ACA62B044A7E5C8C6941B307DE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DF9C1A1209FD3E5DBEEE7B801F7CEB32 /* EXPermissions.xcconfig */; + baseConfigurationReference = 08D8CE592E3E6D38A9ADF97B640DA0CB /* EXPermissions.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -21210,7 +21361,7 @@ }; 412737804873ADD8C2E2F340ABFF6718 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 96B4AB7518B0AEE8B1100BFE3AEAF45A /* React-RCTAnimation.xcconfig */; + baseConfigurationReference = 2BEA966F870B42067C20AF302F59BCAD /* React-RCTAnimation.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21235,7 +21386,7 @@ }; 42944898C766E1F58CF1D114D908DF7F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FA041417DFAF6513DCFA0ABCFD7F2129 /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = 5EEFF7043838ECFBC2155B5C5B83F7CD /* RNImageCropPicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21253,7 +21404,7 @@ }; 455A8CE12E5E915C83AB73A3C62F3F68 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E49CFE480C3D29E7EC345A83CE1E2893 /* react-native-notifications.xcconfig */; + baseConfigurationReference = 34D25768B4EDCBE8AD32CF4F46796704 /* react-native-notifications.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21304,7 +21455,7 @@ }; 499E8F90EC6439418D63F128B5D6DCD1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = ACDC8A7FA99E4FF01F265E0D69134BB5 /* ReactCommon.xcconfig */; + baseConfigurationReference = 759D90D1019D505AD70BE871F8950D2B /* ReactCommon.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21330,7 +21481,7 @@ }; 4C88F3DB03A9D5244D6399F2531E7EFA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B44622DFEDC8C1E0872F5F31C06B431D /* RNFirebase.xcconfig */; + baseConfigurationReference = 43815A8525F773276C57D3783821EC68 /* RNFirebase.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21355,7 +21506,7 @@ }; 5021E076026902F8042B602ED2AB1FDD /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 73D013982DDC79D1EF058C324B1AD36F /* RNDateTimePicker.xcconfig */; + baseConfigurationReference = ED2B0EF803D68091C2A97BE33361B636 /* RNDateTimePicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21403,7 +21554,7 @@ }; 521E903B734D3E2B9720D043ACC4F421 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 634532311DB6CBCEABDB8837E125E209 /* RNAudio.xcconfig */; + baseConfigurationReference = 569B6F1D87183821E96F79C08CFAA86F /* RNAudio.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21428,7 +21579,7 @@ }; 531DF162FE7827B65B86953D3626930F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FA041417DFAF6513DCFA0ABCFD7F2129 /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = 5EEFF7043838ECFBC2155B5C5B83F7CD /* RNImageCropPicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21470,7 +21621,7 @@ }; 5869D54D3A851396E2E6C856D06E7E60 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 211F772B93EC2A85C2C1F1AD2357F7B8 /* RNGestureHandler.xcconfig */; + baseConfigurationReference = 48AAA8346CB5AF2DFBF2FAE3648FBE8B /* RNGestureHandler.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21510,7 +21661,7 @@ }; 596CD7959D539F7F649544D11CD4713F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D7F6B806AC4CE8AFBE23CCE6D12C15B2 /* React-RCTActionSheet.xcconfig */; + baseConfigurationReference = 6FE23694EA167907586135DDAE4DE7EC /* React-RCTActionSheet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21536,7 +21687,7 @@ }; 5A8324EA210DF55F87E0DF91047C3A4A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FA041417DFAF6513DCFA0ABCFD7F2129 /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = 5EEFF7043838ECFBC2155B5C5B83F7CD /* RNImageCropPicker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21562,7 +21713,7 @@ }; 5C0B9265CAB0D9CD227A92F72C06CC20 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AF920EA3B184284D2672C0F0AF7BBF13 /* React-RCTVibration.xcconfig */; + baseConfigurationReference = F6CB564AE5D839003189C16F3289EEF1 /* React-RCTVibration.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21588,7 +21739,7 @@ }; 5DC883AB0B0414AD48BB3AB4F3269D66 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E9DD91D01681C27C1CCA91964189CBC3 /* UMConstantsInterface.xcconfig */; + baseConfigurationReference = 11C8A67A523D91820F05E1E75A938EB7 /* UMConstantsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -21604,7 +21755,7 @@ }; 5DDAA8C3F7FCC062776754B1F3B95D1E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1BE77D3218DD612963BA380A7A6E2414 /* React-RCTNetwork.xcconfig */; + baseConfigurationReference = F2A0626FD5854C9AB571E75A278FE003 /* React-RCTNetwork.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21670,7 +21821,7 @@ }; 5E7869770EA6F89BE71AB5A82A8747EE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C0D61DC80278A4BBC9BA7185A8F3A0B1 /* React-cxxreact.xcconfig */; + baseConfigurationReference = FB30A0C1F84B37E7A63836AD635BF79E /* React-cxxreact.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21695,7 +21846,7 @@ }; 60EC64E5B79C5F949116BD34130957D4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CA09E0CE1A07741A4401199479C0941E /* BugsnagReactNative.xcconfig */; + baseConfigurationReference = 325E42DDCF9C6C3954ED8A465D38C362 /* BugsnagReactNative.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21721,7 +21872,7 @@ }; 6513D57E09C36B05CF916F7E8A662077 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5F6AB8F360C549914ACACC1BCCDC126A /* EXFileSystem.xcconfig */; + baseConfigurationReference = 60EBB00780FF2A181C094F49615EB38C /* EXFileSystem.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -21748,7 +21899,7 @@ }; 65177BF401CF3D4E9EAACC190BD37AC3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B44622DFEDC8C1E0872F5F31C06B431D /* RNFirebase.xcconfig */; + baseConfigurationReference = 43815A8525F773276C57D3783821EC68 /* RNFirebase.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21774,7 +21925,7 @@ }; 65EB1A7A5D1465B289935D8C2F1BBD30 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 68210CC2ED4C6F498EA4DAAC3D560975 /* UMFaceDetectorInterface.xcconfig */; + baseConfigurationReference = 4057007FFCC1F9167336EA33D4D3F28E /* UMFaceDetectorInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -21790,7 +21941,7 @@ }; 664E5CB9279DF965C75A308E4C19DE1C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D48CC1A2F4DBE99ED25B6AB7A23A80BD /* react-native-webview.xcconfig */; + baseConfigurationReference = 65CB6926EE4164B88B485A0EB2C889B8 /* react-native-webview.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21815,7 +21966,7 @@ }; 66B5F5845EEB10E57A3A46D451238559 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EC88000ED677B260937D884184B39666 /* React-RCTText.xcconfig */; + baseConfigurationReference = F75A97E72944AAAD3BFFC5CCB7806BB7 /* React-RCTText.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21840,7 +21991,7 @@ }; 677C55C5482A68F862361238F7F8E2D0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2CA3DDA588BBA33D185387C5D75150E9 /* react-native-jitsi-meet.xcconfig */; + baseConfigurationReference = 05DE3B152B393181033A3529CEC2B6BE /* react-native-jitsi-meet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21865,7 +22016,7 @@ }; 68862420C9D14D6D543E26A3029DA27D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EC88000ED677B260937D884184B39666 /* React-RCTText.xcconfig */; + baseConfigurationReference = F75A97E72944AAAD3BFFC5CCB7806BB7 /* React-RCTText.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21917,7 +22068,7 @@ }; 69C2BA4F9009FED344405012652F51CA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2CA3DDA588BBA33D185387C5D75150E9 /* react-native-jitsi-meet.xcconfig */; + baseConfigurationReference = 05DE3B152B393181033A3529CEC2B6BE /* react-native-jitsi-meet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21943,7 +22094,7 @@ }; 6A441642FC3FFE19200089E9B23E8FF7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1262C362E414E45C0BF6B4B8BAF38B88 /* RNReanimated.xcconfig */; + baseConfigurationReference = C0515A170A399D7811374BCD654EC21A /* RNReanimated.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -21969,7 +22120,7 @@ }; 6BCF1CCFC9C90ED9DE69A10FDE40B529 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AD2CDF92D73070FFB5EE0C531BCFD946 /* UMFontInterface.xcconfig */; + baseConfigurationReference = C28AD31F48DE2DABE75E803A84132594 /* UMFontInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -21984,7 +22135,7 @@ }; 6CD41DE3D505BD5D9B21FBDE590087B3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 89BDBB64C1BC5D1BB4F805ADB841AA0B /* EXImageLoader.xcconfig */; + baseConfigurationReference = F4F59E818975B0DAF1677936CC7928F8 /* EXImageLoader.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -22011,7 +22162,7 @@ }; 6DB18DF4D7CB92ACF500AA4CB91574EE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6BBCE391816522C2DB0D4F64239E685D /* React-CoreModules.xcconfig */; + baseConfigurationReference = 189247C2BB52027FFA0C7C6710FE6764 /* React-CoreModules.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22036,7 +22187,7 @@ }; 6DD833DF82AD945EAC590428925265F6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8246F155AFFCEEB02887B1984FAA718E /* rn-extensions-share.xcconfig */; + baseConfigurationReference = 5D3CEA80B14F24C4D770A2E19D7204DB /* rn-extensions-share.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22059,6 +22210,29 @@ }; name = Debug; }; + 6EA917213D23C1837368DF0DE29007F7 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B5D32CE02F68EE345F9101FFAF7E3476 /* Pods-RocketChatRN.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + APPLICATION_EXTENSION_API_ONLY = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + MACH_O_TYPE = staticlib; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 71633DFB8C995054BED7FB1F22EBD760 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = B05C43896E9F95B6A4756C24B12C8DBB /* SDWebImageWebPCoder.xcconfig */; @@ -22086,7 +22260,7 @@ }; 71909F570922582EB29779D954A7655F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8C1B775426912FC023387FF831D96595 /* react-native-orientation-locker.xcconfig */; + baseConfigurationReference = 1A7BDFA4779468035CA517CC2B92B606 /* react-native-orientation-locker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22112,7 +22286,7 @@ }; 72925EA6EA996E5BDF5CFBC3D3F10109 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E6B899F02890ECA8F69E16739FC723D9 /* UMFileSystemInterface.xcconfig */; + baseConfigurationReference = 9501CFD3C936BC73BFADBCEFE40AEB0A /* UMFileSystemInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -22127,7 +22301,7 @@ }; 72C0F38FC6842701424DB20D290EE53C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 634532311DB6CBCEABDB8837E125E209 /* RNAudio.xcconfig */; + baseConfigurationReference = 569B6F1D87183821E96F79C08CFAA86F /* RNAudio.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22201,7 +22375,7 @@ }; 7452D595EDF76721ACCD09888C4300EB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8C1B775426912FC023387FF831D96595 /* react-native-orientation-locker.xcconfig */; + baseConfigurationReference = 1A7BDFA4779468035CA517CC2B92B606 /* react-native-orientation-locker.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22226,7 +22400,7 @@ }; 745584283E329E8703A11278C5FD98AA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FB640FAAD52F0D73311260D733A9F50B /* RNUserDefaults.xcconfig */; + baseConfigurationReference = B8F82E2568CD387AE71DA33BE9E526FA /* RNUserDefaults.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22251,7 +22425,7 @@ }; 76100320E21D42374BB0F0BD2DD157C1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 85E74382E16E9ABBABA8D056F3A0E03A /* UMCameraInterface.xcconfig */; + baseConfigurationReference = 9584BF8B7116E9533B527075D84FC6E2 /* UMCameraInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -22266,7 +22440,7 @@ }; 779B1B52B5C8BD4D67CE2B7E314D68A7 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7B2D2E87A0821787B0CB305C2F199B2B /* react-native-keyboard-tracking-view.xcconfig */; + baseConfigurationReference = 5E6658E4489794B6871AB115234109D0 /* react-native-keyboard-tracking-view.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22291,7 +22465,7 @@ }; 79A0890C0FF0EE7CE7DDB7CF814436E7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8246F155AFFCEEB02887B1984FAA718E /* rn-extensions-share.xcconfig */; + baseConfigurationReference = 5D3CEA80B14F24C4D770A2E19D7204DB /* rn-extensions-share.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22317,7 +22491,7 @@ }; 79C72A59DBC7A8408A00437C32C7766C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F2B2A1B43A483D6E4AEDD76F4C2712A5 /* UMPermissionsInterface.xcconfig */; + baseConfigurationReference = 2A41668B7A227780F09DE51D11387E2B /* UMPermissionsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -22358,7 +22532,7 @@ }; 7BC8ECF42B51502BDEC0C678012395A9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B1D8E53CA06E2FD05334233A34F0A306 /* React-RCTImage.xcconfig */; + baseConfigurationReference = 54352B464F96C6F36A4E3BF21A0AAF4C /* React-RCTImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22384,7 +22558,7 @@ }; 7ED2663CADBE5D8B55630D2A2DBE74FD /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 00002E8FB2C0CA6E6D8DFBF2547CADBC /* UMSensorsInterface.xcconfig */; + baseConfigurationReference = EF106A6DD349A9D728B07E4FF7D0B6FC /* UMSensorsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -22400,7 +22574,7 @@ }; 82E853AAD06F4C932AAEAEA9A8AE1EB4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 07E63C29FE4669ACECF77D183070A956 /* RCTTypeSafety.xcconfig */; + baseConfigurationReference = D879E3AFB811F795F505E30DA3F55296 /* RCTTypeSafety.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22425,7 +22599,7 @@ }; 83B8667023CCABE7930FECF4308F42C1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B7AF00286728B672293B3F31A09F7860 /* RNBootSplash.xcconfig */; + baseConfigurationReference = 9838DD02C421D6A67A4DABE8E5BBD4DE /* RNBootSplash.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22451,7 +22625,7 @@ }; 83D51B373BC655474060B7059374A055 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A7607780AD4D22BE1133EF77012BA770 /* UMBarCodeScannerInterface.xcconfig */; + baseConfigurationReference = 0CF4A6E68D0685DE586ED50622C61AB0 /* UMBarCodeScannerInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -22467,7 +22641,7 @@ }; 85F758BB2896EF75F72B6F2A77364175 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C1A94EA75A7BA3B0E4302059BCFEB33A /* EXHaptics.xcconfig */; + baseConfigurationReference = B8381E2B75F16FCF9DAF41EE8E3433C8 /* EXHaptics.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -22519,7 +22693,7 @@ }; 88FCAFE7B06BCEC0AC4CA29D98C90803 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CA09E0CE1A07741A4401199479C0941E /* BugsnagReactNative.xcconfig */; + baseConfigurationReference = 325E42DDCF9C6C3954ED8A465D38C362 /* BugsnagReactNative.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22544,7 +22718,7 @@ }; 89944B7D12A48C902BF42ACDFC063D1F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F2B2A1B43A483D6E4AEDD76F4C2712A5 /* UMPermissionsInterface.xcconfig */; + baseConfigurationReference = 2A41668B7A227780F09DE51D11387E2B /* UMPermissionsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -22595,7 +22769,7 @@ }; 911D20316B507B8E73EBD2ADE090E8EA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 68A4D0305A3CA5885A1016E9E2C7286E /* react-native-background-timer.xcconfig */; + baseConfigurationReference = 26F384A95B89DD4DEE81C0AF3AEA0503 /* react-native-background-timer.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22620,7 +22794,7 @@ }; 917A20C7C8D878581AC4A8285097017A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3BCA0395DBAC79F4F0ABBAE0184AED51 /* Yoga.xcconfig */; + baseConfigurationReference = 2DF80B83CB74EB8528D11F700867D9EC /* Yoga.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22646,7 +22820,7 @@ }; 91B7B1EA6F476888FC9C4D7B4CF23675 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A849D6F17D1FCB59C9CE3912E8FECFDC /* UMReactNativeAdapter.xcconfig */; + baseConfigurationReference = 4546767F3188A259899C9560A580DFDE /* UMReactNativeAdapter.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -22673,7 +22847,7 @@ }; 921CB93956632503338319DD71FF15A5 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 521D7D15BA51A665AED00F7B8325CF7E /* RNFastImage.xcconfig */; + baseConfigurationReference = 42E629407F5F9986664769B85BDE758C /* RNFastImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22698,7 +22872,7 @@ }; 932715893B5D8A998947BDF948EDEA0F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A7607780AD4D22BE1133EF77012BA770 /* UMBarCodeScannerInterface.xcconfig */; + baseConfigurationReference = 0CF4A6E68D0685DE586ED50622C61AB0 /* UMBarCodeScannerInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -22713,7 +22887,7 @@ }; 9379E6366D9E11C636D1E54575E216EE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 07E63C29FE4669ACECF77D183070A956 /* RCTTypeSafety.xcconfig */; + baseConfigurationReference = D879E3AFB811F795F505E30DA3F55296 /* RCTTypeSafety.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22739,7 +22913,7 @@ }; 94E3653223086209F995373532C8F7EB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 01544C0A323FB8C35DFBB477A1FE6428 /* React-jsi.xcconfig */; + baseConfigurationReference = AD1565950EC44B931A48C481E30CE33C /* React-jsi.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22762,33 +22936,9 @@ }; name = Debug; }; - 96E0480B69BF040CA3B1ED790199F2B0 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = A9916A69A97251C8AA9535F6F70AE9DB /* Pods-RocketChatRN.release.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - APPLICATION_EXTENSION_API_ONLY = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - MACH_O_TYPE = staticlib; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 9798DF63F7267FE1AD56F263EADD5B6A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2230B03BE8991D2B9453D1367C83808B /* RNScreens.xcconfig */; + baseConfigurationReference = 6B07E156D4BC56BAF650BF430017ADA8 /* RNScreens.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22813,7 +22963,7 @@ }; 98D1BE1C631327534141623ED69DFAB0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5F6AB8F360C549914ACACC1BCCDC126A /* EXFileSystem.xcconfig */; + baseConfigurationReference = 60EBB00780FF2A181C094F49615EB38C /* EXFileSystem.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -22839,7 +22989,7 @@ }; 9A3174FDB1F4445ADEA8F35751AD8207 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 20DEB1A605A22DFC0E9B4E2F71B24EC7 /* React-jsinspector.xcconfig */; + baseConfigurationReference = 316CE9524A5CBC00F625F390AF349412 /* React-jsinspector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22864,7 +23014,7 @@ }; 9B80322166315DE06CF92ECB3BE31E88 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7272F183AACAC14F1CF2105ECF6297FC /* react-native-keyboard-input.xcconfig */; + baseConfigurationReference = 15B1B18F7BCA23D317AEB00634D5E7E0 /* react-native-keyboard-input.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22890,7 +23040,7 @@ }; 9CAE17F3AEAA92514573A6AFC28F58F8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 68210CC2ED4C6F498EA4DAAC3D560975 /* UMFaceDetectorInterface.xcconfig */; + baseConfigurationReference = 4057007FFCC1F9167336EA33D4D3F28E /* UMFaceDetectorInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -22905,7 +23055,7 @@ }; 9D25004EDED3EA338107FA6F993E40BC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 09CFE0206070257FA56A9423FF01E393 /* React-RCTBlob.xcconfig */; + baseConfigurationReference = 34390AC1C4436AA28EA4274C83B23674 /* React-RCTBlob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22946,7 +23096,7 @@ }; 9D7C7C3A1425C18171275C2A383FA8CE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 214CA21F2AC56EEC639D761AD723F840 /* RNDeviceInfo.xcconfig */; + baseConfigurationReference = 54E5BFB8C428641CEB02F8AEB19B9EFF /* RNDeviceInfo.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22971,7 +23121,7 @@ }; 9EACAE2DF1FB29D6CD5849750D0E945D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 521D7D15BA51A665AED00F7B8325CF7E /* RNFastImage.xcconfig */; + baseConfigurationReference = 42E629407F5F9986664769B85BDE758C /* RNFastImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -22997,7 +23147,7 @@ }; 9F252DECF660AD99C57FE172DC3377CE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 687B021CBCA2D118D572F00E2FD2B142 /* KeyCommands.xcconfig */; + baseConfigurationReference = 6B6F4AC2C5C639CD50BF159830CC8CFA /* KeyCommands.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23022,7 +23172,7 @@ }; 9FF84870B7F6FDF9150FDD60E6D57C4F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 96B4AB7518B0AEE8B1100BFE3AEAF45A /* React-RCTAnimation.xcconfig */; + baseConfigurationReference = 2BEA966F870B42067C20AF302F59BCAD /* React-RCTAnimation.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23048,7 +23198,7 @@ }; A071A0C7DF65F1D9E326DD3CE2DE8C9E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = ACDC8A7FA99E4FF01F265E0D69134BB5 /* ReactCommon.xcconfig */; + baseConfigurationReference = 759D90D1019D505AD70BE871F8950D2B /* ReactCommon.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23073,7 +23223,7 @@ }; A0CE7427B29B950D5C3D9D14D5F0956F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E9DD91D01681C27C1CCA91964189CBC3 /* UMConstantsInterface.xcconfig */; + baseConfigurationReference = 11C8A67A523D91820F05E1E75A938EB7 /* UMConstantsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -23088,7 +23238,7 @@ }; A2194A79914B5CC215FA2FF1CF8CFCF8 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 68A4D0305A3CA5885A1016E9E2C7286E /* react-native-background-timer.xcconfig */; + baseConfigurationReference = 26F384A95B89DD4DEE81C0AF3AEA0503 /* react-native-background-timer.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23114,7 +23264,7 @@ }; AA08A4CFB27E8D0764FB1F3E7659D277 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3F375F20E60CF86FBB63E7C28CBE4208 /* React-jsiexecutor.xcconfig */; + baseConfigurationReference = D65ED7023ED69D130708EF8FEC3925FA /* React-jsiexecutor.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23140,7 +23290,7 @@ }; AA3C608C1EFBFF6195298DABF3846DE1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 00002E8FB2C0CA6E6D8DFBF2547CADBC /* UMSensorsInterface.xcconfig */; + baseConfigurationReference = EF106A6DD349A9D728B07E4FF7D0B6FC /* UMSensorsInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -23155,7 +23305,7 @@ }; AC7D788F43301FFAEDED241C7A7099A7 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B1D8E53CA06E2FD05334233A34F0A306 /* React-RCTImage.xcconfig */; + baseConfigurationReference = 54352B464F96C6F36A4E3BF21A0AAF4C /* React-RCTImage.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23180,7 +23330,7 @@ }; AEE4C1B4604FAAC1DEA8D5FF30CD56C3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 798300D04979555E318EDE2C3006F241 /* FBReactNativeSpec.xcconfig */; + baseConfigurationReference = B70F154A574728B8D4C1C0B9438FF4B3 /* FBReactNativeSpec.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23205,7 +23355,7 @@ }; B006F308D2A947732D25BF32E328BD7C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FFBE366BE491287C13480544CDF01F43 /* UMTaskManagerInterface.xcconfig */; + baseConfigurationReference = DA744873B7F2AC32520D0FD4D5055112 /* UMTaskManagerInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -23295,7 +23445,7 @@ }; B1B7713286195D091EC5BC6F27BD5581 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3EB8F3B4B796FECAFE72B6212207E684 /* ReactNativeART.xcconfig */; + baseConfigurationReference = 7E31A6B449E57AABC9237A24B247CB6A /* ReactNativeART.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23320,7 +23470,7 @@ }; B4E87D0668029199CD617DB2DDE97D86 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FE997B88F2CDCED8F816B2BBDD413FC7 /* react-native-slider.xcconfig */; + baseConfigurationReference = 2615D87890C398C541274B84091F4118 /* react-native-slider.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23371,7 +23521,7 @@ }; B74A66D1B4DB325F337289BC6923B612 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 603E4CF0D2EF1B7DE6BDB26D017CD438 /* RCTRequired.xcconfig */; + baseConfigurationReference = E37FA286A65A13B6EACE4F2949703FCF /* RCTRequired.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -23460,7 +23610,7 @@ }; B93AD636A7701AACBF5C0DEB8249D15D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2D3998332EF394DA5DF192449A0CFF01 /* React-RCTLinking.xcconfig */; + baseConfigurationReference = C5CA46DC3BAC8E34D065E5D96307C663 /* React-RCTLinking.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23486,7 +23636,7 @@ }; BD044681D243E0E09FBA04ACF21FA123 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2230B03BE8991D2B9453D1367C83808B /* RNScreens.xcconfig */; + baseConfigurationReference = 6B07E156D4BC56BAF650BF430017ADA8 /* RNScreens.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23512,7 +23662,7 @@ }; BE55AFAEBDF9C2CF98BBE3D1136D8F7F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F344C77888A1036128EB010D9ED1C690 /* EXAV.xcconfig */; + baseConfigurationReference = 2CB56EB5913B806DD6E096F58F4D9FF3 /* EXAV.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -23538,7 +23688,7 @@ }; BE5AE6E1F2B58CFF3217A86780F6336C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 85E74382E16E9ABBABA8D056F3A0E03A /* UMCameraInterface.xcconfig */; + baseConfigurationReference = 9584BF8B7116E9533B527075D84FC6E2 /* UMCameraInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -23554,7 +23704,7 @@ }; BF89345BE7A481AA4055FF310B7F3956 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 93F179CAC37400A573A57D7C580C75D5 /* RNLocalize.xcconfig */; + baseConfigurationReference = 0F218E27E1059AFDA5D2F6B49784ED27 /* RNLocalize.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23580,7 +23730,7 @@ }; BFB2316A669B0D479BA6634A0904B083 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 000FC0F253268189A87D3FD6261B5CFA /* rn-fetch-blob.xcconfig */; + baseConfigurationReference = 6178BBA9B9B9A78E0C232275C315D603 /* rn-fetch-blob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23606,7 +23756,7 @@ }; C128C18739AA9067D388429C13824733 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1C4CF928A9E88CA633B6F95DA4751A46 /* FBLazyVector.xcconfig */; + baseConfigurationReference = 390A59F129F705D241B9686AA66E2D7A /* FBLazyVector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -23621,7 +23771,7 @@ }; C1413F798E37FBF0F0B0CBF49398107C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2572341F607B3FA647DECA06B7E4D625 /* EXConstants.xcconfig */; + baseConfigurationReference = D5CC0DC1CF5E80A3E4FAD91A65678C96 /* EXConstants.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -23647,7 +23797,7 @@ }; C675F1101EC56FF48D0EAAF987511073 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D7F6B806AC4CE8AFBE23CCE6D12C15B2 /* React-RCTActionSheet.xcconfig */; + baseConfigurationReference = 6FE23694EA167907586135DDAE4DE7EC /* React-RCTActionSheet.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23672,7 +23822,7 @@ }; C67E686CB71286AEE8194B8F91695BD7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2724494D81419E2A52EAEDBFE0CA779B /* UMImageLoaderInterface.xcconfig */; + baseConfigurationReference = 929ADB4BD381ED2AA60F8FF8E7317730 /* UMImageLoaderInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -23688,7 +23838,7 @@ }; C68F8BE3073459D980E297CA1951C3DB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 000FC0F253268189A87D3FD6261B5CFA /* rn-fetch-blob.xcconfig */; + baseConfigurationReference = 6178BBA9B9B9A78E0C232275C315D603 /* rn-fetch-blob.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23713,7 +23863,7 @@ }; C9AD4422D1F772604AC286D0A6DF4189 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0764C74C255EA604FCBA84129BEADD2D /* RNVectorIcons.xcconfig */; + baseConfigurationReference = D4A9777CADEB6A3788DB137532CF5E2C /* RNVectorIcons.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23739,7 +23889,7 @@ }; C9E113D47DEE6500FA656727AD637A71 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7B9A20A94248F8D409B2B84F98A5721C /* RNRootView.xcconfig */; + baseConfigurationReference = 17D5A84F8747106DDCA033C31C5D274F /* RNRootView.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23764,7 +23914,7 @@ }; CBAC48129BCC71255BE1413BD06DFB43 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FB640FAAD52F0D73311260D733A9F50B /* RNUserDefaults.xcconfig */; + baseConfigurationReference = B8F82E2568CD387AE71DA33BE9E526FA /* RNUserDefaults.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23790,7 +23940,7 @@ }; CD26F4BEB83F26811BF1081A76FAA47F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0764C74C255EA604FCBA84129BEADD2D /* RNVectorIcons.xcconfig */; + baseConfigurationReference = D4A9777CADEB6A3788DB137532CF5E2C /* RNVectorIcons.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23813,32 +23963,9 @@ }; name = Debug; }; - CD46323256E0673C124043A1CAC15340 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B5D32CE02F68EE345F9101FFAF7E3476 /* Pods-RocketChatRN.debug.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - APPLICATION_EXTENSION_API_ONLY = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - MACH_O_TYPE = staticlib; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; D04F94085B40D8D4779EBFD0F4383CA8 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FCEC38F8421233C14D48F446A407222B /* React-Core.xcconfig */; + baseConfigurationReference = C209D034DDFC1F6D088783677CACB505 /* React-Core.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23864,7 +23991,7 @@ }; D17FDDE9E8075FCA5001DB700CFDC7EE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6BBCE391816522C2DB0D4F64239E685D /* React-CoreModules.xcconfig */; + baseConfigurationReference = 189247C2BB52027FFA0C7C6710FE6764 /* React-CoreModules.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -23968,7 +24095,7 @@ }; D59C3B7BE5D98BD3A70A5E5B073C631B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FFBE366BE491287C13480544CDF01F43 /* UMTaskManagerInterface.xcconfig */; + baseConfigurationReference = DA744873B7F2AC32520D0FD4D5055112 /* UMTaskManagerInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -24036,7 +24163,7 @@ }; DB3E7A155C245721FC07D01632F0CFAB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C1A94EA75A7BA3B0E4302059BCFEB33A /* EXHaptics.xcconfig */; + baseConfigurationReference = B8381E2B75F16FCF9DAF41EE8E3433C8 /* EXHaptics.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -24089,7 +24216,7 @@ }; DB9E714E74F88B6DD317822487883DBA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 214CA21F2AC56EEC639D761AD723F840 /* RNDeviceInfo.xcconfig */; + baseConfigurationReference = 54E5BFB8C428641CEB02F8AEB19B9EFF /* RNDeviceInfo.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -24115,7 +24242,7 @@ }; DE4E0DAFF0236084703632955B393B89 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 603E4CF0D2EF1B7DE6BDB26D017CD438 /* RCTRequired.xcconfig */; + baseConfigurationReference = E37FA286A65A13B6EACE4F2949703FCF /* RCTRequired.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -24130,7 +24257,7 @@ }; DE8CEC7E031F3505797998B9F3C37A92 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 01544C0A323FB8C35DFBB477A1FE6428 /* React-jsi.xcconfig */; + baseConfigurationReference = AD1565950EC44B931A48C481E30CE33C /* React-jsi.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -24156,7 +24283,7 @@ }; DF099D9819C5D304192EBE7A7475E55A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7272F183AACAC14F1CF2105ECF6297FC /* react-native-keyboard-input.xcconfig */; + baseConfigurationReference = 15B1B18F7BCA23D317AEB00634D5E7E0 /* react-native-keyboard-input.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -24181,7 +24308,7 @@ }; DFF7D8C851FEE03E5A02EAC5E945D35F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2724494D81419E2A52EAEDBFE0CA779B /* UMImageLoaderInterface.xcconfig */; + baseConfigurationReference = 929ADB4BD381ED2AA60F8FF8E7317730 /* UMImageLoaderInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -24194,9 +24321,36 @@ }; name = Debug; }; + E232728C3141A337EE441B8D93B20DAC /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 5FF709631B88B27D8DC8102633CDC321 /* EXLocalAuthentication.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/EXLocalAuthentication/EXLocalAuthentication-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = EXLocalAuthentication; + PRODUCT_NAME = EXLocalAuthentication; + 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; + }; E38047BBE4979D9C53D6D7FEA4422373 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AD2CDF92D73070FFB5EE0C531BCFD946 /* UMFontInterface.xcconfig */; + baseConfigurationReference = C28AD31F48DE2DABE75E803A84132594 /* UMFontInterface.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; @@ -24237,7 +24391,7 @@ }; E651B8F553C5C42CD9C5F0480D01A3A2 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FE997B88F2CDCED8F816B2BBDD413FC7 /* react-native-slider.xcconfig */; + baseConfigurationReference = 2615D87890C398C541274B84091F4118 /* react-native-slider.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -24262,7 +24416,7 @@ }; E7C01DC159749822F32A915919D90ECF /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CD3B1E4836C2B5451865F6CBA58759A1 /* react-native-cameraroll.xcconfig */; + baseConfigurationReference = DED3C306036B86D6BAD40A6FC8471859 /* react-native-cameraroll.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -24288,7 +24442,7 @@ }; EAD69AF5DEF01031F1B45B5E1FB65899 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AF920EA3B184284D2672C0F0AF7BBF13 /* React-RCTVibration.xcconfig */; + baseConfigurationReference = F6CB564AE5D839003189C16F3289EEF1 /* React-RCTVibration.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -24311,9 +24465,35 @@ }; name = Debug; }; + EB43E6D3164DBC292ECD433D4903DA88 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 5FF709631B88B27D8DC8102633CDC321 /* EXLocalAuthentication.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/EXLocalAuthentication/EXLocalAuthentication-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = EXLocalAuthentication; + PRODUCT_NAME = EXLocalAuthentication; + 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; + }; EB9D4FF27A66AB5460886EA1D7F6EF2D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 23219ACA713D7CAFB30DC0419DE1E805 /* react-native-video.xcconfig */; + baseConfigurationReference = F85392B2599302F91F4B0D19284BA676 /* react-native-video.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -24338,7 +24518,7 @@ }; EF0788D08C339FE1FB8A20A21A46A640 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2D3998332EF394DA5DF192449A0CFF01 /* React-RCTLinking.xcconfig */; + baseConfigurationReference = C5CA46DC3BAC8E34D065E5D96307C663 /* React-RCTLinking.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -24363,7 +24543,7 @@ }; EFF46113088B01826DDB9EE5A92D5CDF /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 20DEB1A605A22DFC0E9B4E2F71B24EC7 /* React-jsinspector.xcconfig */; + baseConfigurationReference = 316CE9524A5CBC00F625F390AF349412 /* React-jsinspector.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -24389,7 +24569,7 @@ }; F16023777DD0FF55E40F3B59623B664D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 89BDBB64C1BC5D1BB4F805ADB841AA0B /* EXImageLoader.xcconfig */; + baseConfigurationReference = F4F59E818975B0DAF1677936CC7928F8 /* EXImageLoader.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -24440,7 +24620,7 @@ }; F4BB0B9A68137AA0D4D3ED480DBFFA5A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 211F772B93EC2A85C2C1F1AD2357F7B8 /* RNGestureHandler.xcconfig */; + baseConfigurationReference = 48AAA8346CB5AF2DFBF2FAE3648FBE8B /* RNGestureHandler.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -24465,7 +24645,7 @@ }; F5413AE83955B591D3DA4DC3663AFCB5 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3EB8F3B4B796FECAFE72B6212207E684 /* ReactNativeART.xcconfig */; + baseConfigurationReference = 7E31A6B449E57AABC9237A24B247CB6A /* ReactNativeART.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -24491,7 +24671,7 @@ }; F648CF6CEC8C69D7950C96E36109B383 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A849D6F17D1FCB59C9CE3912E8FECFDC /* UMReactNativeAdapter.xcconfig */; + baseConfigurationReference = 4546767F3188A259899C9560A580DFDE /* UMReactNativeAdapter.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -24557,7 +24737,7 @@ }; FBFFAAAD143D5203AF55B1DFDE1C9F19 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 23219ACA713D7CAFB30DC0419DE1E805 /* react-native-video.xcconfig */; + baseConfigurationReference = F85392B2599302F91F4B0D19284BA676 /* react-native-video.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -24583,7 +24763,7 @@ }; FC71C31E2668416B9072953D27DC64CE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1849DA14CADFB7DF37364ACEFA91166A /* EXWebBrowser.xcconfig */; + baseConfigurationReference = E866CECE6F9A3676B266DA1070DF8A37 /* EXWebBrowser.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CLANG_ENABLE_OBJC_WEAK = NO; @@ -24635,7 +24815,7 @@ }; FF9F97A496BA9B674F13E18785C6F22B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3BCA0395DBAC79F4F0ABBAE0184AED51 /* Yoga.xcconfig */; + baseConfigurationReference = 2DF80B83CB74EB8528D11F700867D9EC /* Yoga.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -24796,6 +24976,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 24CFDE8E6B59E85841835E4459C1B21E /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 6EA917213D23C1837368DF0DE29007F7 /* Debug */, + 1BA15885B9AD13582E65019E666D898E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 272C318C3C138518DD0B0FB5BF575E70 /* Build configuration list for PBXNativeTarget "FirebaseCore" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -25057,6 +25246,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 72B602FAC3AD6A76C8A864443CFAAEF3 /* Build configuration list for PBXNativeTarget "EXLocalAuthentication" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + EB43E6D3164DBC292ECD433D4903DA88 /* Debug */, + E232728C3141A337EE441B8D93B20DAC /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 737ACDD2E001DAA26D9CDBF4572EC1FF /* Build configuration list for PBXNativeTarget "RNUserDefaults" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -25498,15 +25696,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F26EE9B2B5FD2D5AD6D57A5E00B6DBA4 /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - CD46323256E0673C124043A1CAC15340 /* Debug */, - 96E0480B69BF040CA3B1ED790199F2B0 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; F3B5D9DA1E40073F034CC27A3F9CD632 /* Build configuration list for PBXNativeTarget "FBReactNativeSpec" */ = { isa = XCConfigurationList; buildConfigurations = ( diff --git a/ios/Pods/Target Support Files/EXLocalAuthentication/EXLocalAuthentication-dummy.m b/ios/Pods/Target Support Files/EXLocalAuthentication/EXLocalAuthentication-dummy.m new file mode 100644 index 000000000..78d3cf4a3 --- /dev/null +++ b/ios/Pods/Target Support Files/EXLocalAuthentication/EXLocalAuthentication-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_EXLocalAuthentication : NSObject +@end +@implementation PodsDummy_EXLocalAuthentication +@end diff --git a/ios/Pods/Target Support Files/EXLocalAuthentication/EXLocalAuthentication-prefix.pch b/ios/Pods/Target Support Files/EXLocalAuthentication/EXLocalAuthentication-prefix.pch new file mode 100644 index 000000000..beb2a2441 --- /dev/null +++ b/ios/Pods/Target Support Files/EXLocalAuthentication/EXLocalAuthentication-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/ios/Pods/Target Support Files/EXLocalAuthentication/EXLocalAuthentication.xcconfig b/ios/Pods/Target Support Files/EXLocalAuthentication/EXLocalAuthentication.xcconfig new file mode 100644 index 000000000..bf3fd92be --- /dev/null +++ b/ios/Pods/Target Support Files/EXLocalAuthentication/EXLocalAuthentication.xcconfig @@ -0,0 +1,10 @@ +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" "${PODS_ROOT}/Headers/Public/UMCore" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../node_modules/expo-local-authentication/ios +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.debug.xcconfig b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.debug.xcconfig index 4998b74c5..920a84c42 100644 --- a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.debug.xcconfig +++ b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.debug.xcconfig @@ -1,9 +1,9 @@ FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/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/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-video" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/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/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-video" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTActionSheet" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/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}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-tracking-view" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-video" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"EXAV" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstallations" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -l"React-RCTActionSheet" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-keyboard-input" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-slider" -l"react-native-video" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AVFoundation" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTActionSheet" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/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}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-tracking-view" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-video" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"EXAV" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstallations" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -l"React-RCTActionSheet" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-keyboard-input" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-slider" -l"react-native-video" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AVFoundation" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. diff --git a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.release.xcconfig b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.release.xcconfig index 4998b74c5..920a84c42 100644 --- a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.release.xcconfig +++ b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.release.xcconfig @@ -1,9 +1,9 @@ FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/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/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-video" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/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/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-video" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTActionSheet" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/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}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-tracking-view" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-video" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" -OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"EXAV" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstallations" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -l"React-RCTActionSheet" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-keyboard-input" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-slider" -l"react-native-video" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AVFoundation" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAV" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXHaptics" "${PODS_CONFIGURATION_BUILD_DIR}/EXImageLoader" "${PODS_CONFIGURATION_BUILD_DIR}/EXLocalAuthentication" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTActionSheet" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/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}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-tracking-view" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-video" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"EXAV" -l"EXConstants" -l"EXFileSystem" -l"EXHaptics" -l"EXImageLoader" -l"EXLocalAuthentication" -l"EXPermissions" -l"EXWebBrowser" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstallations" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -l"React-RCTActionSheet" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"UMAppLoader" -l"UMCore" -l"UMPermissionsInterface" -l"UMReactNativeAdapter" -l"Yoga" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-keyboard-input" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-slider" -l"react-native-video" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AVFoundation" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. diff --git a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig index 02bc3efae..7a55f56ef 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,6 +1,6 @@ FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/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/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-video" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/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/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-video" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/../../Frameworks' LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTActionSheet" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-tracking-view" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-video" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstallations" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -l"React-RCTActionSheet" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"Yoga" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-keyboard-input" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-slider" -l"react-native-video" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AVFoundation" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" 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 02bc3efae..7a55f56ef 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,6 +1,6 @@ FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" "${PODS_ROOT}/JitsiMeetSDK/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) SD_WEBP=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/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/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-video" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BugsnagReactNative" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAV" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXImageLoader" "${PODS_ROOT}/Headers/Public/EXLocalAuthentication" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnostics" "${PODS_ROOT}/Headers/Public/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public/FirebaseInstallations" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GoogleDataTransport" "${PODS_ROOT}/Headers/Public/GoogleDataTransportCCTSupport" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/KeyCommands" "${PODS_ROOT}/Headers/Public/PromisesObjC" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/RNAudio" "${PODS_ROOT}/Headers/Public/RNBootSplash" "${PODS_ROOT}/Headers/Public/RNDateTimePicker" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNFastImage" "${PODS_ROOT}/Headers/Public/RNFirebase" "${PODS_ROOT}/Headers/Public/RNGestureHandler" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/RNReanimated" "${PODS_ROOT}/Headers/Public/RNRootView" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RNUserDefaults" "${PODS_ROOT}/Headers/Public/RNVectorIcons" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeART" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SDWebImageWebPCoder" "${PODS_ROOT}/Headers/Public/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/glog" "${PODS_ROOT}/Headers/Public/libwebp" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-appearance" "${PODS_ROOT}/Headers/Public/react-native-background-timer" "${PODS_ROOT}/Headers/Public/react-native-cameraroll" "${PODS_ROOT}/Headers/Public/react-native-document-picker" "${PODS_ROOT}/Headers/Public/react-native-jitsi-meet" "${PODS_ROOT}/Headers/Public/react-native-keyboard-input" "${PODS_ROOT}/Headers/Public/react-native-keyboard-tracking-view" "${PODS_ROOT}/Headers/Public/react-native-notifications" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-slider" "${PODS_ROOT}/Headers/Public/react-native-video" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/rn-fetch-blob" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" "$(PODS_ROOT)/Headers/Private/React-Core" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/../../Frameworks' LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BugsnagReactNative" "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnostics" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstallations" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransportCCTSupport" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/KeyCommands" "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/RNAudio" "${PODS_CONFIGURATION_BUILD_DIR}/RNBootSplash" "${PODS_CONFIGURATION_BUILD_DIR}/RNDateTimePicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNFastImage" "${PODS_CONFIGURATION_BUILD_DIR}/RNFirebase" "${PODS_CONFIGURATION_BUILD_DIR}/RNGestureHandler" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/RNReanimated" "${PODS_CONFIGURATION_BUILD_DIR}/RNRootView" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RNUserDefaults" "${PODS_CONFIGURATION_BUILD_DIR}/RNVectorIcons" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTActionSheet" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeART" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImageWebPCoder" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/libwebp" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-appearance" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-background-timer" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-cameraroll" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-jitsi-meet" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-input" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-keyboard-tracking-view" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-notifications" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-slider" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-video" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/rn-fetch-blob" OTHER_LDFLAGS = $(inherited) -ObjC -l"BugsnagReactNative" -l"DoubleConversion" -l"FBReactNativeSpec" -l"FirebaseCore" -l"FirebaseCoreDiagnostics" -l"FirebaseInstallations" -l"FirebaseInstanceID" -l"Folly" -l"GoogleDataTransport" -l"GoogleDataTransportCCTSupport" -l"GoogleUtilities" -l"KeyCommands" -l"PromisesObjC" -l"RCTTypeSafety" -l"RNAudio" -l"RNBootSplash" -l"RNDateTimePicker" -l"RNDeviceInfo" -l"RNFastImage" -l"RNFirebase" -l"RNGestureHandler" -l"RNImageCropPicker" -l"RNLocalize" -l"RNReanimated" -l"RNRootView" -l"RNScreens" -l"RNUserDefaults" -l"RNVectorIcons" -l"RSKImageCropper" -l"React-Core" -l"React-CoreModules" -l"React-RCTActionSheet" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeART" -l"SDWebImage" -l"SDWebImageWebPCoder" -l"Yoga" -l"c++" -l"glog" -l"libwebp" -l"nanopb" -l"react-native-appearance" -l"react-native-background-timer" -l"react-native-cameraroll" -l"react-native-document-picker" -l"react-native-jitsi-meet" -l"react-native-keyboard-input" -l"react-native-keyboard-tracking-view" -l"react-native-notifications" -l"react-native-orientation-locker" -l"react-native-slider" -l"react-native-video" -l"react-native-webview" -l"rn-extensions-share" -l"rn-fetch-blob" -l"sqlite3" -l"stdc++" -l"z" -framework "AVFoundation" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseAnalytics" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "ImageIO" -framework "JavaScriptCore" -framework "JitsiMeet" -framework "MessageUI" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -framework "WebRTC" diff --git a/ios/RocketChatRN/Info.plist b/ios/RocketChatRN/Info.plist index 018499f57..075426d79 100644 --- a/ios/RocketChatRN/Info.plist +++ b/ios/RocketChatRN/Info.plist @@ -74,6 +74,8 @@ Upload photos to share with other users or to change your avatar NSRemindersUsageDescription Allow $(PRODUCT_NAME) to access your reminders + NSFaceIDUsageDescription + Allow $(PRODUCT_NAME) to prevent unauthenticated users from using the app UIAppFonts custom.ttf diff --git a/package.json b/package.json index 2c3053d09..3e8d4eb86 100644 --- a/package.json +++ b/package.json @@ -39,6 +39,7 @@ "expo-av": "^8.1.0", "expo-file-system": "^8.1.0", "expo-haptics": "^8.1.0", + "expo-local-authentication": "^9.0.0", "expo-web-browser": "^8.1.0", "hoist-non-react-statics": "^3.3.0", "i18n-js": "3.5.0", diff --git a/yarn.lock b/yarn.lock index 60f907fc1..03e8db7af 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4824,6 +4824,13 @@ expo-image-loader@~1.0.0: resolved "https://registry.yarnpkg.com/expo-image-loader/-/expo-image-loader-1.0.1.tgz#a83e336768df4dfcb8909aebb6d8152e256d7a72" integrity sha512-v7ziP+UGj+LArEmP//XTaqi9iFWRa8LAShNoFwwnpPS9huM8q3I+P16xK+GTo+4bQa1pPSIFBUZ8KqwAc+k8mQ== +expo-local-authentication@^9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/expo-local-authentication/-/expo-local-authentication-9.0.0.tgz#2e60f2a93424be93506bede11be7d2914503820b" + integrity sha512-ciRRpmDCHG/RMbyaQso4xjHGAfOvr3KsJdUz4Jx2wDPPTN3qwan2Rjgs87Ngpr7T8lBt6DaMCydhRItlF3FOcA== + dependencies: + invariant "^2.2.4" + expo-permissions@~8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/expo-permissions/-/expo-permissions-8.1.0.tgz#a7f2ee91ba76ce3a467e7b10adaa9ca5201b226f"