From 5f259e552bb6e363c0d79144464411ee444b1184 Mon Sep 17 00:00:00 2001 From: Diego Mello Date: Tue, 18 Jun 2019 09:40:01 -0300 Subject: [PATCH 1/9] [FIX] Android build stopped working after Play Services release (#991) --- android/app/build.gradle | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 9e9465975..63fb83970 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -178,7 +178,9 @@ dependencies { implementation project(':react-native-splash-screen') implementation project(':react-native-screens') implementation project(':react-native-action-sheet') - implementation project(':react-native-device-info') + implementation(project(":react-native-device-info"), { + exclude group: "com.google.android.gms" + }) implementation project(':react-native-gesture-handler') implementation project(':react-native-image-crop-picker') implementation project(':react-native-i18n') From 1ba62f16ff115d1749f2189f6cccf471c797038f Mon Sep 17 00:00:00 2001 From: Diego Mello Date: Tue, 18 Jun 2019 17:12:33 -0300 Subject: [PATCH 2/9] [FIX] Change rooms request's race cancellation condition (#987) * [FIX] Add Inactive state to rooms request's race cancellation * Changed rooms request's cancellation rules --- app/sagas/rooms.js | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/app/sagas/rooms.js b/app/sagas/rooms.js index bc900f2d2..b0fc4258c 100644 --- a/app/sagas/rooms.js +++ b/app/sagas/rooms.js @@ -1,7 +1,8 @@ +import { delay } from 'redux-saga'; import { put, select, race, take, fork, cancel, takeLatest } from 'redux-saga/effects'; -import { BACKGROUND } from 'redux-enhancer-react-native-appstate'; +import { BACKGROUND, INACTIVE } from 'redux-enhancer-react-native-appstate'; import * as types from '../actions/actionsTypes'; import { roomsSuccess, roomsFailure } from '../actions/rooms'; @@ -61,13 +62,20 @@ const root = function* root() { yield takeLatest(types.LOGOUT, handleLogout); while (true) { const params = yield take(types.ROOMS.REQUEST); - const roomsRequestTask = yield fork(handleRoomsRequest, params); - yield race({ - serverReq: take(types.SERVER.SELECT_REQUEST), - background: take(BACKGROUND), - logout: take(types.LOGOUT) - }); - yield cancel(roomsRequestTask); + const isAuthenticated = yield select(state => state.login.isAuthenticated); + if (isAuthenticated) { + const roomsRequestTask = yield fork(handleRoomsRequest, params); + yield race({ + roomsSuccess: take(types.ROOMS.SUCCESS), + roomsFailure: take(types.ROOMS.FAILURE), + serverReq: take(types.SERVER.SELECT_REQUEST), + background: take(BACKGROUND), + inactive: take(INACTIVE), + logout: take(types.LOGOUT), + timeout: delay(30000) + }); + yield cancel(roomsRequestTask); + } } }; export default root; From b9c9c3e5016a9093318f841839e612770e840965 Mon Sep 17 00:00:00 2001 From: Diego Mello Date: Wed, 19 Jun 2019 18:49:56 -0300 Subject: [PATCH 3/9] Bump version to 1.15.1 (#998) --- android/app/build.gradle | 2 +- ios/RocketChatRN/Info.plist | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 63fb83970..7f45c1d1b 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -109,7 +109,7 @@ android { minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion versionCode VERSIONCODE as Integer - versionName "1.15.0" + versionName "1.15.1" vectorDrawables.useSupportLibrary = true } diff --git a/ios/RocketChatRN/Info.plist b/ios/RocketChatRN/Info.plist index fa9b7c5ed..d7050a5ab 100644 --- a/ios/RocketChatRN/Info.plist +++ b/ios/RocketChatRN/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.15.0 + 1.15.1 CFBundleSignature ???? CFBundleURLTypes From 5c8652ec16f27e85ff0a5985bfbeda1b736b741f Mon Sep 17 00:00:00 2001 From: IlarionHalushka Date: Thu, 20 Jun 2019 21:33:15 +0300 Subject: [PATCH 4/9] [FIX] Broadcast channel is not readonly (#996) --- app/views/RoomView/index.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app/views/RoomView/index.js b/app/views/RoomView/index.js index 3ed9a8e33..6ed1b0445 100644 --- a/app/views/RoomView/index.js +++ b/app/views/RoomView/index.js @@ -450,7 +450,7 @@ export default class RoomView extends React.Component { isOwner = () => { const { room } = this.state; - return room && room.roles && Array.from(Object.keys(room.roles), i => room.roles[i].value).includes('owner'); + return room && room.roles && room.roles.length && !!room.roles.find(role => role === 'owner'); } isMuted = () => { @@ -461,7 +461,10 @@ export default class RoomView extends React.Component { isReadOnly = () => { const { room } = this.state; - return (room.ro && !room.broadcast) || this.isMuted() || room.archived; + if (this.isOwner()) { + return false; + } + return (room && room.ro) || this.isMuted(); } isBlocked = () => { From 1383b9b7353e4ec7862499c7d9aa337842fd62dc Mon Sep 17 00:00:00 2001 From: Weijia Date: Thu, 20 Jun 2019 12:02:16 -0700 Subject: [PATCH 5/9] [IMPROVEMENT] Activity indicator on web view OAuth (#980) * add activity indicator when web view is loading * fix eslint error * remove one extra newline --- app/views/OAuthView.js | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/app/views/OAuthView.js b/app/views/OAuthView.js index d418b8dad..ab28c3f73 100644 --- a/app/views/OAuthView.js +++ b/app/views/OAuthView.js @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; import { WebView } from 'react-native-webview'; import { connect } from 'react-redux'; - +import { ActivityIndicator, StyleSheet } from 'react-native'; import RocketChat from '../lib/rocketchat'; import { isIOS } from '../utils/deviceInfo'; import { CloseModalButton } from '../containers/HeaderButton'; @@ -12,6 +12,18 @@ const userAgent = isIOS ? 'Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1' : 'Mozilla/5.0 (Linux; Android 6.0.1; SM-G920V Build/MMB29K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.98 Mobile Safari/537.36'; +const styles = StyleSheet.create({ + loading: { + position: 'absolute', + left: 0, + right: 0, + top: 0, + bottom: 0, + alignItems: 'center', + justifyContent: 'center' + } +}); + @connect(state => ({ server: state.server.server })) @@ -29,7 +41,8 @@ export default class OAuthView extends React.PureComponent { constructor(props) { super(props); this.state = { - logging: false + logging: false, + loading: false }; this.redirectRegex = new RegExp(`(?=.*(${ props.server }))(?=.*(credentialToken))(?=.*(credentialSecret))`, 'g'); } @@ -58,6 +71,7 @@ export default class OAuthView extends React.PureComponent { render() { const { navigation } = this.props; + const { loading } = this.state; const oAuthUrl = navigation.getParam('oAuthUrl'); return ( @@ -74,7 +88,15 @@ export default class OAuthView extends React.PureComponent { this.login({ oauth: { ...credentials } }); } }} + onLoadStart={() => { + this.setState({ loading: true }); + }} + + onLoadEnd={() => { + this.setState({ loading: false }); + }} /> + { loading ? : null } ); } From e52739e3053e165895783889a9e11760a37214f4 Mon Sep 17 00:00:00 2001 From: Diego Mello Date: Thu, 20 Jun 2019 16:02:50 -0300 Subject: [PATCH 6/9] [FIX] Join discussion (#1000) --- app/lib/rocketchat.js | 5 ++++- app/views/RoomView/index.js | 10 ++++------ 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/app/lib/rocketchat.js b/app/lib/rocketchat.js index 21ad4b1e4..a0118f5e7 100644 --- a/app/lib/rocketchat.js +++ b/app/lib/rocketchat.js @@ -447,9 +447,12 @@ const RocketChat = { // RC 0.59.0 return this.sdk.post('im.create', { username }); }, - joinRoom(roomId) { + joinRoom(roomId, type) { // TODO: join code // RC 0.48.0 + if (type === 'p') { + return this.sdk.methodCall('joinRoom', roomId); + } return this.sdk.post('channels.join', { roomId }); }, sendFileMessage, diff --git a/app/views/RoomView/index.js b/app/views/RoomView/index.js index 6ed1b0445..2dc7f4fdc 100644 --- a/app/views/RoomView/index.js +++ b/app/views/RoomView/index.js @@ -437,12 +437,10 @@ export default class RoomView extends React.Component { joinRoom = async() => { try { - const result = await RocketChat.joinRoom(this.rid); - if (result.success) { - this.internalSetState({ - joined: true - }); - } + await RocketChat.joinRoom(this.rid, this.t); + this.internalSetState({ + joined: true + }); } catch (e) { log('err_join_room', e); } From dad18219dd5b7f62ede1c8f6a338ba62a0c96866 Mon Sep 17 00:00:00 2001 From: IlarionHalushka Date: Fri, 21 Jun 2019 19:38:26 +0300 Subject: [PATCH 7/9] [BUG] Profile screen gets frozen when submitting invalid current password (#974) * fix 968: [BUG] Profile screen gets frozen when submitting invalid current password * revert changes to yarn.lock * remove unnecessary line * revert changes to yarn.lock * revert changes to yarn.lock --- app/utils/info.js | 2 +- app/views/ProfileView/index.js | 11 +++++++---- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/app/utils/info.js b/app/utils/info.js index 90f774532..b2612cfbe 100644 --- a/app/utils/info.js +++ b/app/utils/info.js @@ -29,4 +29,4 @@ export const Toast = React.forwardRef((props, ref) => ( opacity={0.8} /> )); -export const showErrorAlert = (message: string, title: string) => Alert.alert(title, message, [{ text: 'OK', onPress: () => {} }], { cancelable: true }); +export const showErrorAlert = (message, title, onPress = () => {}) => Alert.alert(title, message, [{ text: 'OK', onPress }], { cancelable: true }); diff --git a/app/views/ProfileView/index.js b/app/views/ProfileView/index.js index c86e25ea7..0b11876e7 100644 --- a/app/views/ProfileView/index.js +++ b/app/views/ProfileView/index.js @@ -151,8 +151,11 @@ export default class ProfileView extends React.Component { if (e.data && e.data.errorType === 'error-too-many-requests') { return showErrorAlert(e.data.error); } - showErrorAlert(I18n.t('There_was_an_error_while_action', { action: I18n.t(action) })); - // log(func, e); + showErrorAlert( + I18n.t('There_was_an_error_while_action', { action: I18n.t(action) }), + '', + () => this.setState({ showPasswordAlert: false }) + ); } submit = async() => { @@ -162,7 +165,7 @@ export default class ProfileView extends React.Component { return; } - this.setState({ saving: true, showPasswordAlert: false }); + this.setState({ saving: true }); const { name, username, email, newPassword, currentPassword, avatar, customFields @@ -218,7 +221,7 @@ export default class ProfileView extends React.Component { } else { setUser({ ...params }); } - this.setState({ saving: false }); + this.setState({ saving: false, showPasswordAlert: false }); this.toast.show(I18n.t('Profile_saved_successfully')); this.init(); } From b12c14fb78b5b564f7a14acf8d07debd13b2cbe7 Mon Sep 17 00:00:00 2001 From: Diego Mello Date: Fri, 21 Jun 2019 13:39:20 -0300 Subject: [PATCH 8/9] [IMPROVEMENT] Use expo-web-browser (#992) * Add unimodules * Working on iOS * Working on android * Remove react-native-safari-view * Remove previous android link lib * Show webpage title on Android * Fix iOS build --- __mocks__/expo-web-browser.js | 3 + android/app/build.gradle | 4 +- .../rocket/reactnative/CustomTabsAndroid.java | 56 - .../rocket/reactnative/CustomTabsHelper.java | 24 - .../rocket/reactnative/MainApplication.java | 12 +- .../reactnative/RocketChatNativePackage.java | 33 - .../generated/BasePackageList.java | 16 + android/build.gradle | 1 + android/settings.gradle | 3 + app/constants/colors.js | 1 + app/nativeModules/CustomTabsAndroid.js | 9 - app/utils/openLink.js | 12 + app/utils/openLink/index.android.js | 5 - app/utils/openLink/index.ios.js | 7 - ios/Podfile | 8 +- ios/Podfile.lock | 114 +- .../EXAppLoaderInterface.h | 1 + .../EXAppLoaderProvider/EXAppLoaderProvider.h | 1 + .../EXAppRecordInterface.h | 1 + .../Headers/Private/EXConstants/EXConstants.h | 1 + .../Private/EXConstants/EXConstantsService.h | 1 + .../Private/EXFileSystem/EXDownloadDelegate.h | 1 + .../EXFileSystem/EXFilePermissionModule.h | 1 + .../Private/EXFileSystem/EXFileSystem.h | 1 + .../EXFileSystemAssetLibraryHandler.h | 1 + .../EXFileSystemLocalFileHandler.h | 1 + .../EXAudioRecordingPermissionRequester.h | 1 + .../EXPermissions/EXCalendarRequester.h | 1 + .../EXCameraPermissionRequester.h | 1 + .../EXPermissions/EXCameraRollRequester.h | 1 + .../EXPermissions/EXContactsRequester.h | 1 + .../EXPermissions/EXLocationRequester.h | 1 + .../Private/EXPermissions/EXPermissions.h | 1 + ...EXReactNativeUserNotificationCenterProxy.h | 1 + .../EXPermissions/EXRemindersRequester.h | 1 + .../EXRemoteNotificationRequester.h | 1 + .../EXSystemBrightnessRequester.h | 1 + .../EXUserNotificationRequester.h | 1 + .../Private/EXWebBrowser/EXWebBrowser.h | 1 + .../UMBarCodeScannerInterface.h | 1 + .../UMBarCodeScannerProviderInterface.h | 1 + .../UMCameraInterface/UMCameraInterface.h | 1 + .../UMConstantsInterface.h | 1 + .../Private/UMCore/UMAppDelegateWrapper.h | 1 + .../Private/UMCore/UMAppLifecycleListener.h | 1 + .../Private/UMCore/UMAppLifecycleService.h | 1 + ios/Pods/Headers/Private/UMCore/UMDefines.h | 1 + .../Headers/Private/UMCore/UMEventEmitter.h | 1 + .../Private/UMCore/UMEventEmitterService.h | 1 + .../Headers/Private/UMCore/UMExportedModule.h | 1 + .../Headers/Private/UMCore/UMInternalModule.h | 1 + .../UMCore/UMJavaScriptContextProvider.h | 1 + .../Headers/Private/UMCore/UMKernelService.h | 1 + .../Headers/Private/UMCore/UMLogHandler.h | 1 + .../Headers/Private/UMCore/UMLogManager.h | 1 + .../Headers/Private/UMCore/UMModuleRegistry.h | 1 + .../Private/UMCore/UMModuleRegistryConsumer.h | 1 + .../Private/UMCore/UMModuleRegistryDelegate.h | 1 + .../Private/UMCore/UMModuleRegistryProvider.h | 1 + .../Private/UMCore/UMSingletonModule.h | 1 + ios/Pods/Headers/Private/UMCore/UMUIManager.h | 1 + ios/Pods/Headers/Private/UMCore/UMUtilities.h | 1 + .../Private/UMCore/UMUtilitiesInterface.h | 1 + .../Headers/Private/UMCore/UMViewManager.h | 1 + .../UMFaceDetectorManager.h | 1 + .../UMFaceDetectorManagerProvider.h | 1 + .../UMFilePermissionModuleInterface.h | 1 + .../UMFileSystemInterface.h | 1 + .../UMFontInterface/UMFontManagerInterface.h | 1 + .../UMFontProcessorInterface.h | 1 + .../UMFontInterface/UMFontScalerInterface.h | 1 + .../UMFontScalersManagerInterface.h | 1 + .../UMImageLoaderInterface.h | 1 + .../UMPermissionsInterface.h | 1 + .../UMUserNotificationCenterProxyInterface.h | 1 + .../UMReactNativeAdapter/UMBridgeModule.h | 1 + .../UMModuleRegistryAdapter.h | 1 + .../UMNativeModulesProxy.h | 1 + .../UMReactNativeAdapter/UMReactFontManager.h | 1 + .../UMReactNativeAdapter/UMReactLogHandler.h | 1 + .../UMReactNativeAdapter.h | 1 + .../UMReactNativeEventEmitter.h | 1 + .../UMViewManagerAdapter.h | 1 + .../UMViewManagerAdapterClassesRegistry.h | 1 + .../UMAccelerometerInterface.h | 1 + .../UMSensorsInterface/UMBarometerInterface.h | 1 + .../UMDeviceMotionInterface.h | 1 + .../UMSensorsInterface/UMGyroscopeInterface.h | 1 + .../UMMagnetometerInterface.h | 1 + .../UMMagnetometerUncalibratedInterface.h | 1 + .../UMTaskConsumerInterface.h | 1 + .../UMTaskManagerInterface/UMTaskInterface.h | 1 + .../UMTaskLaunchReason.h | 1 + .../UMTaskManagerInterface.h | 1 + .../UMTaskServiceInterface.h | 1 + .../EXAppLoaderInterface.h | 1 + .../EXAppLoaderProvider/EXAppLoaderProvider.h | 1 + .../EXAppRecordInterface.h | 1 + .../Headers/Public/EXConstants/EXConstants.h | 1 + .../Public/EXConstants/EXConstantsService.h | 1 + .../Public/EXFileSystem/EXDownloadDelegate.h | 1 + .../EXFileSystem/EXFilePermissionModule.h | 1 + .../Public/EXFileSystem/EXFileSystem.h | 1 + .../EXFileSystemAssetLibraryHandler.h | 1 + .../EXFileSystemLocalFileHandler.h | 1 + .../EXAudioRecordingPermissionRequester.h | 1 + .../EXPermissions/EXCalendarRequester.h | 1 + .../EXCameraPermissionRequester.h | 1 + .../EXPermissions/EXCameraRollRequester.h | 1 + .../EXPermissions/EXContactsRequester.h | 1 + .../EXPermissions/EXLocationRequester.h | 1 + .../Public/EXPermissions/EXPermissions.h | 1 + ...EXReactNativeUserNotificationCenterProxy.h | 1 + .../EXPermissions/EXRemindersRequester.h | 1 + .../EXRemoteNotificationRequester.h | 1 + .../EXSystemBrightnessRequester.h | 1 + .../EXUserNotificationRequester.h | 1 + .../Public/EXWebBrowser/EXWebBrowser.h | 1 + .../UMBarCodeScannerInterface.h | 1 + .../UMBarCodeScannerProviderInterface.h | 1 + .../UMCameraInterface/UMCameraInterface.h | 1 + .../UMConstantsInterface.h | 1 + .../Public/UMCore/UMAppDelegateWrapper.h | 1 + .../Public/UMCore/UMAppLifecycleListener.h | 1 + .../Public/UMCore/UMAppLifecycleService.h | 1 + ios/Pods/Headers/Public/UMCore/UMDefines.h | 1 + .../Headers/Public/UMCore/UMEventEmitter.h | 1 + .../Public/UMCore/UMEventEmitterService.h | 1 + .../Headers/Public/UMCore/UMExportedModule.h | 1 + .../Headers/Public/UMCore/UMInternalModule.h | 1 + .../UMCore/UMJavaScriptContextProvider.h | 1 + .../Headers/Public/UMCore/UMKernelService.h | 1 + ios/Pods/Headers/Public/UMCore/UMLogHandler.h | 1 + ios/Pods/Headers/Public/UMCore/UMLogManager.h | 1 + .../Headers/Public/UMCore/UMModuleRegistry.h | 1 + .../Public/UMCore/UMModuleRegistryConsumer.h | 1 + .../Public/UMCore/UMModuleRegistryDelegate.h | 1 + .../Public/UMCore/UMModuleRegistryProvider.h | 1 + .../Headers/Public/UMCore/UMSingletonModule.h | 1 + ios/Pods/Headers/Public/UMCore/UMUIManager.h | 1 + ios/Pods/Headers/Public/UMCore/UMUtilities.h | 1 + .../Public/UMCore/UMUtilitiesInterface.h | 1 + .../Headers/Public/UMCore/UMViewManager.h | 1 + .../UMFaceDetectorManager.h | 1 + .../UMFaceDetectorManagerProvider.h | 1 + .../UMFilePermissionModuleInterface.h | 1 + .../UMFileSystemInterface.h | 1 + .../UMFontInterface/UMFontManagerInterface.h | 1 + .../UMFontProcessorInterface.h | 1 + .../UMFontInterface/UMFontScalerInterface.h | 1 + .../UMFontScalersManagerInterface.h | 1 + .../UMImageLoaderInterface.h | 1 + .../UMPermissionsInterface.h | 1 + .../UMUserNotificationCenterProxyInterface.h | 1 + .../UMReactNativeAdapter/UMBridgeModule.h | 1 + .../UMModuleRegistryAdapter.h | 1 + .../UMNativeModulesProxy.h | 1 + .../UMReactNativeAdapter/UMReactFontManager.h | 1 + .../UMReactNativeAdapter/UMReactLogHandler.h | 1 + .../UMReactNativeAdapter.h | 1 + .../UMReactNativeEventEmitter.h | 1 + .../UMViewManagerAdapter.h | 1 + .../UMViewManagerAdapterClassesRegistry.h | 1 + .../UMAccelerometerInterface.h | 1 + .../UMSensorsInterface/UMBarometerInterface.h | 1 + .../UMDeviceMotionInterface.h | 1 + .../UMSensorsInterface/UMGyroscopeInterface.h | 1 + .../UMMagnetometerInterface.h | 1 + .../UMMagnetometerUncalibratedInterface.h | 1 + .../UMTaskConsumerInterface.h | 1 + .../UMTaskManagerInterface/UMTaskInterface.h | 1 + .../UMTaskLaunchReason.h | 1 + .../UMTaskManagerInterface.h | 1 + .../UMTaskServiceInterface.h | 1 + .../EXAppLoaderProvider.podspec.json | 18 + .../Local Podspecs/EXConstants.podspec.json | 26 + .../Local Podspecs/EXFileSystem.podspec.json | 26 + .../Local Podspecs/EXPermissions.podspec.json | 26 + .../Local Podspecs/EXWebBrowser.podspec.json | 23 + .../UMBarCodeScannerInterface.podspec.json | 18 + .../UMCameraInterface.podspec.json | 18 + .../UMConstantsInterface.podspec.json | 18 + ios/Pods/Local Podspecs/UMCore.podspec.json | 18 + .../UMFaceDetectorInterface.podspec.json | 18 + .../UMFileSystemInterface.podspec.json | 18 + .../UMFontInterface.podspec.json | 18 + .../UMImageLoaderInterface.podspec.json | 18 + .../UMPermissionsInterface.podspec.json | 18 + .../UMReactNativeAdapter.podspec.json | 29 + .../UMSensorsInterface.podspec.json | 18 + .../UMTaskManagerInterface.podspec.json | 18 + ios/Pods/Manifest.lock | 114 +- ios/Pods/Pods.xcodeproj/project.pbxproj | 8727 +++++++++++------ .../EXAppLoaderProvider-dummy.m | 5 + .../EXAppLoaderProvider-prefix.pch | 12 + .../EXAppLoaderProvider.xcconfig | 9 + .../EXConstants/EXConstants-dummy.m | 5 + .../EXConstants/EXConstants-prefix.pch | 12 + .../EXConstants/EXConstants.xcconfig | 9 + .../EXFileSystem/EXFileSystem-dummy.m | 5 + .../EXFileSystem/EXFileSystem-prefix.pch | 12 + .../EXFileSystem/EXFileSystem.xcconfig | 9 + .../EXPermissions/EXPermissions-dummy.m | 5 + .../EXPermissions/EXPermissions-prefix.pch | 12 + .../EXPermissions/EXPermissions.xcconfig | 9 + .../EXWebBrowser/EXWebBrowser-dummy.m | 5 + .../EXWebBrowser/EXWebBrowser-prefix.pch | 12 + .../EXWebBrowser/EXWebBrowser.xcconfig | 9 + .../Pods-RocketChatRN.debug.xcconfig | 6 +- .../Pods-RocketChatRN.release.xcconfig | 6 +- .../UMBarCodeScannerInterface.xcconfig | 9 + .../UMCameraInterface.xcconfig | 9 + .../UMConstantsInterface.xcconfig | 9 + .../UMCore/UMCore-dummy.m | 5 + .../UMCore/UMCore-prefix.pch | 12 + .../UMCore/UMCore.xcconfig | 9 + .../UMFaceDetectorInterface.xcconfig | 9 + .../UMFileSystemInterface.xcconfig | 9 + .../UMFontInterface/UMFontInterface.xcconfig | 9 + .../UMImageLoaderInterface.xcconfig | 9 + .../UMPermissionsInterface.xcconfig | 9 + .../UMReactNativeAdapter-dummy.m | 5 + .../UMReactNativeAdapter-prefix.pch | 12 + .../UMReactNativeAdapter.xcconfig | 9 + .../UMSensorsInterface.xcconfig | 9 + .../UMTaskManagerInterface.xcconfig | 9 + ios/RocketChatRN.xcodeproj/project.pbxproj | 30 - ios/RocketChatRN/AppDelegate.h | 2 + ios/RocketChatRN/AppDelegate.m | 12 + ios/RocketChatRN/Info.plist | 10 + package.json | 3 +- yarn.lock | 160 +- 232 files changed, 6905 insertions(+), 3249 deletions(-) create mode 100644 __mocks__/expo-web-browser.js delete mode 100644 android/app/src/main/java/chat/rocket/reactnative/CustomTabsAndroid.java delete mode 100644 android/app/src/main/java/chat/rocket/reactnative/CustomTabsHelper.java delete mode 100644 android/app/src/main/java/chat/rocket/reactnative/RocketChatNativePackage.java create mode 100644 android/app/src/main/java/chat/rocket/reactnative/generated/BasePackageList.java delete mode 100644 app/nativeModules/CustomTabsAndroid.js create mode 100644 app/utils/openLink.js delete mode 100644 app/utils/openLink/index.android.js delete mode 100644 app/utils/openLink/index.ios.js create mode 120000 ios/Pods/Headers/Private/EXAppLoaderProvider/EXAppLoaderInterface.h create mode 120000 ios/Pods/Headers/Private/EXAppLoaderProvider/EXAppLoaderProvider.h create mode 120000 ios/Pods/Headers/Private/EXAppLoaderProvider/EXAppRecordInterface.h create mode 120000 ios/Pods/Headers/Private/EXConstants/EXConstants.h create mode 120000 ios/Pods/Headers/Private/EXConstants/EXConstantsService.h create mode 120000 ios/Pods/Headers/Private/EXFileSystem/EXDownloadDelegate.h create mode 120000 ios/Pods/Headers/Private/EXFileSystem/EXFilePermissionModule.h create mode 120000 ios/Pods/Headers/Private/EXFileSystem/EXFileSystem.h create mode 120000 ios/Pods/Headers/Private/EXFileSystem/EXFileSystemAssetLibraryHandler.h create mode 120000 ios/Pods/Headers/Private/EXFileSystem/EXFileSystemLocalFileHandler.h create mode 120000 ios/Pods/Headers/Private/EXPermissions/EXAudioRecordingPermissionRequester.h create mode 120000 ios/Pods/Headers/Private/EXPermissions/EXCalendarRequester.h create mode 120000 ios/Pods/Headers/Private/EXPermissions/EXCameraPermissionRequester.h create mode 120000 ios/Pods/Headers/Private/EXPermissions/EXCameraRollRequester.h create mode 120000 ios/Pods/Headers/Private/EXPermissions/EXContactsRequester.h create mode 120000 ios/Pods/Headers/Private/EXPermissions/EXLocationRequester.h create mode 120000 ios/Pods/Headers/Private/EXPermissions/EXPermissions.h create mode 120000 ios/Pods/Headers/Private/EXPermissions/EXReactNativeUserNotificationCenterProxy.h create mode 120000 ios/Pods/Headers/Private/EXPermissions/EXRemindersRequester.h create mode 120000 ios/Pods/Headers/Private/EXPermissions/EXRemoteNotificationRequester.h create mode 120000 ios/Pods/Headers/Private/EXPermissions/EXSystemBrightnessRequester.h create mode 120000 ios/Pods/Headers/Private/EXPermissions/EXUserNotificationRequester.h create mode 120000 ios/Pods/Headers/Private/EXWebBrowser/EXWebBrowser.h create mode 120000 ios/Pods/Headers/Private/UMBarCodeScannerInterface/UMBarCodeScannerInterface.h create mode 120000 ios/Pods/Headers/Private/UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h create mode 120000 ios/Pods/Headers/Private/UMCameraInterface/UMCameraInterface.h create mode 120000 ios/Pods/Headers/Private/UMConstantsInterface/UMConstantsInterface.h create mode 120000 ios/Pods/Headers/Private/UMCore/UMAppDelegateWrapper.h create mode 120000 ios/Pods/Headers/Private/UMCore/UMAppLifecycleListener.h create mode 120000 ios/Pods/Headers/Private/UMCore/UMAppLifecycleService.h create mode 120000 ios/Pods/Headers/Private/UMCore/UMDefines.h create mode 120000 ios/Pods/Headers/Private/UMCore/UMEventEmitter.h create mode 120000 ios/Pods/Headers/Private/UMCore/UMEventEmitterService.h create mode 120000 ios/Pods/Headers/Private/UMCore/UMExportedModule.h create mode 120000 ios/Pods/Headers/Private/UMCore/UMInternalModule.h create mode 120000 ios/Pods/Headers/Private/UMCore/UMJavaScriptContextProvider.h create mode 120000 ios/Pods/Headers/Private/UMCore/UMKernelService.h create mode 120000 ios/Pods/Headers/Private/UMCore/UMLogHandler.h create mode 120000 ios/Pods/Headers/Private/UMCore/UMLogManager.h create mode 120000 ios/Pods/Headers/Private/UMCore/UMModuleRegistry.h create mode 120000 ios/Pods/Headers/Private/UMCore/UMModuleRegistryConsumer.h create mode 120000 ios/Pods/Headers/Private/UMCore/UMModuleRegistryDelegate.h create mode 120000 ios/Pods/Headers/Private/UMCore/UMModuleRegistryProvider.h create mode 120000 ios/Pods/Headers/Private/UMCore/UMSingletonModule.h create mode 120000 ios/Pods/Headers/Private/UMCore/UMUIManager.h create mode 120000 ios/Pods/Headers/Private/UMCore/UMUtilities.h create mode 120000 ios/Pods/Headers/Private/UMCore/UMUtilitiesInterface.h create mode 120000 ios/Pods/Headers/Private/UMCore/UMViewManager.h create mode 120000 ios/Pods/Headers/Private/UMFaceDetectorInterface/UMFaceDetectorManager.h create mode 120000 ios/Pods/Headers/Private/UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h create mode 120000 ios/Pods/Headers/Private/UMFileSystemInterface/UMFilePermissionModuleInterface.h create mode 120000 ios/Pods/Headers/Private/UMFileSystemInterface/UMFileSystemInterface.h create mode 120000 ios/Pods/Headers/Private/UMFontInterface/UMFontManagerInterface.h create mode 120000 ios/Pods/Headers/Private/UMFontInterface/UMFontProcessorInterface.h create mode 120000 ios/Pods/Headers/Private/UMFontInterface/UMFontScalerInterface.h create mode 120000 ios/Pods/Headers/Private/UMFontInterface/UMFontScalersManagerInterface.h create mode 120000 ios/Pods/Headers/Private/UMImageLoaderInterface/UMImageLoaderInterface.h create mode 120000 ios/Pods/Headers/Private/UMPermissionsInterface/UMPermissionsInterface.h create mode 120000 ios/Pods/Headers/Private/UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h create mode 120000 ios/Pods/Headers/Private/UMReactNativeAdapter/UMBridgeModule.h create mode 120000 ios/Pods/Headers/Private/UMReactNativeAdapter/UMModuleRegistryAdapter.h create mode 120000 ios/Pods/Headers/Private/UMReactNativeAdapter/UMNativeModulesProxy.h create mode 120000 ios/Pods/Headers/Private/UMReactNativeAdapter/UMReactFontManager.h create mode 120000 ios/Pods/Headers/Private/UMReactNativeAdapter/UMReactLogHandler.h create mode 120000 ios/Pods/Headers/Private/UMReactNativeAdapter/UMReactNativeAdapter.h create mode 120000 ios/Pods/Headers/Private/UMReactNativeAdapter/UMReactNativeEventEmitter.h create mode 120000 ios/Pods/Headers/Private/UMReactNativeAdapter/UMViewManagerAdapter.h create mode 120000 ios/Pods/Headers/Private/UMReactNativeAdapter/UMViewManagerAdapterClassesRegistry.h create mode 120000 ios/Pods/Headers/Private/UMSensorsInterface/UMAccelerometerInterface.h create mode 120000 ios/Pods/Headers/Private/UMSensorsInterface/UMBarometerInterface.h create mode 120000 ios/Pods/Headers/Private/UMSensorsInterface/UMDeviceMotionInterface.h create mode 120000 ios/Pods/Headers/Private/UMSensorsInterface/UMGyroscopeInterface.h create mode 120000 ios/Pods/Headers/Private/UMSensorsInterface/UMMagnetometerInterface.h create mode 120000 ios/Pods/Headers/Private/UMSensorsInterface/UMMagnetometerUncalibratedInterface.h create mode 120000 ios/Pods/Headers/Private/UMTaskManagerInterface/UMTaskConsumerInterface.h create mode 120000 ios/Pods/Headers/Private/UMTaskManagerInterface/UMTaskInterface.h create mode 120000 ios/Pods/Headers/Private/UMTaskManagerInterface/UMTaskLaunchReason.h create mode 120000 ios/Pods/Headers/Private/UMTaskManagerInterface/UMTaskManagerInterface.h create mode 120000 ios/Pods/Headers/Private/UMTaskManagerInterface/UMTaskServiceInterface.h create mode 120000 ios/Pods/Headers/Public/EXAppLoaderProvider/EXAppLoaderInterface.h create mode 120000 ios/Pods/Headers/Public/EXAppLoaderProvider/EXAppLoaderProvider.h create mode 120000 ios/Pods/Headers/Public/EXAppLoaderProvider/EXAppRecordInterface.h create mode 120000 ios/Pods/Headers/Public/EXConstants/EXConstants.h create mode 120000 ios/Pods/Headers/Public/EXConstants/EXConstantsService.h create mode 120000 ios/Pods/Headers/Public/EXFileSystem/EXDownloadDelegate.h create mode 120000 ios/Pods/Headers/Public/EXFileSystem/EXFilePermissionModule.h create mode 120000 ios/Pods/Headers/Public/EXFileSystem/EXFileSystem.h create mode 120000 ios/Pods/Headers/Public/EXFileSystem/EXFileSystemAssetLibraryHandler.h create mode 120000 ios/Pods/Headers/Public/EXFileSystem/EXFileSystemLocalFileHandler.h create mode 120000 ios/Pods/Headers/Public/EXPermissions/EXAudioRecordingPermissionRequester.h create mode 120000 ios/Pods/Headers/Public/EXPermissions/EXCalendarRequester.h create mode 120000 ios/Pods/Headers/Public/EXPermissions/EXCameraPermissionRequester.h create mode 120000 ios/Pods/Headers/Public/EXPermissions/EXCameraRollRequester.h create mode 120000 ios/Pods/Headers/Public/EXPermissions/EXContactsRequester.h create mode 120000 ios/Pods/Headers/Public/EXPermissions/EXLocationRequester.h create mode 120000 ios/Pods/Headers/Public/EXPermissions/EXPermissions.h create mode 120000 ios/Pods/Headers/Public/EXPermissions/EXReactNativeUserNotificationCenterProxy.h create mode 120000 ios/Pods/Headers/Public/EXPermissions/EXRemindersRequester.h create mode 120000 ios/Pods/Headers/Public/EXPermissions/EXRemoteNotificationRequester.h create mode 120000 ios/Pods/Headers/Public/EXPermissions/EXSystemBrightnessRequester.h create mode 120000 ios/Pods/Headers/Public/EXPermissions/EXUserNotificationRequester.h create mode 120000 ios/Pods/Headers/Public/EXWebBrowser/EXWebBrowser.h create mode 120000 ios/Pods/Headers/Public/UMBarCodeScannerInterface/UMBarCodeScannerInterface.h create mode 120000 ios/Pods/Headers/Public/UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h create mode 120000 ios/Pods/Headers/Public/UMCameraInterface/UMCameraInterface.h create mode 120000 ios/Pods/Headers/Public/UMConstantsInterface/UMConstantsInterface.h create mode 120000 ios/Pods/Headers/Public/UMCore/UMAppDelegateWrapper.h create mode 120000 ios/Pods/Headers/Public/UMCore/UMAppLifecycleListener.h create mode 120000 ios/Pods/Headers/Public/UMCore/UMAppLifecycleService.h create mode 120000 ios/Pods/Headers/Public/UMCore/UMDefines.h create mode 120000 ios/Pods/Headers/Public/UMCore/UMEventEmitter.h create mode 120000 ios/Pods/Headers/Public/UMCore/UMEventEmitterService.h create mode 120000 ios/Pods/Headers/Public/UMCore/UMExportedModule.h create mode 120000 ios/Pods/Headers/Public/UMCore/UMInternalModule.h create mode 120000 ios/Pods/Headers/Public/UMCore/UMJavaScriptContextProvider.h create mode 120000 ios/Pods/Headers/Public/UMCore/UMKernelService.h create mode 120000 ios/Pods/Headers/Public/UMCore/UMLogHandler.h create mode 120000 ios/Pods/Headers/Public/UMCore/UMLogManager.h create mode 120000 ios/Pods/Headers/Public/UMCore/UMModuleRegistry.h create mode 120000 ios/Pods/Headers/Public/UMCore/UMModuleRegistryConsumer.h create mode 120000 ios/Pods/Headers/Public/UMCore/UMModuleRegistryDelegate.h create mode 120000 ios/Pods/Headers/Public/UMCore/UMModuleRegistryProvider.h create mode 120000 ios/Pods/Headers/Public/UMCore/UMSingletonModule.h create mode 120000 ios/Pods/Headers/Public/UMCore/UMUIManager.h create mode 120000 ios/Pods/Headers/Public/UMCore/UMUtilities.h create mode 120000 ios/Pods/Headers/Public/UMCore/UMUtilitiesInterface.h create mode 120000 ios/Pods/Headers/Public/UMCore/UMViewManager.h create mode 120000 ios/Pods/Headers/Public/UMFaceDetectorInterface/UMFaceDetectorManager.h create mode 120000 ios/Pods/Headers/Public/UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h create mode 120000 ios/Pods/Headers/Public/UMFileSystemInterface/UMFilePermissionModuleInterface.h create mode 120000 ios/Pods/Headers/Public/UMFileSystemInterface/UMFileSystemInterface.h create mode 120000 ios/Pods/Headers/Public/UMFontInterface/UMFontManagerInterface.h create mode 120000 ios/Pods/Headers/Public/UMFontInterface/UMFontProcessorInterface.h create mode 120000 ios/Pods/Headers/Public/UMFontInterface/UMFontScalerInterface.h create mode 120000 ios/Pods/Headers/Public/UMFontInterface/UMFontScalersManagerInterface.h create mode 120000 ios/Pods/Headers/Public/UMImageLoaderInterface/UMImageLoaderInterface.h create mode 120000 ios/Pods/Headers/Public/UMPermissionsInterface/UMPermissionsInterface.h create mode 120000 ios/Pods/Headers/Public/UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h create mode 120000 ios/Pods/Headers/Public/UMReactNativeAdapter/UMBridgeModule.h create mode 120000 ios/Pods/Headers/Public/UMReactNativeAdapter/UMModuleRegistryAdapter.h create mode 120000 ios/Pods/Headers/Public/UMReactNativeAdapter/UMNativeModulesProxy.h create mode 120000 ios/Pods/Headers/Public/UMReactNativeAdapter/UMReactFontManager.h create mode 120000 ios/Pods/Headers/Public/UMReactNativeAdapter/UMReactLogHandler.h create mode 120000 ios/Pods/Headers/Public/UMReactNativeAdapter/UMReactNativeAdapter.h create mode 120000 ios/Pods/Headers/Public/UMReactNativeAdapter/UMReactNativeEventEmitter.h create mode 120000 ios/Pods/Headers/Public/UMReactNativeAdapter/UMViewManagerAdapter.h create mode 120000 ios/Pods/Headers/Public/UMReactNativeAdapter/UMViewManagerAdapterClassesRegistry.h create mode 120000 ios/Pods/Headers/Public/UMSensorsInterface/UMAccelerometerInterface.h create mode 120000 ios/Pods/Headers/Public/UMSensorsInterface/UMBarometerInterface.h create mode 120000 ios/Pods/Headers/Public/UMSensorsInterface/UMDeviceMotionInterface.h create mode 120000 ios/Pods/Headers/Public/UMSensorsInterface/UMGyroscopeInterface.h create mode 120000 ios/Pods/Headers/Public/UMSensorsInterface/UMMagnetometerInterface.h create mode 120000 ios/Pods/Headers/Public/UMSensorsInterface/UMMagnetometerUncalibratedInterface.h create mode 120000 ios/Pods/Headers/Public/UMTaskManagerInterface/UMTaskConsumerInterface.h create mode 120000 ios/Pods/Headers/Public/UMTaskManagerInterface/UMTaskInterface.h create mode 120000 ios/Pods/Headers/Public/UMTaskManagerInterface/UMTaskLaunchReason.h create mode 120000 ios/Pods/Headers/Public/UMTaskManagerInterface/UMTaskManagerInterface.h create mode 120000 ios/Pods/Headers/Public/UMTaskManagerInterface/UMTaskServiceInterface.h create mode 100644 ios/Pods/Local Podspecs/EXAppLoaderProvider.podspec.json create mode 100644 ios/Pods/Local Podspecs/EXConstants.podspec.json create mode 100644 ios/Pods/Local Podspecs/EXFileSystem.podspec.json create mode 100644 ios/Pods/Local Podspecs/EXPermissions.podspec.json create mode 100644 ios/Pods/Local Podspecs/EXWebBrowser.podspec.json create mode 100644 ios/Pods/Local Podspecs/UMBarCodeScannerInterface.podspec.json create mode 100644 ios/Pods/Local Podspecs/UMCameraInterface.podspec.json create mode 100644 ios/Pods/Local Podspecs/UMConstantsInterface.podspec.json create mode 100644 ios/Pods/Local Podspecs/UMCore.podspec.json create mode 100644 ios/Pods/Local Podspecs/UMFaceDetectorInterface.podspec.json create mode 100644 ios/Pods/Local Podspecs/UMFileSystemInterface.podspec.json create mode 100644 ios/Pods/Local Podspecs/UMFontInterface.podspec.json create mode 100644 ios/Pods/Local Podspecs/UMImageLoaderInterface.podspec.json create mode 100644 ios/Pods/Local Podspecs/UMPermissionsInterface.podspec.json create mode 100644 ios/Pods/Local Podspecs/UMReactNativeAdapter.podspec.json create mode 100644 ios/Pods/Local Podspecs/UMSensorsInterface.podspec.json create mode 100644 ios/Pods/Local Podspecs/UMTaskManagerInterface.podspec.json create mode 100644 ios/Pods/Target Support Files/EXAppLoaderProvider/EXAppLoaderProvider-dummy.m create mode 100644 ios/Pods/Target Support Files/EXAppLoaderProvider/EXAppLoaderProvider-prefix.pch create mode 100644 ios/Pods/Target Support Files/EXAppLoaderProvider/EXAppLoaderProvider.xcconfig create mode 100644 ios/Pods/Target Support Files/EXConstants/EXConstants-dummy.m create mode 100644 ios/Pods/Target Support Files/EXConstants/EXConstants-prefix.pch create mode 100644 ios/Pods/Target Support Files/EXConstants/EXConstants.xcconfig create mode 100644 ios/Pods/Target Support Files/EXFileSystem/EXFileSystem-dummy.m create mode 100644 ios/Pods/Target Support Files/EXFileSystem/EXFileSystem-prefix.pch create mode 100644 ios/Pods/Target Support Files/EXFileSystem/EXFileSystem.xcconfig create mode 100644 ios/Pods/Target Support Files/EXPermissions/EXPermissions-dummy.m create mode 100644 ios/Pods/Target Support Files/EXPermissions/EXPermissions-prefix.pch create mode 100644 ios/Pods/Target Support Files/EXPermissions/EXPermissions.xcconfig create mode 100644 ios/Pods/Target Support Files/EXWebBrowser/EXWebBrowser-dummy.m create mode 100644 ios/Pods/Target Support Files/EXWebBrowser/EXWebBrowser-prefix.pch create mode 100644 ios/Pods/Target Support Files/EXWebBrowser/EXWebBrowser.xcconfig create mode 100644 ios/Pods/Target Support Files/UMBarCodeScannerInterface/UMBarCodeScannerInterface.xcconfig create mode 100644 ios/Pods/Target Support Files/UMCameraInterface/UMCameraInterface.xcconfig create mode 100644 ios/Pods/Target Support Files/UMConstantsInterface/UMConstantsInterface.xcconfig create mode 100644 ios/Pods/Target Support Files/UMCore/UMCore-dummy.m create mode 100644 ios/Pods/Target Support Files/UMCore/UMCore-prefix.pch create mode 100644 ios/Pods/Target Support Files/UMCore/UMCore.xcconfig create mode 100644 ios/Pods/Target Support Files/UMFaceDetectorInterface/UMFaceDetectorInterface.xcconfig create mode 100644 ios/Pods/Target Support Files/UMFileSystemInterface/UMFileSystemInterface.xcconfig create mode 100644 ios/Pods/Target Support Files/UMFontInterface/UMFontInterface.xcconfig create mode 100644 ios/Pods/Target Support Files/UMImageLoaderInterface/UMImageLoaderInterface.xcconfig create mode 100644 ios/Pods/Target Support Files/UMPermissionsInterface/UMPermissionsInterface.xcconfig create mode 100644 ios/Pods/Target Support Files/UMReactNativeAdapter/UMReactNativeAdapter-dummy.m create mode 100644 ios/Pods/Target Support Files/UMReactNativeAdapter/UMReactNativeAdapter-prefix.pch create mode 100644 ios/Pods/Target Support Files/UMReactNativeAdapter/UMReactNativeAdapter.xcconfig create mode 100644 ios/Pods/Target Support Files/UMSensorsInterface/UMSensorsInterface.xcconfig create mode 100644 ios/Pods/Target Support Files/UMTaskManagerInterface/UMTaskManagerInterface.xcconfig diff --git a/__mocks__/expo-web-browser.js b/__mocks__/expo-web-browser.js new file mode 100644 index 000000000..3e5611b84 --- /dev/null +++ b/__mocks__/expo-web-browser.js @@ -0,0 +1,3 @@ +export default { + openBrowserAsync: () => '' +}; diff --git a/android/app/build.gradle b/android/app/build.gradle index 7f45c1d1b..e531214f1 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -80,6 +80,7 @@ project.ext.react = [ ] apply from: "../../node_modules/react-native/react.gradle" +apply from: '../../node_modules/react-native-unimodules/gradle.groovy' /** * Set this to true to create two separate APKs instead of one: @@ -99,7 +100,7 @@ def enableProguardInReleaseBuilds = false android { compileSdkVersion rootProject.ext.compileSdkVersion - compileOptions { + compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } @@ -171,6 +172,7 @@ android { } dependencies { + addUnimodulesDependencies() implementation "org.webkit:android-jsc:r241213" implementation project(':react-native-firebase') implementation project(':react-native-webview') diff --git a/android/app/src/main/java/chat/rocket/reactnative/CustomTabsAndroid.java b/android/app/src/main/java/chat/rocket/reactnative/CustomTabsAndroid.java deleted file mode 100644 index e0a9db1fe..000000000 --- a/android/app/src/main/java/chat/rocket/reactnative/CustomTabsAndroid.java +++ /dev/null @@ -1,56 +0,0 @@ -package chat.rocket.reactnative; - -import android.content.Intent; -import android.content.pm.ResolveInfo; -import android.net.Uri; -import android.support.customtabs.CustomTabsIntent; -import android.widget.Toast; - -import com.facebook.react.bridge.ReactApplicationContext; -import com.facebook.react.bridge.ReactContextBaseJavaModule; -import com.facebook.react.bridge.ReactMethod; - -import java.util.List; - -import chat.rocket.reactnative.R; - -/** - * Launches custom tabs. - */ - -public class CustomTabsAndroid extends ReactContextBaseJavaModule { - - - public CustomTabsAndroid(ReactApplicationContext reactContext) { - super(reactContext); - } - - @Override - public String getName() { - return "CustomTabsAndroid"; - } - - @ReactMethod - public void openURL(String url) throws NullPointerException { - CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder(); - CustomTabsIntent customTabsIntent = builder.build(); - - if (CustomTabsHelper.isChromeCustomTabsSupported(getReactApplicationContext())) { - customTabsIntent.launchUrl(getReactApplicationContext().getCurrentActivity(), Uri.parse(url)); - } else { - //open in browser - Intent i = new Intent(Intent.ACTION_VIEW); - i.setData(Uri.parse(url)); - //ensure browser is present - final List customTabsApps = getReactApplicationContext() - .getCurrentActivity().getPackageManager().queryIntentActivities(i, 0); - - if (customTabsApps.size() > 0) { - getReactApplicationContext().startActivity(i); - } else { - // no browser - Toast.makeText(getReactApplicationContext(), R.string.no_browser_found, Toast.LENGTH_SHORT).show(); - } - } - } -} diff --git a/android/app/src/main/java/chat/rocket/reactnative/CustomTabsHelper.java b/android/app/src/main/java/chat/rocket/reactnative/CustomTabsHelper.java deleted file mode 100644 index b7f3eb72f..000000000 --- a/android/app/src/main/java/chat/rocket/reactnative/CustomTabsHelper.java +++ /dev/null @@ -1,24 +0,0 @@ -package chat.rocket.reactnative; - -import android.content.Context; -import android.content.Intent; -import android.content.pm.ResolveInfo; - -import java.util.List; - -/** - * Contains helper methods for custom tabs. - */ - -public class CustomTabsHelper { - - private static final String SERVICE_ACTION = "android.support.customtabs.action.CustomTabsService"; - private static final String CHROME_PACKAGE = "com.android.chrome"; - - public static boolean isChromeCustomTabsSupported(final Context context) { - Intent serviceIntent = new Intent(SERVICE_ACTION); - serviceIntent.setPackage(CHROME_PACKAGE); - List resolveInfos = context.getPackageManager().queryIntentServices(serviceIntent, 0); - return !(resolveInfos == null || resolveInfos.isEmpty()); - } -} diff --git a/android/app/src/main/java/chat/rocket/reactnative/MainApplication.java b/android/app/src/main/java/chat/rocket/reactnative/MainApplication.java index 7eb74ee57..a06fd4558 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/MainApplication.java +++ b/android/app/src/main/java/chat/rocket/reactnative/MainApplication.java @@ -35,6 +35,12 @@ import com.actionsheet.ActionSheetPackage; import io.realm.react.RealmReactPackage; import com.swmansion.rnscreens.RNScreensPackage; +import chat.rocket.reactnative.generated.BasePackageList; + +import org.unimodules.adapters.react.ModuleRegistryAdapter; +import org.unimodules.adapters.react.ReactModuleRegistryProvider; +import org.unimodules.core.interfaces.SingletonModule; + import android.content.Context; import android.os.Bundle; @@ -43,6 +49,8 @@ import java.util.List; public class MainApplication extends Application implements ReactApplication, INotificationsApplication { + private final ReactModuleRegistryProvider mModuleRegistryProvider = new ReactModuleRegistryProvider(new BasePackageList().getPackageList(), Arrays.asList()); + private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { @Override public boolean getUseDeveloperSupport() { @@ -71,10 +79,10 @@ public class MainApplication extends Application implements ReactApplication, IN new ReactVideoPackage(), new ReactNativeAudioPackage(), new KeyboardInputPackage(MainApplication.this), - new RocketChatNativePackage(), new FastImageViewPackage(), new RNI18nPackage(), - new RNNotificationsPackage(MainApplication.this) + new RNNotificationsPackage(MainApplication.this), + new ModuleRegistryAdapter(mModuleRegistryProvider) ); } diff --git a/android/app/src/main/java/chat/rocket/reactnative/RocketChatNativePackage.java b/android/app/src/main/java/chat/rocket/reactnative/RocketChatNativePackage.java deleted file mode 100644 index 16cef0197..000000000 --- a/android/app/src/main/java/chat/rocket/reactnative/RocketChatNativePackage.java +++ /dev/null @@ -1,33 +0,0 @@ -package chat.rocket.reactnative; - -import com.facebook.react.ReactPackage; -import com.facebook.react.bridge.JavaScriptModule; -import com.facebook.react.bridge.NativeModule; -import com.facebook.react.bridge.ReactApplicationContext; -import com.facebook.react.uimanager.ViewManager; - -import java.util.ArrayList; -import java.util.Collections; -import java.util.List; - -public class RocketChatNativePackage implements ReactPackage { - - public List> createJSModules() { - return Collections.emptyList(); - } - - @Override - public List createViewManagers(ReactApplicationContext reactContext) { - List managers = new ArrayList<>(); - return managers; - } - - @Override - public List createNativeModules( - ReactApplicationContext reactContext) { - List modules = new ArrayList<>(); - modules.add(new CustomTabsAndroid(reactContext)); - return modules; - } - -} 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 new file mode 100644 index 000000000..5e9c77710 --- /dev/null +++ b/android/app/src/main/java/chat/rocket/reactnative/generated/BasePackageList.java @@ -0,0 +1,16 @@ +package chat.rocket.reactnative.generated; + +import java.util.Arrays; +import java.util.List; +import org.unimodules.core.interfaces.Package; + +public class BasePackageList { + public List getPackageList() { + return Arrays.asList( + new expo.modules.constants.ConstantsPackage(), + new expo.modules.filesystem.FileSystemPackage(), + new expo.modules.permissions.PermissionsPackage(), + new expo.modules.webbrowser.WebBrowserPackage() + ); + } +} diff --git a/android/build.gradle b/android/build.gradle index eb8c903a4..e2c515e1e 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -6,6 +6,7 @@ buildscript { compileSdkVersion = 28 targetSdkVersion = 28 supportLibVersion = "28.0.0" + glideVersion = "4.9.0" } repositories { mavenLocal() diff --git a/android/settings.gradle b/android/settings.gradle index a74415f23..6018bd529 100644 --- a/android/settings.gradle +++ b/android/settings.gradle @@ -1,3 +1,6 @@ +apply from: '../node_modules/react-native-unimodules/gradle.groovy' +includeUnimodulesProjects() + rootProject.name = 'RocketChatRN' include ':react-native-firebase' project(':react-native-firebase').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-firebase/android') diff --git a/app/constants/colors.js b/app/constants/colors.js index e572bd278..a1fa7cee7 100644 --- a/app/constants/colors.js +++ b/app/constants/colors.js @@ -24,3 +24,4 @@ export const STATUS_COLORS = { export const HEADER_BACKGROUND = isIOS ? '#f8f8f8' : '#2F343D'; export const HEADER_TITLE = isIOS ? COLOR_TITLE : COLOR_WHITE; export const HEADER_BACK = isIOS ? COLOR_PRIMARY : COLOR_WHITE; +export const HEADER_TINT = isIOS ? COLOR_PRIMARY : COLOR_WHITE; diff --git a/app/nativeModules/CustomTabsAndroid.js b/app/nativeModules/CustomTabsAndroid.js deleted file mode 100644 index 54cd78c2c..000000000 --- a/app/nativeModules/CustomTabsAndroid.js +++ /dev/null @@ -1,9 +0,0 @@ -/** - * This exposes the native CustomTabsAndroid module as a JS module. This has a - * function 'openURL' which takes the following parameters: - * - * 1. String url: A url to be opened in customTabs - */ -import { NativeModules } from 'react-native'; - -module.exports = NativeModules.CustomTabsAndroid; diff --git a/app/utils/openLink.js b/app/utils/openLink.js new file mode 100644 index 000000000..36988d293 --- /dev/null +++ b/app/utils/openLink.js @@ -0,0 +1,12 @@ +import * as WebBrowser from 'expo-web-browser'; + +import { HEADER_TINT, HEADER_BACKGROUND } from '../constants/colors'; + +const openLink = url => WebBrowser.openBrowserAsync(url, { + toolbarColor: HEADER_BACKGROUND, + controlsColor: HEADER_TINT, + collapseToolbar: true, + showTitle: true +}); + +export default openLink; diff --git a/app/utils/openLink/index.android.js b/app/utils/openLink/index.android.js deleted file mode 100644 index 804318476..000000000 --- a/app/utils/openLink/index.android.js +++ /dev/null @@ -1,5 +0,0 @@ -import CustomTabsAndroid from '../../nativeModules/CustomTabsAndroid'; - -const openLink = url => CustomTabsAndroid.openURL(url); - -export default openLink; diff --git a/app/utils/openLink/index.ios.js b/app/utils/openLink/index.ios.js deleted file mode 100644 index efa59b5f8..000000000 --- a/app/utils/openLink/index.ios.js +++ /dev/null @@ -1,7 +0,0 @@ -import SafariView from 'react-native-safari-view'; - -import { HEADER_BACK } from '../../constants/colors'; - -const openLink = url => SafariView.show({ url, fromBottom: false, tintColor: HEADER_BACK }); - -export default openLink; diff --git a/ios/Podfile b/ios/Podfile index 627b4cc72..f5552328a 100644 --- a/ios/Podfile +++ b/ios/Podfile @@ -1,5 +1,7 @@ -# Uncomment the next line to define a global platform for your project -platform :ios, '9.0' +platform :ios, '10.0' + +require_relative '../node_modules/react-native-unimodules/cocoapods.rb' + target 'RocketChatRN' do # Uncomment the next line if you're using Swift or would like to use dynamic frameworks @@ -44,6 +46,8 @@ target 'RocketChatRN' do pod 'GoogleIDFASupport', '~> 3.14.0' pod 'Firebase/Performance', '~> 5.20.1' + use_unimodules! + end post_install do |installer| diff --git a/ios/Podfile.lock b/ios/Podfile.lock index a989782ab..82cc85994 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -3,6 +3,18 @@ PODS: - Crashlytics (3.12.0): - Fabric (~> 1.9.0) - DoubleConversion (1.1.6) + - EXAppLoaderProvider (5.0.1) + - EXConstants (5.0.1): + - UMConstantsInterface + - UMCore + - EXFileSystem (5.0.1): + - UMCore + - UMFileSystemInterface + - EXPermissions (5.0.1): + - UMCore + - UMPermissionsInterface + - EXWebBrowser (5.0.3): + - UMCore - Fabric (1.9.0) - Firebase/Core (5.20.2): - Firebase/CoreOnly @@ -136,11 +148,31 @@ PODS: - RNScreens (1.0.0-alpha.22): - React - RSKImageCropper (2.2.1) + - UMBarCodeScannerInterface (2.0.1) + - UMCameraInterface (2.0.1) + - UMConstantsInterface (2.0.1) + - UMCore (2.0.1) + - UMFaceDetectorInterface (2.0.1) + - UMFileSystemInterface (2.0.1) + - UMFontInterface (2.0.1) + - UMImageLoaderInterface (2.0.1) + - UMPermissionsInterface (2.0.1) + - UMReactNativeAdapter (2.0.1): + - React + - UMCore + - UMFontInterface + - UMSensorsInterface (2.0.1) + - UMTaskManagerInterface (2.0.1) - yoga (0.59.8.React) DEPENDENCIES: - Crashlytics (~> 3.12.0) - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`) + - EXAppLoaderProvider (from `../node_modules/expo-app-loader-provider/ios`) + - EXConstants (from `../node_modules/expo-constants/ios`) + - EXFileSystem (from `../node_modules/expo-file-system/ios`) + - EXPermissions (from `../node_modules/expo-permissions/ios`) + - EXWebBrowser (from `../node_modules/expo-web-browser/ios`) - Fabric (~> 1.9.0) - Firebase/Core (~> 5.20.1) - Firebase/Performance (~> 5.20.1) @@ -163,6 +195,18 @@ DEPENDENCIES: - RNDeviceInfo (from `../node_modules/react-native-device-info`) - RNImageCropPicker (from `../node_modules/react-native-image-crop-picker`) - RNScreens (from `../node_modules/react-native-screens`) + - UMBarCodeScannerInterface (from `../node_modules/unimodules-barcode-scanner-interface/ios`) + - UMCameraInterface (from `../node_modules/unimodules-camera-interface/ios`) + - UMConstantsInterface (from `../node_modules/unimodules-constants-interface/ios`) + - "UMCore (from `../node_modules/@unimodules/core/ios`)" + - UMFaceDetectorInterface (from `../node_modules/unimodules-face-detector-interface/ios`) + - UMFileSystemInterface (from `../node_modules/unimodules-file-system-interface/ios`) + - UMFontInterface (from `../node_modules/unimodules-font-interface/ios`) + - UMImageLoaderInterface (from `../node_modules/unimodules-image-loader-interface/ios`) + - UMPermissionsInterface (from `../node_modules/unimodules-permissions-interface/ios`) + - "UMReactNativeAdapter (from `../node_modules/@unimodules/react-native-adapter/ios`)" + - UMSensorsInterface (from `../node_modules/unimodules-sensors-interface/ios`) + - UMTaskManagerInterface (from `../node_modules/unimodules-task-manager-interface/ios`) - yoga (from `../node_modules/react-native/ReactCommon/yoga`) SPEC REPOS: @@ -190,6 +234,21 @@ SPEC REPOS: EXTERNAL SOURCES: DoubleConversion: :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec" + EXAppLoaderProvider: + :path: !ruby/object:Pathname + path: "../node_modules/expo-app-loader-provider/ios" + EXConstants: + :path: !ruby/object:Pathname + path: "../node_modules/expo-constants/ios" + EXFileSystem: + :path: !ruby/object:Pathname + path: "../node_modules/expo-file-system/ios" + EXPermissions: + :path: !ruby/object:Pathname + path: "../node_modules/expo-permissions/ios" + EXWebBrowser: + :path: !ruby/object:Pathname + path: "../node_modules/expo-web-browser/ios" Folly: :podspec: "../node_modules/react-native/third-party-podspecs/Folly.podspec" glog: @@ -208,6 +267,42 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-image-crop-picker" RNScreens: :path: "../node_modules/react-native-screens" + UMBarCodeScannerInterface: + :path: !ruby/object:Pathname + path: "../node_modules/unimodules-barcode-scanner-interface/ios" + UMCameraInterface: + :path: !ruby/object:Pathname + path: "../node_modules/unimodules-camera-interface/ios" + UMConstantsInterface: + :path: !ruby/object:Pathname + path: "../node_modules/unimodules-constants-interface/ios" + UMCore: + :path: !ruby/object:Pathname + path: "../node_modules/@unimodules/core/ios" + UMFaceDetectorInterface: + :path: !ruby/object:Pathname + path: "../node_modules/unimodules-face-detector-interface/ios" + UMFileSystemInterface: + :path: !ruby/object:Pathname + path: "../node_modules/unimodules-file-system-interface/ios" + UMFontInterface: + :path: !ruby/object:Pathname + path: "../node_modules/unimodules-font-interface/ios" + UMImageLoaderInterface: + :path: !ruby/object:Pathname + path: "../node_modules/unimodules-image-loader-interface/ios" + UMPermissionsInterface: + :path: !ruby/object:Pathname + path: "../node_modules/unimodules-permissions-interface/ios" + UMReactNativeAdapter: + :path: !ruby/object:Pathname + path: "../node_modules/@unimodules/react-native-adapter/ios" + UMSensorsInterface: + :path: !ruby/object:Pathname + path: "../node_modules/unimodules-sensors-interface/ios" + UMTaskManagerInterface: + :path: !ruby/object:Pathname + path: "../node_modules/unimodules-task-manager-interface/ios" yoga: :path: "../node_modules/react-native/ReactCommon/yoga" @@ -215,6 +310,11 @@ SPEC CHECKSUMS: boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c Crashlytics: 07fb167b1694128c1c9a5a5cc319b0e9c3ca0933 DoubleConversion: bb338842f62ab1d708ceb63ec3d999f0f3d98ecd + EXAppLoaderProvider: 8f2c04a0a8d9be91f7c37c2b8824077ee5d4bc01 + EXConstants: 9fe56eec8bf0a3ee9beb8f3381fa91340a5b1e57 + EXFileSystem: 96624bd4b93a0684335c421a6567a92b25bd7ddb + EXPermissions: 8e05008ed4fc8c9be6c17ea95301fc3f3f005a7b + EXWebBrowser: e03894b4583bb726e5ea05d01b341ba00134c2b5 Fabric: f988e33c97f08930a413e08123064d2e5f68d655 Firebase: 0c8cf33f266410c61ab3e2265cfa412200351d9c FirebaseABTesting: 1f50b8d50f5e3469eea54e7463a7b7fe221d1f5e @@ -241,8 +341,20 @@ SPEC CHECKSUMS: RNImageCropPicker: e608efe182652dc8690268cb99cb5a201f2b5ea3 RNScreens: 720a9e6968beb73e8196239801e887d8401f86ed RSKImageCropper: 98296ad26b41753f796b6898d015509598f13d97 + UMBarCodeScannerInterface: d5602e23de37f95bb4ee49ee3b2711e128058ae9 + UMCameraInterface: dde8491778ed062348e569bad33a890e60c32c9d + UMConstantsInterface: de48a63a5af572fc4dcc0e68051b00503b83e301 + UMCore: 047dc01ae4ccdd0c993f2c190f2489e5409c3ad0 + UMFaceDetectorInterface: badd9e3d206f5ba254c85a26afa43da06638575f + UMFileSystemInterface: ff9a18c26ee6321dc21a3f9663efe3a55313d4db + UMFontInterface: 0575f33184974a38f3528a4750729c7f5256b848 + UMImageLoaderInterface: ee8642347161d66272e841377a888957feb1f48e + UMPermissionsInterface: 2238fe9d7f99457a5cfe7f3140c2521c5bf453a6 + UMReactNativeAdapter: 110be971ff044f8cfd37cbf565a264cd79858391 + UMSensorsInterface: cda3ec177c7ff0a138e3135414b4a29013389358 + UMTaskManagerInterface: 296793ab2a7e181fe5ebe2ba9b40ae208ab4b8fa yoga: 92b2102c3d373d1a790db4ab761d2b0ffc634f64 -PODFILE CHECKSUM: f98adf896db83acfddda2f17bf015d55d15a89f2 +PODFILE CHECKSUM: b5e15bac5f306ea636e16393a7a6eb42c017ea99 COCOAPODS: 1.6.2 diff --git a/ios/Pods/Headers/Private/EXAppLoaderProvider/EXAppLoaderInterface.h b/ios/Pods/Headers/Private/EXAppLoaderProvider/EXAppLoaderInterface.h new file mode 120000 index 000000000..e070a7851 --- /dev/null +++ b/ios/Pods/Headers/Private/EXAppLoaderProvider/EXAppLoaderInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-app-loader-provider/ios/EXAppLoaderProvider/Interfaces/EXAppLoaderInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/EXAppLoaderProvider/EXAppLoaderProvider.h b/ios/Pods/Headers/Private/EXAppLoaderProvider/EXAppLoaderProvider.h new file mode 120000 index 000000000..8036fe182 --- /dev/null +++ b/ios/Pods/Headers/Private/EXAppLoaderProvider/EXAppLoaderProvider.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-app-loader-provider/ios/EXAppLoaderProvider/EXAppLoaderProvider.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/EXAppLoaderProvider/EXAppRecordInterface.h b/ios/Pods/Headers/Private/EXAppLoaderProvider/EXAppRecordInterface.h new file mode 120000 index 000000000..9ed829b6b --- /dev/null +++ b/ios/Pods/Headers/Private/EXAppLoaderProvider/EXAppRecordInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-app-loader-provider/ios/EXAppLoaderProvider/Interfaces/EXAppRecordInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/EXConstants/EXConstants.h b/ios/Pods/Headers/Private/EXConstants/EXConstants.h new file mode 120000 index 000000000..e7a8bb0d4 --- /dev/null +++ b/ios/Pods/Headers/Private/EXConstants/EXConstants.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-constants/ios/EXConstants/EXConstants.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/EXConstants/EXConstantsService.h b/ios/Pods/Headers/Private/EXConstants/EXConstantsService.h new file mode 120000 index 000000000..5db1996f6 --- /dev/null +++ b/ios/Pods/Headers/Private/EXConstants/EXConstantsService.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-constants/ios/EXConstants/EXConstantsService.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/EXFileSystem/EXDownloadDelegate.h b/ios/Pods/Headers/Private/EXFileSystem/EXDownloadDelegate.h new file mode 120000 index 000000000..0590b2177 --- /dev/null +++ b/ios/Pods/Headers/Private/EXFileSystem/EXDownloadDelegate.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-file-system/ios/EXFileSystem/EXDownloadDelegate.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/EXFileSystem/EXFilePermissionModule.h b/ios/Pods/Headers/Private/EXFileSystem/EXFilePermissionModule.h new file mode 120000 index 000000000..807fafbcd --- /dev/null +++ b/ios/Pods/Headers/Private/EXFileSystem/EXFilePermissionModule.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-file-system/ios/EXFileSystem/EXFilePermissionModule.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/EXFileSystem/EXFileSystem.h b/ios/Pods/Headers/Private/EXFileSystem/EXFileSystem.h new file mode 120000 index 000000000..0f0d2ba0e --- /dev/null +++ b/ios/Pods/Headers/Private/EXFileSystem/EXFileSystem.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-file-system/ios/EXFileSystem/EXFileSystem.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/EXFileSystem/EXFileSystemAssetLibraryHandler.h b/ios/Pods/Headers/Private/EXFileSystem/EXFileSystemAssetLibraryHandler.h new file mode 120000 index 000000000..6cb158515 --- /dev/null +++ b/ios/Pods/Headers/Private/EXFileSystem/EXFileSystemAssetLibraryHandler.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-file-system/ios/EXFileSystem/EXFileSystemAssetLibraryHandler.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/EXFileSystem/EXFileSystemLocalFileHandler.h b/ios/Pods/Headers/Private/EXFileSystem/EXFileSystemLocalFileHandler.h new file mode 120000 index 000000000..b8528ac0b --- /dev/null +++ b/ios/Pods/Headers/Private/EXFileSystem/EXFileSystemLocalFileHandler.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-file-system/ios/EXFileSystem/EXFileSystemLocalFileHandler.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/EXPermissions/EXAudioRecordingPermissionRequester.h b/ios/Pods/Headers/Private/EXPermissions/EXAudioRecordingPermissionRequester.h new file mode 120000 index 000000000..d4ca7c2bc --- /dev/null +++ b/ios/Pods/Headers/Private/EXPermissions/EXAudioRecordingPermissionRequester.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-permissions/ios/EXPermissions/EXAudioRecordingPermissionRequester.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/EXPermissions/EXCalendarRequester.h b/ios/Pods/Headers/Private/EXPermissions/EXCalendarRequester.h new file mode 120000 index 000000000..b0fe45f50 --- /dev/null +++ b/ios/Pods/Headers/Private/EXPermissions/EXCalendarRequester.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-permissions/ios/EXPermissions/EXCalendarRequester.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/EXPermissions/EXCameraPermissionRequester.h b/ios/Pods/Headers/Private/EXPermissions/EXCameraPermissionRequester.h new file mode 120000 index 000000000..de574f490 --- /dev/null +++ b/ios/Pods/Headers/Private/EXPermissions/EXCameraPermissionRequester.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-permissions/ios/EXPermissions/EXCameraPermissionRequester.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/EXPermissions/EXCameraRollRequester.h b/ios/Pods/Headers/Private/EXPermissions/EXCameraRollRequester.h new file mode 120000 index 000000000..d062f5f9c --- /dev/null +++ b/ios/Pods/Headers/Private/EXPermissions/EXCameraRollRequester.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-permissions/ios/EXPermissions/EXCameraRollRequester.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/EXPermissions/EXContactsRequester.h b/ios/Pods/Headers/Private/EXPermissions/EXContactsRequester.h new file mode 120000 index 000000000..43bb947f3 --- /dev/null +++ b/ios/Pods/Headers/Private/EXPermissions/EXContactsRequester.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-permissions/ios/EXPermissions/EXContactsRequester.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/EXPermissions/EXLocationRequester.h b/ios/Pods/Headers/Private/EXPermissions/EXLocationRequester.h new file mode 120000 index 000000000..de4b28b28 --- /dev/null +++ b/ios/Pods/Headers/Private/EXPermissions/EXLocationRequester.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-permissions/ios/EXPermissions/EXLocationRequester.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/EXPermissions/EXPermissions.h b/ios/Pods/Headers/Private/EXPermissions/EXPermissions.h new file mode 120000 index 000000000..bb3d427b7 --- /dev/null +++ b/ios/Pods/Headers/Private/EXPermissions/EXPermissions.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-permissions/ios/EXPermissions/EXPermissions.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/EXPermissions/EXReactNativeUserNotificationCenterProxy.h b/ios/Pods/Headers/Private/EXPermissions/EXReactNativeUserNotificationCenterProxy.h new file mode 120000 index 000000000..64095fbec --- /dev/null +++ b/ios/Pods/Headers/Private/EXPermissions/EXReactNativeUserNotificationCenterProxy.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-permissions/ios/EXPermissions/EXReactNativeUserNotificationCenterProxy.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/EXPermissions/EXRemindersRequester.h b/ios/Pods/Headers/Private/EXPermissions/EXRemindersRequester.h new file mode 120000 index 000000000..04a73bfb1 --- /dev/null +++ b/ios/Pods/Headers/Private/EXPermissions/EXRemindersRequester.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-permissions/ios/EXPermissions/EXRemindersRequester.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/EXPermissions/EXRemoteNotificationRequester.h b/ios/Pods/Headers/Private/EXPermissions/EXRemoteNotificationRequester.h new file mode 120000 index 000000000..3f9869b58 --- /dev/null +++ b/ios/Pods/Headers/Private/EXPermissions/EXRemoteNotificationRequester.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-permissions/ios/EXPermissions/EXRemoteNotificationRequester.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/EXPermissions/EXSystemBrightnessRequester.h b/ios/Pods/Headers/Private/EXPermissions/EXSystemBrightnessRequester.h new file mode 120000 index 000000000..9bf70ebc5 --- /dev/null +++ b/ios/Pods/Headers/Private/EXPermissions/EXSystemBrightnessRequester.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-permissions/ios/EXPermissions/EXSystemBrightnessRequester.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/EXPermissions/EXUserNotificationRequester.h b/ios/Pods/Headers/Private/EXPermissions/EXUserNotificationRequester.h new file mode 120000 index 000000000..aab5405f0 --- /dev/null +++ b/ios/Pods/Headers/Private/EXPermissions/EXUserNotificationRequester.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-permissions/ios/EXPermissions/EXUserNotificationRequester.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/EXWebBrowser/EXWebBrowser.h b/ios/Pods/Headers/Private/EXWebBrowser/EXWebBrowser.h new file mode 120000 index 000000000..d5c6c553f --- /dev/null +++ b/ios/Pods/Headers/Private/EXWebBrowser/EXWebBrowser.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-web-browser/ios/EXWebBrowser/EXWebBrowser.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMBarCodeScannerInterface/UMBarCodeScannerInterface.h b/ios/Pods/Headers/Private/UMBarCodeScannerInterface/UMBarCodeScannerInterface.h new file mode 120000 index 000000000..d291c62fa --- /dev/null +++ b/ios/Pods/Headers/Private/UMBarCodeScannerInterface/UMBarCodeScannerInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-barcode-scanner-interface/ios/UMBarCodeScannerInterface/UMBarCodeScannerInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h b/ios/Pods/Headers/Private/UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h new file mode 120000 index 000000000..98d326610 --- /dev/null +++ b/ios/Pods/Headers/Private/UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-barcode-scanner-interface/ios/UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMCameraInterface/UMCameraInterface.h b/ios/Pods/Headers/Private/UMCameraInterface/UMCameraInterface.h new file mode 120000 index 000000000..8466b2c42 --- /dev/null +++ b/ios/Pods/Headers/Private/UMCameraInterface/UMCameraInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-camera-interface/ios/UMCameraInterface/UMCameraInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMConstantsInterface/UMConstantsInterface.h b/ios/Pods/Headers/Private/UMConstantsInterface/UMConstantsInterface.h new file mode 120000 index 000000000..7d70d01f4 --- /dev/null +++ b/ios/Pods/Headers/Private/UMConstantsInterface/UMConstantsInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-constants-interface/ios/UMConstantsInterface/UMConstantsInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMCore/UMAppDelegateWrapper.h b/ios/Pods/Headers/Private/UMCore/UMAppDelegateWrapper.h new file mode 120000 index 000000000..510d21c08 --- /dev/null +++ b/ios/Pods/Headers/Private/UMCore/UMAppDelegateWrapper.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/UMAppDelegateWrapper.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMCore/UMAppLifecycleListener.h b/ios/Pods/Headers/Private/UMCore/UMAppLifecycleListener.h new file mode 120000 index 000000000..45e9bd8aa --- /dev/null +++ b/ios/Pods/Headers/Private/UMCore/UMAppLifecycleListener.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/Protocols/UMAppLifecycleListener.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMCore/UMAppLifecycleService.h b/ios/Pods/Headers/Private/UMCore/UMAppLifecycleService.h new file mode 120000 index 000000000..5b312b415 --- /dev/null +++ b/ios/Pods/Headers/Private/UMCore/UMAppLifecycleService.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/Protocols/UMAppLifecycleService.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMCore/UMDefines.h b/ios/Pods/Headers/Private/UMCore/UMDefines.h new file mode 120000 index 000000000..745c1da03 --- /dev/null +++ b/ios/Pods/Headers/Private/UMCore/UMDefines.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/UMDefines.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMCore/UMEventEmitter.h b/ios/Pods/Headers/Private/UMCore/UMEventEmitter.h new file mode 120000 index 000000000..35763f8b4 --- /dev/null +++ b/ios/Pods/Headers/Private/UMCore/UMEventEmitter.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/Protocols/UMEventEmitter.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMCore/UMEventEmitterService.h b/ios/Pods/Headers/Private/UMCore/UMEventEmitterService.h new file mode 120000 index 000000000..af65fec15 --- /dev/null +++ b/ios/Pods/Headers/Private/UMCore/UMEventEmitterService.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/Protocols/UMEventEmitterService.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMCore/UMExportedModule.h b/ios/Pods/Headers/Private/UMCore/UMExportedModule.h new file mode 120000 index 000000000..5e66e90e2 --- /dev/null +++ b/ios/Pods/Headers/Private/UMCore/UMExportedModule.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/UMExportedModule.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMCore/UMInternalModule.h b/ios/Pods/Headers/Private/UMCore/UMInternalModule.h new file mode 120000 index 000000000..15258a23e --- /dev/null +++ b/ios/Pods/Headers/Private/UMCore/UMInternalModule.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/Protocols/UMInternalModule.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMCore/UMJavaScriptContextProvider.h b/ios/Pods/Headers/Private/UMCore/UMJavaScriptContextProvider.h new file mode 120000 index 000000000..ff0462734 --- /dev/null +++ b/ios/Pods/Headers/Private/UMCore/UMJavaScriptContextProvider.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/Protocols/UMJavaScriptContextProvider.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMCore/UMKernelService.h b/ios/Pods/Headers/Private/UMCore/UMKernelService.h new file mode 120000 index 000000000..507326f1f --- /dev/null +++ b/ios/Pods/Headers/Private/UMCore/UMKernelService.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/Protocols/UMKernelService.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMCore/UMLogHandler.h b/ios/Pods/Headers/Private/UMCore/UMLogHandler.h new file mode 120000 index 000000000..45a5c9301 --- /dev/null +++ b/ios/Pods/Headers/Private/UMCore/UMLogHandler.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/Protocols/UMLogHandler.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMCore/UMLogManager.h b/ios/Pods/Headers/Private/UMCore/UMLogManager.h new file mode 120000 index 000000000..e62a8e94f --- /dev/null +++ b/ios/Pods/Headers/Private/UMCore/UMLogManager.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/Services/UMLogManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMCore/UMModuleRegistry.h b/ios/Pods/Headers/Private/UMCore/UMModuleRegistry.h new file mode 120000 index 000000000..7b604cb0f --- /dev/null +++ b/ios/Pods/Headers/Private/UMCore/UMModuleRegistry.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/UMModuleRegistry/UMModuleRegistry.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMCore/UMModuleRegistryConsumer.h b/ios/Pods/Headers/Private/UMCore/UMModuleRegistryConsumer.h new file mode 120000 index 000000000..ec7a71018 --- /dev/null +++ b/ios/Pods/Headers/Private/UMCore/UMModuleRegistryConsumer.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/Protocols/UMModuleRegistryConsumer.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMCore/UMModuleRegistryDelegate.h b/ios/Pods/Headers/Private/UMCore/UMModuleRegistryDelegate.h new file mode 120000 index 000000000..d9e6ee37f --- /dev/null +++ b/ios/Pods/Headers/Private/UMCore/UMModuleRegistryDelegate.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/UMModuleRegistry/UMModuleRegistryDelegate.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMCore/UMModuleRegistryProvider.h b/ios/Pods/Headers/Private/UMCore/UMModuleRegistryProvider.h new file mode 120000 index 000000000..80e578523 --- /dev/null +++ b/ios/Pods/Headers/Private/UMCore/UMModuleRegistryProvider.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/UMModuleRegistryProvider/UMModuleRegistryProvider.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMCore/UMSingletonModule.h b/ios/Pods/Headers/Private/UMCore/UMSingletonModule.h new file mode 120000 index 000000000..69e79fe3d --- /dev/null +++ b/ios/Pods/Headers/Private/UMCore/UMSingletonModule.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/UMSingletonModule.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMCore/UMUIManager.h b/ios/Pods/Headers/Private/UMCore/UMUIManager.h new file mode 120000 index 000000000..dbae0773f --- /dev/null +++ b/ios/Pods/Headers/Private/UMCore/UMUIManager.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/Protocols/UMUIManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMCore/UMUtilities.h b/ios/Pods/Headers/Private/UMCore/UMUtilities.h new file mode 120000 index 000000000..9d245b4dc --- /dev/null +++ b/ios/Pods/Headers/Private/UMCore/UMUtilities.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/UMUtilities.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMCore/UMUtilitiesInterface.h b/ios/Pods/Headers/Private/UMCore/UMUtilitiesInterface.h new file mode 120000 index 000000000..b838c013b --- /dev/null +++ b/ios/Pods/Headers/Private/UMCore/UMUtilitiesInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/Protocols/UMUtilitiesInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMCore/UMViewManager.h b/ios/Pods/Headers/Private/UMCore/UMViewManager.h new file mode 120000 index 000000000..0ecf3f0a9 --- /dev/null +++ b/ios/Pods/Headers/Private/UMCore/UMViewManager.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/UMViewManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMFaceDetectorInterface/UMFaceDetectorManager.h b/ios/Pods/Headers/Private/UMFaceDetectorInterface/UMFaceDetectorManager.h new file mode 120000 index 000000000..4525df413 --- /dev/null +++ b/ios/Pods/Headers/Private/UMFaceDetectorInterface/UMFaceDetectorManager.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-face-detector-interface/ios/UMFaceDetectorInterface/UMFaceDetectorManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h b/ios/Pods/Headers/Private/UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h new file mode 120000 index 000000000..107a6bd55 --- /dev/null +++ b/ios/Pods/Headers/Private/UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-face-detector-interface/ios/UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMFileSystemInterface/UMFilePermissionModuleInterface.h b/ios/Pods/Headers/Private/UMFileSystemInterface/UMFilePermissionModuleInterface.h new file mode 120000 index 000000000..71343a4bc --- /dev/null +++ b/ios/Pods/Headers/Private/UMFileSystemInterface/UMFilePermissionModuleInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-file-system-interface/ios/UMFileSystemInterface/UMFilePermissionModuleInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMFileSystemInterface/UMFileSystemInterface.h b/ios/Pods/Headers/Private/UMFileSystemInterface/UMFileSystemInterface.h new file mode 120000 index 000000000..0a343f007 --- /dev/null +++ b/ios/Pods/Headers/Private/UMFileSystemInterface/UMFileSystemInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-file-system-interface/ios/UMFileSystemInterface/UMFileSystemInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMFontInterface/UMFontManagerInterface.h b/ios/Pods/Headers/Private/UMFontInterface/UMFontManagerInterface.h new file mode 120000 index 000000000..e0cab9f32 --- /dev/null +++ b/ios/Pods/Headers/Private/UMFontInterface/UMFontManagerInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-font-interface/ios/UMFontInterface/UMFontManagerInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMFontInterface/UMFontProcessorInterface.h b/ios/Pods/Headers/Private/UMFontInterface/UMFontProcessorInterface.h new file mode 120000 index 000000000..f06f1b9c2 --- /dev/null +++ b/ios/Pods/Headers/Private/UMFontInterface/UMFontProcessorInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-font-interface/ios/UMFontInterface/UMFontProcessorInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMFontInterface/UMFontScalerInterface.h b/ios/Pods/Headers/Private/UMFontInterface/UMFontScalerInterface.h new file mode 120000 index 000000000..b85c669cc --- /dev/null +++ b/ios/Pods/Headers/Private/UMFontInterface/UMFontScalerInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-font-interface/ios/UMFontInterface/UMFontScalerInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMFontInterface/UMFontScalersManagerInterface.h b/ios/Pods/Headers/Private/UMFontInterface/UMFontScalersManagerInterface.h new file mode 120000 index 000000000..092178512 --- /dev/null +++ b/ios/Pods/Headers/Private/UMFontInterface/UMFontScalersManagerInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-font-interface/ios/UMFontInterface/UMFontScalersManagerInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMImageLoaderInterface/UMImageLoaderInterface.h b/ios/Pods/Headers/Private/UMImageLoaderInterface/UMImageLoaderInterface.h new file mode 120000 index 000000000..5cb93b846 --- /dev/null +++ b/ios/Pods/Headers/Private/UMImageLoaderInterface/UMImageLoaderInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-image-loader-interface/ios/UMImageLoaderInterface/UMImageLoaderInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMPermissionsInterface/UMPermissionsInterface.h b/ios/Pods/Headers/Private/UMPermissionsInterface/UMPermissionsInterface.h new file mode 120000 index 000000000..084b0f365 --- /dev/null +++ b/ios/Pods/Headers/Private/UMPermissionsInterface/UMPermissionsInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-permissions-interface/ios/UMPermissionsInterface/UMPermissionsInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h b/ios/Pods/Headers/Private/UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h new file mode 120000 index 000000000..674d2eda9 --- /dev/null +++ b/ios/Pods/Headers/Private/UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-permissions-interface/ios/UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMReactNativeAdapter/UMBridgeModule.h b/ios/Pods/Headers/Private/UMReactNativeAdapter/UMBridgeModule.h new file mode 120000 index 000000000..d32ad5bc1 --- /dev/null +++ b/ios/Pods/Headers/Private/UMReactNativeAdapter/UMBridgeModule.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/react-native-adapter/ios/UMReactNativeAdapter/UMBridgeModule.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMReactNativeAdapter/UMModuleRegistryAdapter.h b/ios/Pods/Headers/Private/UMReactNativeAdapter/UMModuleRegistryAdapter.h new file mode 120000 index 000000000..62919c65c --- /dev/null +++ b/ios/Pods/Headers/Private/UMReactNativeAdapter/UMModuleRegistryAdapter.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/react-native-adapter/ios/UMReactNativeAdapter/UMModuleRegistryAdapter/UMModuleRegistryAdapter.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMReactNativeAdapter/UMNativeModulesProxy.h b/ios/Pods/Headers/Private/UMReactNativeAdapter/UMNativeModulesProxy.h new file mode 120000 index 000000000..e2e1ef9b5 --- /dev/null +++ b/ios/Pods/Headers/Private/UMReactNativeAdapter/UMNativeModulesProxy.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/react-native-adapter/ios/UMReactNativeAdapter/UMNativeModulesProxy/UMNativeModulesProxy.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMReactNativeAdapter/UMReactFontManager.h b/ios/Pods/Headers/Private/UMReactNativeAdapter/UMReactFontManager.h new file mode 120000 index 000000000..e6e414a04 --- /dev/null +++ b/ios/Pods/Headers/Private/UMReactNativeAdapter/UMReactFontManager.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/react-native-adapter/ios/UMReactNativeAdapter/Services/UMReactFontManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMReactNativeAdapter/UMReactLogHandler.h b/ios/Pods/Headers/Private/UMReactNativeAdapter/UMReactLogHandler.h new file mode 120000 index 000000000..3a6ab1aec --- /dev/null +++ b/ios/Pods/Headers/Private/UMReactNativeAdapter/UMReactLogHandler.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/react-native-adapter/ios/UMReactNativeAdapter/Services/UMReactLogHandler.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMReactNativeAdapter/UMReactNativeAdapter.h b/ios/Pods/Headers/Private/UMReactNativeAdapter/UMReactNativeAdapter.h new file mode 120000 index 000000000..6229053e8 --- /dev/null +++ b/ios/Pods/Headers/Private/UMReactNativeAdapter/UMReactNativeAdapter.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/react-native-adapter/ios/UMReactNativeAdapter/Services/UMReactNativeAdapter.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMReactNativeAdapter/UMReactNativeEventEmitter.h b/ios/Pods/Headers/Private/UMReactNativeAdapter/UMReactNativeEventEmitter.h new file mode 120000 index 000000000..17a735f46 --- /dev/null +++ b/ios/Pods/Headers/Private/UMReactNativeAdapter/UMReactNativeEventEmitter.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/react-native-adapter/ios/UMReactNativeAdapter/Services/UMReactNativeEventEmitter.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMReactNativeAdapter/UMViewManagerAdapter.h b/ios/Pods/Headers/Private/UMReactNativeAdapter/UMViewManagerAdapter.h new file mode 120000 index 000000000..ea0bd2d98 --- /dev/null +++ b/ios/Pods/Headers/Private/UMReactNativeAdapter/UMViewManagerAdapter.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/react-native-adapter/ios/UMReactNativeAdapter/UMViewManagerAdapter/UMViewManagerAdapter.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMReactNativeAdapter/UMViewManagerAdapterClassesRegistry.h b/ios/Pods/Headers/Private/UMReactNativeAdapter/UMViewManagerAdapterClassesRegistry.h new file mode 120000 index 000000000..7b69dfa28 --- /dev/null +++ b/ios/Pods/Headers/Private/UMReactNativeAdapter/UMViewManagerAdapterClassesRegistry.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/react-native-adapter/ios/UMReactNativeAdapter/UMModuleRegistryAdapter/UMViewManagerAdapterClassesRegistry.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMSensorsInterface/UMAccelerometerInterface.h b/ios/Pods/Headers/Private/UMSensorsInterface/UMAccelerometerInterface.h new file mode 120000 index 000000000..0ec8554a6 --- /dev/null +++ b/ios/Pods/Headers/Private/UMSensorsInterface/UMAccelerometerInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-sensors-interface/ios/UMSensorsInterface/UMAccelerometerInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMSensorsInterface/UMBarometerInterface.h b/ios/Pods/Headers/Private/UMSensorsInterface/UMBarometerInterface.h new file mode 120000 index 000000000..321a7bb42 --- /dev/null +++ b/ios/Pods/Headers/Private/UMSensorsInterface/UMBarometerInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-sensors-interface/ios/UMSensorsInterface/UMBarometerInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMSensorsInterface/UMDeviceMotionInterface.h b/ios/Pods/Headers/Private/UMSensorsInterface/UMDeviceMotionInterface.h new file mode 120000 index 000000000..61710a1d0 --- /dev/null +++ b/ios/Pods/Headers/Private/UMSensorsInterface/UMDeviceMotionInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-sensors-interface/ios/UMSensorsInterface/UMDeviceMotionInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMSensorsInterface/UMGyroscopeInterface.h b/ios/Pods/Headers/Private/UMSensorsInterface/UMGyroscopeInterface.h new file mode 120000 index 000000000..14e1211d7 --- /dev/null +++ b/ios/Pods/Headers/Private/UMSensorsInterface/UMGyroscopeInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-sensors-interface/ios/UMSensorsInterface/UMGyroscopeInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMSensorsInterface/UMMagnetometerInterface.h b/ios/Pods/Headers/Private/UMSensorsInterface/UMMagnetometerInterface.h new file mode 120000 index 000000000..41058e813 --- /dev/null +++ b/ios/Pods/Headers/Private/UMSensorsInterface/UMMagnetometerInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-sensors-interface/ios/UMSensorsInterface/UMMagnetometerInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMSensorsInterface/UMMagnetometerUncalibratedInterface.h b/ios/Pods/Headers/Private/UMSensorsInterface/UMMagnetometerUncalibratedInterface.h new file mode 120000 index 000000000..4d8ab7da4 --- /dev/null +++ b/ios/Pods/Headers/Private/UMSensorsInterface/UMMagnetometerUncalibratedInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-sensors-interface/ios/UMSensorsInterface/UMMagnetometerUncalibratedInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMTaskManagerInterface/UMTaskConsumerInterface.h b/ios/Pods/Headers/Private/UMTaskManagerInterface/UMTaskConsumerInterface.h new file mode 120000 index 000000000..993e10c52 --- /dev/null +++ b/ios/Pods/Headers/Private/UMTaskManagerInterface/UMTaskConsumerInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-task-manager-interface/ios/UMTaskManagerInterface/UMTaskConsumerInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMTaskManagerInterface/UMTaskInterface.h b/ios/Pods/Headers/Private/UMTaskManagerInterface/UMTaskInterface.h new file mode 120000 index 000000000..ded414eff --- /dev/null +++ b/ios/Pods/Headers/Private/UMTaskManagerInterface/UMTaskInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-task-manager-interface/ios/UMTaskManagerInterface/UMTaskInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMTaskManagerInterface/UMTaskLaunchReason.h b/ios/Pods/Headers/Private/UMTaskManagerInterface/UMTaskLaunchReason.h new file mode 120000 index 000000000..0d1b1909f --- /dev/null +++ b/ios/Pods/Headers/Private/UMTaskManagerInterface/UMTaskLaunchReason.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-task-manager-interface/ios/UMTaskManagerInterface/UMTaskLaunchReason.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMTaskManagerInterface/UMTaskManagerInterface.h b/ios/Pods/Headers/Private/UMTaskManagerInterface/UMTaskManagerInterface.h new file mode 120000 index 000000000..ba0780a6b --- /dev/null +++ b/ios/Pods/Headers/Private/UMTaskManagerInterface/UMTaskManagerInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-task-manager-interface/ios/UMTaskManagerInterface/UMTaskManagerInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/UMTaskManagerInterface/UMTaskServiceInterface.h b/ios/Pods/Headers/Private/UMTaskManagerInterface/UMTaskServiceInterface.h new file mode 120000 index 000000000..31b609bdf --- /dev/null +++ b/ios/Pods/Headers/Private/UMTaskManagerInterface/UMTaskServiceInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-task-manager-interface/ios/UMTaskManagerInterface/UMTaskServiceInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/EXAppLoaderProvider/EXAppLoaderInterface.h b/ios/Pods/Headers/Public/EXAppLoaderProvider/EXAppLoaderInterface.h new file mode 120000 index 000000000..e070a7851 --- /dev/null +++ b/ios/Pods/Headers/Public/EXAppLoaderProvider/EXAppLoaderInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-app-loader-provider/ios/EXAppLoaderProvider/Interfaces/EXAppLoaderInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/EXAppLoaderProvider/EXAppLoaderProvider.h b/ios/Pods/Headers/Public/EXAppLoaderProvider/EXAppLoaderProvider.h new file mode 120000 index 000000000..8036fe182 --- /dev/null +++ b/ios/Pods/Headers/Public/EXAppLoaderProvider/EXAppLoaderProvider.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-app-loader-provider/ios/EXAppLoaderProvider/EXAppLoaderProvider.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/EXAppLoaderProvider/EXAppRecordInterface.h b/ios/Pods/Headers/Public/EXAppLoaderProvider/EXAppRecordInterface.h new file mode 120000 index 000000000..9ed829b6b --- /dev/null +++ b/ios/Pods/Headers/Public/EXAppLoaderProvider/EXAppRecordInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-app-loader-provider/ios/EXAppLoaderProvider/Interfaces/EXAppRecordInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/EXConstants/EXConstants.h b/ios/Pods/Headers/Public/EXConstants/EXConstants.h new file mode 120000 index 000000000..e7a8bb0d4 --- /dev/null +++ b/ios/Pods/Headers/Public/EXConstants/EXConstants.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-constants/ios/EXConstants/EXConstants.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/EXConstants/EXConstantsService.h b/ios/Pods/Headers/Public/EXConstants/EXConstantsService.h new file mode 120000 index 000000000..5db1996f6 --- /dev/null +++ b/ios/Pods/Headers/Public/EXConstants/EXConstantsService.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-constants/ios/EXConstants/EXConstantsService.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/EXFileSystem/EXDownloadDelegate.h b/ios/Pods/Headers/Public/EXFileSystem/EXDownloadDelegate.h new file mode 120000 index 000000000..0590b2177 --- /dev/null +++ b/ios/Pods/Headers/Public/EXFileSystem/EXDownloadDelegate.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-file-system/ios/EXFileSystem/EXDownloadDelegate.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/EXFileSystem/EXFilePermissionModule.h b/ios/Pods/Headers/Public/EXFileSystem/EXFilePermissionModule.h new file mode 120000 index 000000000..807fafbcd --- /dev/null +++ b/ios/Pods/Headers/Public/EXFileSystem/EXFilePermissionModule.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-file-system/ios/EXFileSystem/EXFilePermissionModule.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/EXFileSystem/EXFileSystem.h b/ios/Pods/Headers/Public/EXFileSystem/EXFileSystem.h new file mode 120000 index 000000000..0f0d2ba0e --- /dev/null +++ b/ios/Pods/Headers/Public/EXFileSystem/EXFileSystem.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-file-system/ios/EXFileSystem/EXFileSystem.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/EXFileSystem/EXFileSystemAssetLibraryHandler.h b/ios/Pods/Headers/Public/EXFileSystem/EXFileSystemAssetLibraryHandler.h new file mode 120000 index 000000000..6cb158515 --- /dev/null +++ b/ios/Pods/Headers/Public/EXFileSystem/EXFileSystemAssetLibraryHandler.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-file-system/ios/EXFileSystem/EXFileSystemAssetLibraryHandler.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/EXFileSystem/EXFileSystemLocalFileHandler.h b/ios/Pods/Headers/Public/EXFileSystem/EXFileSystemLocalFileHandler.h new file mode 120000 index 000000000..b8528ac0b --- /dev/null +++ b/ios/Pods/Headers/Public/EXFileSystem/EXFileSystemLocalFileHandler.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-file-system/ios/EXFileSystem/EXFileSystemLocalFileHandler.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/EXPermissions/EXAudioRecordingPermissionRequester.h b/ios/Pods/Headers/Public/EXPermissions/EXAudioRecordingPermissionRequester.h new file mode 120000 index 000000000..d4ca7c2bc --- /dev/null +++ b/ios/Pods/Headers/Public/EXPermissions/EXAudioRecordingPermissionRequester.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-permissions/ios/EXPermissions/EXAudioRecordingPermissionRequester.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/EXPermissions/EXCalendarRequester.h b/ios/Pods/Headers/Public/EXPermissions/EXCalendarRequester.h new file mode 120000 index 000000000..b0fe45f50 --- /dev/null +++ b/ios/Pods/Headers/Public/EXPermissions/EXCalendarRequester.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-permissions/ios/EXPermissions/EXCalendarRequester.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/EXPermissions/EXCameraPermissionRequester.h b/ios/Pods/Headers/Public/EXPermissions/EXCameraPermissionRequester.h new file mode 120000 index 000000000..de574f490 --- /dev/null +++ b/ios/Pods/Headers/Public/EXPermissions/EXCameraPermissionRequester.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-permissions/ios/EXPermissions/EXCameraPermissionRequester.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/EXPermissions/EXCameraRollRequester.h b/ios/Pods/Headers/Public/EXPermissions/EXCameraRollRequester.h new file mode 120000 index 000000000..d062f5f9c --- /dev/null +++ b/ios/Pods/Headers/Public/EXPermissions/EXCameraRollRequester.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-permissions/ios/EXPermissions/EXCameraRollRequester.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/EXPermissions/EXContactsRequester.h b/ios/Pods/Headers/Public/EXPermissions/EXContactsRequester.h new file mode 120000 index 000000000..43bb947f3 --- /dev/null +++ b/ios/Pods/Headers/Public/EXPermissions/EXContactsRequester.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-permissions/ios/EXPermissions/EXContactsRequester.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/EXPermissions/EXLocationRequester.h b/ios/Pods/Headers/Public/EXPermissions/EXLocationRequester.h new file mode 120000 index 000000000..de4b28b28 --- /dev/null +++ b/ios/Pods/Headers/Public/EXPermissions/EXLocationRequester.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-permissions/ios/EXPermissions/EXLocationRequester.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/EXPermissions/EXPermissions.h b/ios/Pods/Headers/Public/EXPermissions/EXPermissions.h new file mode 120000 index 000000000..bb3d427b7 --- /dev/null +++ b/ios/Pods/Headers/Public/EXPermissions/EXPermissions.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-permissions/ios/EXPermissions/EXPermissions.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/EXPermissions/EXReactNativeUserNotificationCenterProxy.h b/ios/Pods/Headers/Public/EXPermissions/EXReactNativeUserNotificationCenterProxy.h new file mode 120000 index 000000000..64095fbec --- /dev/null +++ b/ios/Pods/Headers/Public/EXPermissions/EXReactNativeUserNotificationCenterProxy.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-permissions/ios/EXPermissions/EXReactNativeUserNotificationCenterProxy.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/EXPermissions/EXRemindersRequester.h b/ios/Pods/Headers/Public/EXPermissions/EXRemindersRequester.h new file mode 120000 index 000000000..04a73bfb1 --- /dev/null +++ b/ios/Pods/Headers/Public/EXPermissions/EXRemindersRequester.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-permissions/ios/EXPermissions/EXRemindersRequester.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/EXPermissions/EXRemoteNotificationRequester.h b/ios/Pods/Headers/Public/EXPermissions/EXRemoteNotificationRequester.h new file mode 120000 index 000000000..3f9869b58 --- /dev/null +++ b/ios/Pods/Headers/Public/EXPermissions/EXRemoteNotificationRequester.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-permissions/ios/EXPermissions/EXRemoteNotificationRequester.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/EXPermissions/EXSystemBrightnessRequester.h b/ios/Pods/Headers/Public/EXPermissions/EXSystemBrightnessRequester.h new file mode 120000 index 000000000..9bf70ebc5 --- /dev/null +++ b/ios/Pods/Headers/Public/EXPermissions/EXSystemBrightnessRequester.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-permissions/ios/EXPermissions/EXSystemBrightnessRequester.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/EXPermissions/EXUserNotificationRequester.h b/ios/Pods/Headers/Public/EXPermissions/EXUserNotificationRequester.h new file mode 120000 index 000000000..aab5405f0 --- /dev/null +++ b/ios/Pods/Headers/Public/EXPermissions/EXUserNotificationRequester.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-permissions/ios/EXPermissions/EXUserNotificationRequester.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/EXWebBrowser/EXWebBrowser.h b/ios/Pods/Headers/Public/EXWebBrowser/EXWebBrowser.h new file mode 120000 index 000000000..d5c6c553f --- /dev/null +++ b/ios/Pods/Headers/Public/EXWebBrowser/EXWebBrowser.h @@ -0,0 +1 @@ +../../../../../node_modules/expo-web-browser/ios/EXWebBrowser/EXWebBrowser.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMBarCodeScannerInterface/UMBarCodeScannerInterface.h b/ios/Pods/Headers/Public/UMBarCodeScannerInterface/UMBarCodeScannerInterface.h new file mode 120000 index 000000000..d291c62fa --- /dev/null +++ b/ios/Pods/Headers/Public/UMBarCodeScannerInterface/UMBarCodeScannerInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-barcode-scanner-interface/ios/UMBarCodeScannerInterface/UMBarCodeScannerInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h b/ios/Pods/Headers/Public/UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h new file mode 120000 index 000000000..98d326610 --- /dev/null +++ b/ios/Pods/Headers/Public/UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-barcode-scanner-interface/ios/UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMCameraInterface/UMCameraInterface.h b/ios/Pods/Headers/Public/UMCameraInterface/UMCameraInterface.h new file mode 120000 index 000000000..8466b2c42 --- /dev/null +++ b/ios/Pods/Headers/Public/UMCameraInterface/UMCameraInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-camera-interface/ios/UMCameraInterface/UMCameraInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMConstantsInterface/UMConstantsInterface.h b/ios/Pods/Headers/Public/UMConstantsInterface/UMConstantsInterface.h new file mode 120000 index 000000000..7d70d01f4 --- /dev/null +++ b/ios/Pods/Headers/Public/UMConstantsInterface/UMConstantsInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-constants-interface/ios/UMConstantsInterface/UMConstantsInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMCore/UMAppDelegateWrapper.h b/ios/Pods/Headers/Public/UMCore/UMAppDelegateWrapper.h new file mode 120000 index 000000000..510d21c08 --- /dev/null +++ b/ios/Pods/Headers/Public/UMCore/UMAppDelegateWrapper.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/UMAppDelegateWrapper.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMCore/UMAppLifecycleListener.h b/ios/Pods/Headers/Public/UMCore/UMAppLifecycleListener.h new file mode 120000 index 000000000..45e9bd8aa --- /dev/null +++ b/ios/Pods/Headers/Public/UMCore/UMAppLifecycleListener.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/Protocols/UMAppLifecycleListener.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMCore/UMAppLifecycleService.h b/ios/Pods/Headers/Public/UMCore/UMAppLifecycleService.h new file mode 120000 index 000000000..5b312b415 --- /dev/null +++ b/ios/Pods/Headers/Public/UMCore/UMAppLifecycleService.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/Protocols/UMAppLifecycleService.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMCore/UMDefines.h b/ios/Pods/Headers/Public/UMCore/UMDefines.h new file mode 120000 index 000000000..745c1da03 --- /dev/null +++ b/ios/Pods/Headers/Public/UMCore/UMDefines.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/UMDefines.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMCore/UMEventEmitter.h b/ios/Pods/Headers/Public/UMCore/UMEventEmitter.h new file mode 120000 index 000000000..35763f8b4 --- /dev/null +++ b/ios/Pods/Headers/Public/UMCore/UMEventEmitter.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/Protocols/UMEventEmitter.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMCore/UMEventEmitterService.h b/ios/Pods/Headers/Public/UMCore/UMEventEmitterService.h new file mode 120000 index 000000000..af65fec15 --- /dev/null +++ b/ios/Pods/Headers/Public/UMCore/UMEventEmitterService.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/Protocols/UMEventEmitterService.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMCore/UMExportedModule.h b/ios/Pods/Headers/Public/UMCore/UMExportedModule.h new file mode 120000 index 000000000..5e66e90e2 --- /dev/null +++ b/ios/Pods/Headers/Public/UMCore/UMExportedModule.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/UMExportedModule.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMCore/UMInternalModule.h b/ios/Pods/Headers/Public/UMCore/UMInternalModule.h new file mode 120000 index 000000000..15258a23e --- /dev/null +++ b/ios/Pods/Headers/Public/UMCore/UMInternalModule.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/Protocols/UMInternalModule.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMCore/UMJavaScriptContextProvider.h b/ios/Pods/Headers/Public/UMCore/UMJavaScriptContextProvider.h new file mode 120000 index 000000000..ff0462734 --- /dev/null +++ b/ios/Pods/Headers/Public/UMCore/UMJavaScriptContextProvider.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/Protocols/UMJavaScriptContextProvider.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMCore/UMKernelService.h b/ios/Pods/Headers/Public/UMCore/UMKernelService.h new file mode 120000 index 000000000..507326f1f --- /dev/null +++ b/ios/Pods/Headers/Public/UMCore/UMKernelService.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/Protocols/UMKernelService.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMCore/UMLogHandler.h b/ios/Pods/Headers/Public/UMCore/UMLogHandler.h new file mode 120000 index 000000000..45a5c9301 --- /dev/null +++ b/ios/Pods/Headers/Public/UMCore/UMLogHandler.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/Protocols/UMLogHandler.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMCore/UMLogManager.h b/ios/Pods/Headers/Public/UMCore/UMLogManager.h new file mode 120000 index 000000000..e62a8e94f --- /dev/null +++ b/ios/Pods/Headers/Public/UMCore/UMLogManager.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/Services/UMLogManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMCore/UMModuleRegistry.h b/ios/Pods/Headers/Public/UMCore/UMModuleRegistry.h new file mode 120000 index 000000000..7b604cb0f --- /dev/null +++ b/ios/Pods/Headers/Public/UMCore/UMModuleRegistry.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/UMModuleRegistry/UMModuleRegistry.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMCore/UMModuleRegistryConsumer.h b/ios/Pods/Headers/Public/UMCore/UMModuleRegistryConsumer.h new file mode 120000 index 000000000..ec7a71018 --- /dev/null +++ b/ios/Pods/Headers/Public/UMCore/UMModuleRegistryConsumer.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/Protocols/UMModuleRegistryConsumer.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMCore/UMModuleRegistryDelegate.h b/ios/Pods/Headers/Public/UMCore/UMModuleRegistryDelegate.h new file mode 120000 index 000000000..d9e6ee37f --- /dev/null +++ b/ios/Pods/Headers/Public/UMCore/UMModuleRegistryDelegate.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/UMModuleRegistry/UMModuleRegistryDelegate.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMCore/UMModuleRegistryProvider.h b/ios/Pods/Headers/Public/UMCore/UMModuleRegistryProvider.h new file mode 120000 index 000000000..80e578523 --- /dev/null +++ b/ios/Pods/Headers/Public/UMCore/UMModuleRegistryProvider.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/UMModuleRegistryProvider/UMModuleRegistryProvider.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMCore/UMSingletonModule.h b/ios/Pods/Headers/Public/UMCore/UMSingletonModule.h new file mode 120000 index 000000000..69e79fe3d --- /dev/null +++ b/ios/Pods/Headers/Public/UMCore/UMSingletonModule.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/UMSingletonModule.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMCore/UMUIManager.h b/ios/Pods/Headers/Public/UMCore/UMUIManager.h new file mode 120000 index 000000000..dbae0773f --- /dev/null +++ b/ios/Pods/Headers/Public/UMCore/UMUIManager.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/Protocols/UMUIManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMCore/UMUtilities.h b/ios/Pods/Headers/Public/UMCore/UMUtilities.h new file mode 120000 index 000000000..9d245b4dc --- /dev/null +++ b/ios/Pods/Headers/Public/UMCore/UMUtilities.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/UMUtilities.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMCore/UMUtilitiesInterface.h b/ios/Pods/Headers/Public/UMCore/UMUtilitiesInterface.h new file mode 120000 index 000000000..b838c013b --- /dev/null +++ b/ios/Pods/Headers/Public/UMCore/UMUtilitiesInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/Protocols/UMUtilitiesInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMCore/UMViewManager.h b/ios/Pods/Headers/Public/UMCore/UMViewManager.h new file mode 120000 index 000000000..0ecf3f0a9 --- /dev/null +++ b/ios/Pods/Headers/Public/UMCore/UMViewManager.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/core/ios/UMCore/UMViewManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMFaceDetectorInterface/UMFaceDetectorManager.h b/ios/Pods/Headers/Public/UMFaceDetectorInterface/UMFaceDetectorManager.h new file mode 120000 index 000000000..4525df413 --- /dev/null +++ b/ios/Pods/Headers/Public/UMFaceDetectorInterface/UMFaceDetectorManager.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-face-detector-interface/ios/UMFaceDetectorInterface/UMFaceDetectorManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h b/ios/Pods/Headers/Public/UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h new file mode 120000 index 000000000..107a6bd55 --- /dev/null +++ b/ios/Pods/Headers/Public/UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-face-detector-interface/ios/UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMFileSystemInterface/UMFilePermissionModuleInterface.h b/ios/Pods/Headers/Public/UMFileSystemInterface/UMFilePermissionModuleInterface.h new file mode 120000 index 000000000..71343a4bc --- /dev/null +++ b/ios/Pods/Headers/Public/UMFileSystemInterface/UMFilePermissionModuleInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-file-system-interface/ios/UMFileSystemInterface/UMFilePermissionModuleInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMFileSystemInterface/UMFileSystemInterface.h b/ios/Pods/Headers/Public/UMFileSystemInterface/UMFileSystemInterface.h new file mode 120000 index 000000000..0a343f007 --- /dev/null +++ b/ios/Pods/Headers/Public/UMFileSystemInterface/UMFileSystemInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-file-system-interface/ios/UMFileSystemInterface/UMFileSystemInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMFontInterface/UMFontManagerInterface.h b/ios/Pods/Headers/Public/UMFontInterface/UMFontManagerInterface.h new file mode 120000 index 000000000..e0cab9f32 --- /dev/null +++ b/ios/Pods/Headers/Public/UMFontInterface/UMFontManagerInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-font-interface/ios/UMFontInterface/UMFontManagerInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMFontInterface/UMFontProcessorInterface.h b/ios/Pods/Headers/Public/UMFontInterface/UMFontProcessorInterface.h new file mode 120000 index 000000000..f06f1b9c2 --- /dev/null +++ b/ios/Pods/Headers/Public/UMFontInterface/UMFontProcessorInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-font-interface/ios/UMFontInterface/UMFontProcessorInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMFontInterface/UMFontScalerInterface.h b/ios/Pods/Headers/Public/UMFontInterface/UMFontScalerInterface.h new file mode 120000 index 000000000..b85c669cc --- /dev/null +++ b/ios/Pods/Headers/Public/UMFontInterface/UMFontScalerInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-font-interface/ios/UMFontInterface/UMFontScalerInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMFontInterface/UMFontScalersManagerInterface.h b/ios/Pods/Headers/Public/UMFontInterface/UMFontScalersManagerInterface.h new file mode 120000 index 000000000..092178512 --- /dev/null +++ b/ios/Pods/Headers/Public/UMFontInterface/UMFontScalersManagerInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-font-interface/ios/UMFontInterface/UMFontScalersManagerInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMImageLoaderInterface/UMImageLoaderInterface.h b/ios/Pods/Headers/Public/UMImageLoaderInterface/UMImageLoaderInterface.h new file mode 120000 index 000000000..5cb93b846 --- /dev/null +++ b/ios/Pods/Headers/Public/UMImageLoaderInterface/UMImageLoaderInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-image-loader-interface/ios/UMImageLoaderInterface/UMImageLoaderInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMPermissionsInterface/UMPermissionsInterface.h b/ios/Pods/Headers/Public/UMPermissionsInterface/UMPermissionsInterface.h new file mode 120000 index 000000000..084b0f365 --- /dev/null +++ b/ios/Pods/Headers/Public/UMPermissionsInterface/UMPermissionsInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-permissions-interface/ios/UMPermissionsInterface/UMPermissionsInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h b/ios/Pods/Headers/Public/UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h new file mode 120000 index 000000000..674d2eda9 --- /dev/null +++ b/ios/Pods/Headers/Public/UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-permissions-interface/ios/UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMReactNativeAdapter/UMBridgeModule.h b/ios/Pods/Headers/Public/UMReactNativeAdapter/UMBridgeModule.h new file mode 120000 index 000000000..d32ad5bc1 --- /dev/null +++ b/ios/Pods/Headers/Public/UMReactNativeAdapter/UMBridgeModule.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/react-native-adapter/ios/UMReactNativeAdapter/UMBridgeModule.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMReactNativeAdapter/UMModuleRegistryAdapter.h b/ios/Pods/Headers/Public/UMReactNativeAdapter/UMModuleRegistryAdapter.h new file mode 120000 index 000000000..62919c65c --- /dev/null +++ b/ios/Pods/Headers/Public/UMReactNativeAdapter/UMModuleRegistryAdapter.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/react-native-adapter/ios/UMReactNativeAdapter/UMModuleRegistryAdapter/UMModuleRegistryAdapter.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMReactNativeAdapter/UMNativeModulesProxy.h b/ios/Pods/Headers/Public/UMReactNativeAdapter/UMNativeModulesProxy.h new file mode 120000 index 000000000..e2e1ef9b5 --- /dev/null +++ b/ios/Pods/Headers/Public/UMReactNativeAdapter/UMNativeModulesProxy.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/react-native-adapter/ios/UMReactNativeAdapter/UMNativeModulesProxy/UMNativeModulesProxy.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMReactNativeAdapter/UMReactFontManager.h b/ios/Pods/Headers/Public/UMReactNativeAdapter/UMReactFontManager.h new file mode 120000 index 000000000..e6e414a04 --- /dev/null +++ b/ios/Pods/Headers/Public/UMReactNativeAdapter/UMReactFontManager.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/react-native-adapter/ios/UMReactNativeAdapter/Services/UMReactFontManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMReactNativeAdapter/UMReactLogHandler.h b/ios/Pods/Headers/Public/UMReactNativeAdapter/UMReactLogHandler.h new file mode 120000 index 000000000..3a6ab1aec --- /dev/null +++ b/ios/Pods/Headers/Public/UMReactNativeAdapter/UMReactLogHandler.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/react-native-adapter/ios/UMReactNativeAdapter/Services/UMReactLogHandler.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMReactNativeAdapter/UMReactNativeAdapter.h b/ios/Pods/Headers/Public/UMReactNativeAdapter/UMReactNativeAdapter.h new file mode 120000 index 000000000..6229053e8 --- /dev/null +++ b/ios/Pods/Headers/Public/UMReactNativeAdapter/UMReactNativeAdapter.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/react-native-adapter/ios/UMReactNativeAdapter/Services/UMReactNativeAdapter.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMReactNativeAdapter/UMReactNativeEventEmitter.h b/ios/Pods/Headers/Public/UMReactNativeAdapter/UMReactNativeEventEmitter.h new file mode 120000 index 000000000..17a735f46 --- /dev/null +++ b/ios/Pods/Headers/Public/UMReactNativeAdapter/UMReactNativeEventEmitter.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/react-native-adapter/ios/UMReactNativeAdapter/Services/UMReactNativeEventEmitter.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMReactNativeAdapter/UMViewManagerAdapter.h b/ios/Pods/Headers/Public/UMReactNativeAdapter/UMViewManagerAdapter.h new file mode 120000 index 000000000..ea0bd2d98 --- /dev/null +++ b/ios/Pods/Headers/Public/UMReactNativeAdapter/UMViewManagerAdapter.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/react-native-adapter/ios/UMReactNativeAdapter/UMViewManagerAdapter/UMViewManagerAdapter.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMReactNativeAdapter/UMViewManagerAdapterClassesRegistry.h b/ios/Pods/Headers/Public/UMReactNativeAdapter/UMViewManagerAdapterClassesRegistry.h new file mode 120000 index 000000000..7b69dfa28 --- /dev/null +++ b/ios/Pods/Headers/Public/UMReactNativeAdapter/UMViewManagerAdapterClassesRegistry.h @@ -0,0 +1 @@ +../../../../../node_modules/@unimodules/react-native-adapter/ios/UMReactNativeAdapter/UMModuleRegistryAdapter/UMViewManagerAdapterClassesRegistry.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMSensorsInterface/UMAccelerometerInterface.h b/ios/Pods/Headers/Public/UMSensorsInterface/UMAccelerometerInterface.h new file mode 120000 index 000000000..0ec8554a6 --- /dev/null +++ b/ios/Pods/Headers/Public/UMSensorsInterface/UMAccelerometerInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-sensors-interface/ios/UMSensorsInterface/UMAccelerometerInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMSensorsInterface/UMBarometerInterface.h b/ios/Pods/Headers/Public/UMSensorsInterface/UMBarometerInterface.h new file mode 120000 index 000000000..321a7bb42 --- /dev/null +++ b/ios/Pods/Headers/Public/UMSensorsInterface/UMBarometerInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-sensors-interface/ios/UMSensorsInterface/UMBarometerInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMSensorsInterface/UMDeviceMotionInterface.h b/ios/Pods/Headers/Public/UMSensorsInterface/UMDeviceMotionInterface.h new file mode 120000 index 000000000..61710a1d0 --- /dev/null +++ b/ios/Pods/Headers/Public/UMSensorsInterface/UMDeviceMotionInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-sensors-interface/ios/UMSensorsInterface/UMDeviceMotionInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMSensorsInterface/UMGyroscopeInterface.h b/ios/Pods/Headers/Public/UMSensorsInterface/UMGyroscopeInterface.h new file mode 120000 index 000000000..14e1211d7 --- /dev/null +++ b/ios/Pods/Headers/Public/UMSensorsInterface/UMGyroscopeInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-sensors-interface/ios/UMSensorsInterface/UMGyroscopeInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMSensorsInterface/UMMagnetometerInterface.h b/ios/Pods/Headers/Public/UMSensorsInterface/UMMagnetometerInterface.h new file mode 120000 index 000000000..41058e813 --- /dev/null +++ b/ios/Pods/Headers/Public/UMSensorsInterface/UMMagnetometerInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-sensors-interface/ios/UMSensorsInterface/UMMagnetometerInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMSensorsInterface/UMMagnetometerUncalibratedInterface.h b/ios/Pods/Headers/Public/UMSensorsInterface/UMMagnetometerUncalibratedInterface.h new file mode 120000 index 000000000..4d8ab7da4 --- /dev/null +++ b/ios/Pods/Headers/Public/UMSensorsInterface/UMMagnetometerUncalibratedInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-sensors-interface/ios/UMSensorsInterface/UMMagnetometerUncalibratedInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMTaskManagerInterface/UMTaskConsumerInterface.h b/ios/Pods/Headers/Public/UMTaskManagerInterface/UMTaskConsumerInterface.h new file mode 120000 index 000000000..993e10c52 --- /dev/null +++ b/ios/Pods/Headers/Public/UMTaskManagerInterface/UMTaskConsumerInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-task-manager-interface/ios/UMTaskManagerInterface/UMTaskConsumerInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMTaskManagerInterface/UMTaskInterface.h b/ios/Pods/Headers/Public/UMTaskManagerInterface/UMTaskInterface.h new file mode 120000 index 000000000..ded414eff --- /dev/null +++ b/ios/Pods/Headers/Public/UMTaskManagerInterface/UMTaskInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-task-manager-interface/ios/UMTaskManagerInterface/UMTaskInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMTaskManagerInterface/UMTaskLaunchReason.h b/ios/Pods/Headers/Public/UMTaskManagerInterface/UMTaskLaunchReason.h new file mode 120000 index 000000000..0d1b1909f --- /dev/null +++ b/ios/Pods/Headers/Public/UMTaskManagerInterface/UMTaskLaunchReason.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-task-manager-interface/ios/UMTaskManagerInterface/UMTaskLaunchReason.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMTaskManagerInterface/UMTaskManagerInterface.h b/ios/Pods/Headers/Public/UMTaskManagerInterface/UMTaskManagerInterface.h new file mode 120000 index 000000000..ba0780a6b --- /dev/null +++ b/ios/Pods/Headers/Public/UMTaskManagerInterface/UMTaskManagerInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-task-manager-interface/ios/UMTaskManagerInterface/UMTaskManagerInterface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/UMTaskManagerInterface/UMTaskServiceInterface.h b/ios/Pods/Headers/Public/UMTaskManagerInterface/UMTaskServiceInterface.h new file mode 120000 index 000000000..31b609bdf --- /dev/null +++ b/ios/Pods/Headers/Public/UMTaskManagerInterface/UMTaskServiceInterface.h @@ -0,0 +1 @@ +../../../../../node_modules/unimodules-task-manager-interface/ios/UMTaskManagerInterface/UMTaskServiceInterface.h \ No newline at end of file diff --git a/ios/Pods/Local Podspecs/EXAppLoaderProvider.podspec.json b/ios/Pods/Local Podspecs/EXAppLoaderProvider.podspec.json new file mode 100644 index 000000000..1d44aa3fd --- /dev/null +++ b/ios/Pods/Local Podspecs/EXAppLoaderProvider.podspec.json @@ -0,0 +1,18 @@ +{ + "name": "EXAppLoaderProvider", + "version": "5.0.1", + "summary": "Provides application loaders", + "description": "Provides application loaders", + "license": "MIT", + "authors": "650 Industries, Inc.", + "homepage": "https://github.com/expo/expo/tree/master/packages/expo-app-loader-provider", + "platforms": { + "ios": "10.0" + }, + "source": { + "git": "https://github.com/expo/expo.git" + }, + "source_files": "EXAppLoaderProvider/**/*.{h,m}", + "preserve_paths": "EXAppLoaderProvider/**/*.{h,m}", + "requires_arc": true +} diff --git a/ios/Pods/Local Podspecs/EXConstants.podspec.json b/ios/Pods/Local Podspecs/EXConstants.podspec.json new file mode 100644 index 000000000..e4977e973 --- /dev/null +++ b/ios/Pods/Local Podspecs/EXConstants.podspec.json @@ -0,0 +1,26 @@ +{ + "name": "EXConstants", + "version": "5.0.1", + "summary": "Provides system information that remains constant throughout the lifetime of your app.", + "description": "Provides system information that remains constant throughout the lifetime of your app.", + "license": "MIT", + "authors": "650 Industries, Inc.", + "homepage": "https://docs.expo.io/versions/latest/sdk/constants/", + "platforms": { + "ios": "10.0" + }, + "source": { + "git": "https://github.com/expo/expo.git" + }, + "source_files": "**/*.{h,m}", + "preserve_paths": "**/*.{h,m}", + "requires_arc": true, + "dependencies": { + "UMCore": [ + + ], + "UMConstantsInterface": [ + + ] + } +} diff --git a/ios/Pods/Local Podspecs/EXFileSystem.podspec.json b/ios/Pods/Local Podspecs/EXFileSystem.podspec.json new file mode 100644 index 000000000..b4b3ceac0 --- /dev/null +++ b/ios/Pods/Local Podspecs/EXFileSystem.podspec.json @@ -0,0 +1,26 @@ +{ + "name": "EXFileSystem", + "version": "5.0.1", + "summary": "Provides access to the local file system on the device.", + "description": "Provides access to the local file system on the device.", + "license": "MIT", + "authors": "650 Industries, Inc.", + "homepage": "https://docs.expo.io/versions/latest/sdk/filesystem/", + "platforms": { + "ios": "10.0" + }, + "source": { + "git": "https://github.com/expo/expo.git" + }, + "source_files": "EXFileSystem/**/*.{h,m}", + "preserve_paths": "EXFileSystem/**/*.{h,m}", + "requires_arc": true, + "dependencies": { + "UMCore": [ + + ], + "UMFileSystemInterface": [ + + ] + } +} diff --git a/ios/Pods/Local Podspecs/EXPermissions.podspec.json b/ios/Pods/Local Podspecs/EXPermissions.podspec.json new file mode 100644 index 000000000..1c7adaf5c --- /dev/null +++ b/ios/Pods/Local Podspecs/EXPermissions.podspec.json @@ -0,0 +1,26 @@ +{ + "name": "EXPermissions", + "version": "5.0.1", + "summary": "Allows you prompt for various permissions to access device sensors, personal data, etc.", + "description": "Allows you prompt for various permissions to access device sensors, personal data, etc.", + "license": "MIT", + "authors": "650 Industries, Inc.", + "homepage": "https://docs.expo.io/versions/latest/sdk/permissions/", + "platforms": { + "ios": "10.0" + }, + "source": { + "git": "https://github.com/expo/expo.git" + }, + "source_files": "EXPermissions/**/*.{h,m}", + "preserve_paths": "EXPermissions/**/*.{h,m}", + "requires_arc": true, + "dependencies": { + "UMCore": [ + + ], + "UMPermissionsInterface": [ + + ] + } +} diff --git a/ios/Pods/Local Podspecs/EXWebBrowser.podspec.json b/ios/Pods/Local Podspecs/EXWebBrowser.podspec.json new file mode 100644 index 000000000..533e64c87 --- /dev/null +++ b/ios/Pods/Local Podspecs/EXWebBrowser.podspec.json @@ -0,0 +1,23 @@ +{ + "name": "EXWebBrowser", + "version": "5.0.3", + "summary": "Provides access to the system's web browser and supports handling redirects. On iOS, it uses SFSafariViewController or SFAuthenticationSession, depending on the method you call, and on Android it uses ChromeCustomTabs. As of iOS 11, SFSafariViewController no longer shares cookies with the Safari, so if you are using WebBrowser for authentication you will want to use WebBrowser.openAuthSessionAsync, and if you just want to open a webpage (such as your app privacy policy), then use WebBrowser.openBrowserAsync.", + "description": "Provides access to the system's web browser and supports handling redirects. On iOS, it uses SFSafariViewController or SFAuthenticationSession, depending on the method you call, and on Android it uses ChromeCustomTabs. As of iOS 11, SFSafariViewController no longer shares cookies with the Safari, so if you are using WebBrowser for authentication you will want to use WebBrowser.openAuthSessionAsync, and if you just want to open a webpage (such as your app privacy policy), then use WebBrowser.openBrowserAsync.", + "license": "MIT", + "authors": "650 Industries, Inc.", + "homepage": "https://docs.expo.io/versions/latest/sdk/webbrowser/", + "platforms": { + "ios": "10.0" + }, + "source": { + "git": "https://github.com/expo/expo.git" + }, + "source_files": "EXWebBrowser/**/*.{h,m}", + "preserve_paths": "EXWebBrowser/**/*.{h,m}", + "requires_arc": true, + "dependencies": { + "UMCore": [ + + ] + } +} diff --git a/ios/Pods/Local Podspecs/UMBarCodeScannerInterface.podspec.json b/ios/Pods/Local Podspecs/UMBarCodeScannerInterface.podspec.json new file mode 100644 index 000000000..1fe79941f --- /dev/null +++ b/ios/Pods/Local Podspecs/UMBarCodeScannerInterface.podspec.json @@ -0,0 +1,18 @@ +{ + "name": "UMBarCodeScannerInterface", + "version": "2.0.1", + "summary": "An interface for bar code scanners", + "description": "An interface for bar code scanners", + "license": "MIT", + "authors": "650 Industries, Inc.", + "homepage": "https://github.com/expo/expo/tree/master/packages/unimodules-barcode-scanner-interface", + "platforms": { + "ios": "10.0" + }, + "source": { + "git": "https://github.com/expo/expo.git" + }, + "source_files": "UMBarCodeScannerInterface/**/*.{h,m}", + "preserve_paths": "UMBarCodeScannerInterface/**/*.{h,m}", + "requires_arc": true +} diff --git a/ios/Pods/Local Podspecs/UMCameraInterface.podspec.json b/ios/Pods/Local Podspecs/UMCameraInterface.podspec.json new file mode 100644 index 000000000..71bb32d47 --- /dev/null +++ b/ios/Pods/Local Podspecs/UMCameraInterface.podspec.json @@ -0,0 +1,18 @@ +{ + "name": "UMCameraInterface", + "version": "2.0.1", + "summary": "An interface package for camera", + "description": "An interface package for camera", + "license": "MIT", + "authors": "650 Industries, Inc.", + "homepage": "https://github.com/expo/expo/tree/master/packages/unimodules-camera-interface", + "platforms": { + "ios": "10.0" + }, + "source": { + "git": "https://github.com/expo/expo.git" + }, + "source_files": "**/*.{h,m}", + "preserve_paths": "**/*.{h,m}", + "requires_arc": true +} diff --git a/ios/Pods/Local Podspecs/UMConstantsInterface.podspec.json b/ios/Pods/Local Podspecs/UMConstantsInterface.podspec.json new file mode 100644 index 000000000..59c7995e9 --- /dev/null +++ b/ios/Pods/Local Podspecs/UMConstantsInterface.podspec.json @@ -0,0 +1,18 @@ +{ + "name": "UMConstantsInterface", + "version": "2.0.1", + "summary": "An interface for constants modules.", + "description": "An interface for constants modules.", + "license": "MIT", + "authors": "650 Industries, Inc.", + "homepage": "https://github.com/expo/expo/tree/master/packages/unimodules-constants-interface", + "platforms": { + "ios": "10.0" + }, + "source": { + "git": "https://github.com/expo/expo.git" + }, + "source_files": "**/*.{h,m}", + "preserve_paths": "**/*.{h,m}", + "requires_arc": true +} diff --git a/ios/Pods/Local Podspecs/UMCore.podspec.json b/ios/Pods/Local Podspecs/UMCore.podspec.json new file mode 100644 index 000000000..e0dbc7380 --- /dev/null +++ b/ios/Pods/Local Podspecs/UMCore.podspec.json @@ -0,0 +1,18 @@ +{ + "name": "UMCore", + "version": "2.0.1", + "summary": "Universal modules core", + "description": "Universal modules core", + "license": "MIT", + "authors": "650 Industries, Inc.", + "homepage": "https://github.com/expo/expo/tree/master/packages/@unimodules/core", + "platforms": { + "ios": "10.0" + }, + "source": { + "git": "https://github.com/expo/expo.git" + }, + "source_files": "UMCore/**/*.{h,m}", + "preserve_paths": "UMCore/**/*.{h,m}", + "requires_arc": true +} diff --git a/ios/Pods/Local Podspecs/UMFaceDetectorInterface.podspec.json b/ios/Pods/Local Podspecs/UMFaceDetectorInterface.podspec.json new file mode 100644 index 000000000..f926c1d36 --- /dev/null +++ b/ios/Pods/Local Podspecs/UMFaceDetectorInterface.podspec.json @@ -0,0 +1,18 @@ +{ + "name": "UMFaceDetectorInterface", + "version": "2.0.1", + "summary": "An interface package for Face Detector", + "description": "An interface package for Face Detector", + "license": "MIT", + "authors": "650 Industries, Inc.", + "homepage": "https://github.com/expo/expo/tree/master/packages/unimodules-face-detector-interface", + "platforms": { + "ios": "10.0" + }, + "source": { + "git": "https://github.com/expo/expo.git" + }, + "source_files": "UMFaceDetectorInterface/**/*.{h,m}", + "preserve_paths": "UMFaceDetectorInterface/**/*.{h,m}", + "requires_arc": true +} diff --git a/ios/Pods/Local Podspecs/UMFileSystemInterface.podspec.json b/ios/Pods/Local Podspecs/UMFileSystemInterface.podspec.json new file mode 100644 index 000000000..b841a566b --- /dev/null +++ b/ios/Pods/Local Podspecs/UMFileSystemInterface.podspec.json @@ -0,0 +1,18 @@ +{ + "name": "UMFileSystemInterface", + "version": "2.0.1", + "summary": "Interface for file system modules", + "description": "Interface for file system modules", + "license": "MIT", + "authors": "650 Industries, Inc.", + "homepage": "https://github.com/expo/expo/tree/master/packages/unimodules-file-system-interface", + "platforms": { + "ios": "10.0" + }, + "source": { + "git": "https://github.com/expo/expo.git" + }, + "source_files": "UMFileSystemInterface/**/*.{h,m}", + "preserve_paths": "UMFileSystemInterface/**/*.{h,m}", + "requires_arc": true +} diff --git a/ios/Pods/Local Podspecs/UMFontInterface.podspec.json b/ios/Pods/Local Podspecs/UMFontInterface.podspec.json new file mode 100644 index 000000000..937712de6 --- /dev/null +++ b/ios/Pods/Local Podspecs/UMFontInterface.podspec.json @@ -0,0 +1,18 @@ +{ + "name": "UMFontInterface", + "version": "2.0.1", + "summary": "Interface for managing fonts.", + "description": "Interface for managing fonts.", + "license": "MIT", + "authors": "650 Industries, Inc.", + "homepage": "https://github.com/expo/expo/tree/master/packages/unimodules-font-interface", + "platforms": { + "ios": "10.0" + }, + "source": { + "git": "https://github.com/expo/expo.git" + }, + "source_files": "UMFontInterface/**/*.{h,m}", + "preserve_paths": "UMFontInterface/**/*.{h,m}", + "requires_arc": true +} diff --git a/ios/Pods/Local Podspecs/UMImageLoaderInterface.podspec.json b/ios/Pods/Local Podspecs/UMImageLoaderInterface.podspec.json new file mode 100644 index 000000000..e84572fa8 --- /dev/null +++ b/ios/Pods/Local Podspecs/UMImageLoaderInterface.podspec.json @@ -0,0 +1,18 @@ +{ + "name": "UMImageLoaderInterface", + "version": "2.0.1", + "summary": "Interface for ImageLoader", + "description": "Interface for ImageLoader", + "license": "MIT", + "authors": "650 Industries, Inc.", + "homepage": "https://github.com/expo/expo/tree/master/packages/unimodules-image-loader-interface", + "platforms": { + "ios": "10.0" + }, + "source": { + "git": "https://github.com/expo/expo.git" + }, + "source_files": "UMImageLoaderInterface/**/*.{h,m}", + "preserve_paths": "UMImageLoaderInterface/**/*.{h,m}", + "requires_arc": true +} diff --git a/ios/Pods/Local Podspecs/UMPermissionsInterface.podspec.json b/ios/Pods/Local Podspecs/UMPermissionsInterface.podspec.json new file mode 100644 index 000000000..627ddedff --- /dev/null +++ b/ios/Pods/Local Podspecs/UMPermissionsInterface.podspec.json @@ -0,0 +1,18 @@ +{ + "name": "UMPermissionsInterface", + "version": "2.0.1", + "summary": "An interface for permissions modules", + "description": "An interface for permissions modules", + "license": "MIT", + "authors": "650 Industries, Inc.", + "homepage": "https://github.com/expo/expo/tree/master/packages/unimodules-permissions-interface", + "platforms": { + "ios": "10.0" + }, + "source": { + "git": "https://github.com/expo/expo.git" + }, + "source_files": "UMPermissionsInterface/**/*.{h,m}", + "preserve_paths": "UMPermissionsInterface/**/*.{h,m}", + "requires_arc": true +} diff --git a/ios/Pods/Local Podspecs/UMReactNativeAdapter.podspec.json b/ios/Pods/Local Podspecs/UMReactNativeAdapter.podspec.json new file mode 100644 index 000000000..962ffd36c --- /dev/null +++ b/ios/Pods/Local Podspecs/UMReactNativeAdapter.podspec.json @@ -0,0 +1,29 @@ +{ + "name": "UMReactNativeAdapter", + "version": "2.0.1", + "summary": "The adapter to use universal modules with the React Native bridge", + "description": "The adapter to use universal modules with the React Native bridge", + "license": "MIT", + "authors": "650 Industries, Inc.", + "homepage": "https://github.com/expo/expo/tree/master/packages/@unimodules/react-native-adapter", + "platforms": { + "ios": "10.0" + }, + "source": { + "git": "https://github.com/expo/expo.git" + }, + "source_files": "UMReactNativeAdapter/**/*.{h,m}", + "preserve_paths": "UMReactNativeAdapter/**/*.{h,m}", + "requires_arc": true, + "dependencies": { + "React": [ + + ], + "UMCore": [ + + ], + "UMFontInterface": [ + + ] + } +} diff --git a/ios/Pods/Local Podspecs/UMSensorsInterface.podspec.json b/ios/Pods/Local Podspecs/UMSensorsInterface.podspec.json new file mode 100644 index 000000000..364ec7b5d --- /dev/null +++ b/ios/Pods/Local Podspecs/UMSensorsInterface.podspec.json @@ -0,0 +1,18 @@ +{ + "name": "UMSensorsInterface", + "version": "2.0.1", + "summary": "An interface for sensors modules.", + "description": "An interface for sensors modules.", + "license": "MIT", + "authors": "650 Industries, Inc.", + "homepage": "https://github.com/expo/expo/tree/master/packages/unimodules-sensors-interface", + "platforms": { + "ios": "10.0" + }, + "source": { + "git": "https://github.com/expo/expo.git" + }, + "source_files": "UMSensorsInterface/**/*.{h,m}", + "preserve_paths": "UMSensorsInterface/**/*.{h,m}", + "requires_arc": true +} diff --git a/ios/Pods/Local Podspecs/UMTaskManagerInterface.podspec.json b/ios/Pods/Local Podspecs/UMTaskManagerInterface.podspec.json new file mode 100644 index 000000000..9558ef921 --- /dev/null +++ b/ios/Pods/Local Podspecs/UMTaskManagerInterface.podspec.json @@ -0,0 +1,18 @@ +{ + "name": "UMTaskManagerInterface", + "version": "2.0.1", + "summary": "Universal module interface package for TaskManager", + "description": "Universal module interface package for TaskManager", + "license": "MIT", + "authors": "650 Industries, Inc.", + "homepage": "https://github.com/expo/expo/tree/master/packages/unimodules-task-manager-interface", + "platforms": { + "ios": "10.0" + }, + "source": { + "git": "https://github.com/expo/unimodules-task-manager-interface.git" + }, + "source_files": "UMTaskManagerInterface/**/*.{h,m}", + "preserve_paths": "UMTaskManagerInterface/**/*.{h,m}", + "requires_arc": true +} diff --git a/ios/Pods/Manifest.lock b/ios/Pods/Manifest.lock index a989782ab..82cc85994 100644 --- a/ios/Pods/Manifest.lock +++ b/ios/Pods/Manifest.lock @@ -3,6 +3,18 @@ PODS: - Crashlytics (3.12.0): - Fabric (~> 1.9.0) - DoubleConversion (1.1.6) + - EXAppLoaderProvider (5.0.1) + - EXConstants (5.0.1): + - UMConstantsInterface + - UMCore + - EXFileSystem (5.0.1): + - UMCore + - UMFileSystemInterface + - EXPermissions (5.0.1): + - UMCore + - UMPermissionsInterface + - EXWebBrowser (5.0.3): + - UMCore - Fabric (1.9.0) - Firebase/Core (5.20.2): - Firebase/CoreOnly @@ -136,11 +148,31 @@ PODS: - RNScreens (1.0.0-alpha.22): - React - RSKImageCropper (2.2.1) + - UMBarCodeScannerInterface (2.0.1) + - UMCameraInterface (2.0.1) + - UMConstantsInterface (2.0.1) + - UMCore (2.0.1) + - UMFaceDetectorInterface (2.0.1) + - UMFileSystemInterface (2.0.1) + - UMFontInterface (2.0.1) + - UMImageLoaderInterface (2.0.1) + - UMPermissionsInterface (2.0.1) + - UMReactNativeAdapter (2.0.1): + - React + - UMCore + - UMFontInterface + - UMSensorsInterface (2.0.1) + - UMTaskManagerInterface (2.0.1) - yoga (0.59.8.React) DEPENDENCIES: - Crashlytics (~> 3.12.0) - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`) + - EXAppLoaderProvider (from `../node_modules/expo-app-loader-provider/ios`) + - EXConstants (from `../node_modules/expo-constants/ios`) + - EXFileSystem (from `../node_modules/expo-file-system/ios`) + - EXPermissions (from `../node_modules/expo-permissions/ios`) + - EXWebBrowser (from `../node_modules/expo-web-browser/ios`) - Fabric (~> 1.9.0) - Firebase/Core (~> 5.20.1) - Firebase/Performance (~> 5.20.1) @@ -163,6 +195,18 @@ DEPENDENCIES: - RNDeviceInfo (from `../node_modules/react-native-device-info`) - RNImageCropPicker (from `../node_modules/react-native-image-crop-picker`) - RNScreens (from `../node_modules/react-native-screens`) + - UMBarCodeScannerInterface (from `../node_modules/unimodules-barcode-scanner-interface/ios`) + - UMCameraInterface (from `../node_modules/unimodules-camera-interface/ios`) + - UMConstantsInterface (from `../node_modules/unimodules-constants-interface/ios`) + - "UMCore (from `../node_modules/@unimodules/core/ios`)" + - UMFaceDetectorInterface (from `../node_modules/unimodules-face-detector-interface/ios`) + - UMFileSystemInterface (from `../node_modules/unimodules-file-system-interface/ios`) + - UMFontInterface (from `../node_modules/unimodules-font-interface/ios`) + - UMImageLoaderInterface (from `../node_modules/unimodules-image-loader-interface/ios`) + - UMPermissionsInterface (from `../node_modules/unimodules-permissions-interface/ios`) + - "UMReactNativeAdapter (from `../node_modules/@unimodules/react-native-adapter/ios`)" + - UMSensorsInterface (from `../node_modules/unimodules-sensors-interface/ios`) + - UMTaskManagerInterface (from `../node_modules/unimodules-task-manager-interface/ios`) - yoga (from `../node_modules/react-native/ReactCommon/yoga`) SPEC REPOS: @@ -190,6 +234,21 @@ SPEC REPOS: EXTERNAL SOURCES: DoubleConversion: :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec" + EXAppLoaderProvider: + :path: !ruby/object:Pathname + path: "../node_modules/expo-app-loader-provider/ios" + EXConstants: + :path: !ruby/object:Pathname + path: "../node_modules/expo-constants/ios" + EXFileSystem: + :path: !ruby/object:Pathname + path: "../node_modules/expo-file-system/ios" + EXPermissions: + :path: !ruby/object:Pathname + path: "../node_modules/expo-permissions/ios" + EXWebBrowser: + :path: !ruby/object:Pathname + path: "../node_modules/expo-web-browser/ios" Folly: :podspec: "../node_modules/react-native/third-party-podspecs/Folly.podspec" glog: @@ -208,6 +267,42 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-image-crop-picker" RNScreens: :path: "../node_modules/react-native-screens" + UMBarCodeScannerInterface: + :path: !ruby/object:Pathname + path: "../node_modules/unimodules-barcode-scanner-interface/ios" + UMCameraInterface: + :path: !ruby/object:Pathname + path: "../node_modules/unimodules-camera-interface/ios" + UMConstantsInterface: + :path: !ruby/object:Pathname + path: "../node_modules/unimodules-constants-interface/ios" + UMCore: + :path: !ruby/object:Pathname + path: "../node_modules/@unimodules/core/ios" + UMFaceDetectorInterface: + :path: !ruby/object:Pathname + path: "../node_modules/unimodules-face-detector-interface/ios" + UMFileSystemInterface: + :path: !ruby/object:Pathname + path: "../node_modules/unimodules-file-system-interface/ios" + UMFontInterface: + :path: !ruby/object:Pathname + path: "../node_modules/unimodules-font-interface/ios" + UMImageLoaderInterface: + :path: !ruby/object:Pathname + path: "../node_modules/unimodules-image-loader-interface/ios" + UMPermissionsInterface: + :path: !ruby/object:Pathname + path: "../node_modules/unimodules-permissions-interface/ios" + UMReactNativeAdapter: + :path: !ruby/object:Pathname + path: "../node_modules/@unimodules/react-native-adapter/ios" + UMSensorsInterface: + :path: !ruby/object:Pathname + path: "../node_modules/unimodules-sensors-interface/ios" + UMTaskManagerInterface: + :path: !ruby/object:Pathname + path: "../node_modules/unimodules-task-manager-interface/ios" yoga: :path: "../node_modules/react-native/ReactCommon/yoga" @@ -215,6 +310,11 @@ SPEC CHECKSUMS: boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c Crashlytics: 07fb167b1694128c1c9a5a5cc319b0e9c3ca0933 DoubleConversion: bb338842f62ab1d708ceb63ec3d999f0f3d98ecd + EXAppLoaderProvider: 8f2c04a0a8d9be91f7c37c2b8824077ee5d4bc01 + EXConstants: 9fe56eec8bf0a3ee9beb8f3381fa91340a5b1e57 + EXFileSystem: 96624bd4b93a0684335c421a6567a92b25bd7ddb + EXPermissions: 8e05008ed4fc8c9be6c17ea95301fc3f3f005a7b + EXWebBrowser: e03894b4583bb726e5ea05d01b341ba00134c2b5 Fabric: f988e33c97f08930a413e08123064d2e5f68d655 Firebase: 0c8cf33f266410c61ab3e2265cfa412200351d9c FirebaseABTesting: 1f50b8d50f5e3469eea54e7463a7b7fe221d1f5e @@ -241,8 +341,20 @@ SPEC CHECKSUMS: RNImageCropPicker: e608efe182652dc8690268cb99cb5a201f2b5ea3 RNScreens: 720a9e6968beb73e8196239801e887d8401f86ed RSKImageCropper: 98296ad26b41753f796b6898d015509598f13d97 + UMBarCodeScannerInterface: d5602e23de37f95bb4ee49ee3b2711e128058ae9 + UMCameraInterface: dde8491778ed062348e569bad33a890e60c32c9d + UMConstantsInterface: de48a63a5af572fc4dcc0e68051b00503b83e301 + UMCore: 047dc01ae4ccdd0c993f2c190f2489e5409c3ad0 + UMFaceDetectorInterface: badd9e3d206f5ba254c85a26afa43da06638575f + UMFileSystemInterface: ff9a18c26ee6321dc21a3f9663efe3a55313d4db + UMFontInterface: 0575f33184974a38f3528a4750729c7f5256b848 + UMImageLoaderInterface: ee8642347161d66272e841377a888957feb1f48e + UMPermissionsInterface: 2238fe9d7f99457a5cfe7f3140c2521c5bf453a6 + UMReactNativeAdapter: 110be971ff044f8cfd37cbf565a264cd79858391 + UMSensorsInterface: cda3ec177c7ff0a138e3135414b4a29013389358 + UMTaskManagerInterface: 296793ab2a7e181fe5ebe2ba9b40ae208ab4b8fa yoga: 92b2102c3d373d1a790db4ab761d2b0ffc634f64 -PODFILE CHECKSUM: f98adf896db83acfddda2f17bf015d55d15a89f2 +PODFILE CHECKSUM: b5e15bac5f306ea636e16393a7a6eb42c017ea99 COCOAPODS: 1.6.2 diff --git a/ios/Pods/Pods.xcodeproj/project.pbxproj b/ios/Pods/Pods.xcodeproj/project.pbxproj index b818f098f..a4855c245 100644 --- a/ios/Pods/Pods.xcodeproj/project.pbxproj +++ b/ios/Pods/Pods.xcodeproj/project.pbxproj @@ -7,6 +7,24 @@ objects = { /* Begin PBXAggregateTarget section */ + 031F6220C2D49E4AD5F61FAA0ECADF64 /* UMFileSystemInterface */ = { + isa = PBXAggregateTarget; + buildConfigurationList = 0AEE3B884AE65D5E5F077CCD06AD8643 /* Build configuration list for PBXAggregateTarget "UMFileSystemInterface" */; + buildPhases = ( + ); + dependencies = ( + ); + name = UMFileSystemInterface; + }; + 037B3080D17C0918F3E81F3A1BC9210D /* UMPermissionsInterface */ = { + isa = PBXAggregateTarget; + buildConfigurationList = 74566EA55AFBA560F2ECF92B9E8233D3 /* Build configuration list for PBXAggregateTarget "UMPermissionsInterface" */; + buildPhases = ( + ); + dependencies = ( + ); + name = UMPermissionsInterface; + }; 1ABBF6F89787BBEDF49B4636ADB45587 /* FirebaseAnalytics */ = { isa = PBXAggregateTarget; buildConfigurationList = EFB23A08CD9D9A7BD879907D97754523 /* Build configuration list for PBXAggregateTarget "FirebaseAnalytics" */; @@ -32,6 +50,15 @@ ); name = FirebaseABTesting; }; + 3FCFE37F3115CF59C06A7F46C1F6C92A /* UMTaskManagerInterface */ = { + isa = PBXAggregateTarget; + buildConfigurationList = D6194BA4B17FB0CFD3D0FEF1CD44E023 /* Build configuration list for PBXAggregateTarget "UMTaskManagerInterface" */; + buildPhases = ( + ); + dependencies = ( + ); + name = UMTaskManagerInterface; + }; 42F7AF66FD1178857DC3A2834552BE76 /* FirebasePerformance */ = { isa = PBXAggregateTarget; buildConfigurationList = 1517040FB8F3211E3574BAA7ECC7AA3A /* Build configuration list for PBXAggregateTarget "FirebasePerformance" */; @@ -81,6 +108,15 @@ ); name = GoogleIDFASupport; }; + 7EE372278F1E44FB04162ED4F315624E /* UMCameraInterface */ = { + isa = PBXAggregateTarget; + buildConfigurationList = F0D00D6F1A1703D2BFEA1CB998A48DB8 /* Build configuration list for PBXAggregateTarget "UMCameraInterface" */; + buildPhases = ( + ); + dependencies = ( + ); + name = UMCameraInterface; + }; 97C8CD7E4179727E4F374CABD338D2BB /* Firebase */ = { isa = PBXAggregateTarget; buildConfigurationList = 8D737EA61FBFEFB85394C3D203C4252A /* Build configuration list for PBXAggregateTarget "Firebase" */; @@ -93,6 +129,24 @@ ); name = Firebase; }; + 9A9B9448103B296FA53D9693C8DFAE9F /* UMImageLoaderInterface */ = { + isa = PBXAggregateTarget; + buildConfigurationList = EE6C1094FC7D9861BF1BD7BB5C0CCAEB /* Build configuration list for PBXAggregateTarget "UMImageLoaderInterface" */; + buildPhases = ( + ); + dependencies = ( + ); + name = UMImageLoaderInterface; + }; + 9BF0DA5C4D6A4C61F825D88A08C2F7CA /* UMSensorsInterface */ = { + isa = PBXAggregateTarget; + buildConfigurationList = E814066082AFCAE886CDCA8CCC0E6400 /* Build configuration list for PBXAggregateTarget "UMSensorsInterface" */; + buildPhases = ( + ); + dependencies = ( + ); + name = UMSensorsInterface; + }; AB021401ADE9E1431240BBA948E7965E /* GoogleAppMeasurement */ = { isa = PBXAggregateTarget; buildConfigurationList = 3D8810E196AB78ED3123A01E8F97036C /* Build configuration list for PBXAggregateTarget "GoogleAppMeasurement" */; @@ -123,39 +177,83 @@ ); name = Fabric; }; + D6CDBA4F567B018F442382D2520D6D27 /* UMConstantsInterface */ = { + isa = PBXAggregateTarget; + buildConfigurationList = 51C66BBB4BF416CDA4D6EB626E21DA79 /* Build configuration list for PBXAggregateTarget "UMConstantsInterface" */; + buildPhases = ( + ); + dependencies = ( + ); + name = UMConstantsInterface; + }; + E982F26D0D763FE8A6D551E895D4027A /* UMFaceDetectorInterface */ = { + isa = PBXAggregateTarget; + buildConfigurationList = 44B1206A4CD67DBEE02778F61B0F0995 /* Build configuration list for PBXAggregateTarget "UMFaceDetectorInterface" */; + buildPhases = ( + ); + dependencies = ( + ); + name = UMFaceDetectorInterface; + }; + EF4A49EB410755DB3CEB3DAA961FFB19 /* UMBarCodeScannerInterface */ = { + isa = PBXAggregateTarget; + buildConfigurationList = A67C7184E2C5B89BECADE830E1024B7C /* Build configuration list for PBXAggregateTarget "UMBarCodeScannerInterface" */; + buildPhases = ( + ); + dependencies = ( + ); + name = UMBarCodeScannerInterface; + }; + F285EFD8528706D9EB51D7540269B791 /* UMFontInterface */ = { + isa = PBXAggregateTarget; + buildConfigurationList = FF529BA1B25A4F29765E8C2ABB0CE7FD /* Build configuration list for PBXAggregateTarget "UMFontInterface" */; + buildPhases = ( + ); + dependencies = ( + ); + name = UMFontInterface; + }; /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ - 001839AE00BA4FB376F8BF4F71C34EDD /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 181D20640F43D8CB7EC6EAB505B86318 /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0219B694AE3D0E38DF1D4A956F09D1A9 /* GPBCodedInputStream_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 078FF8EC0ECED7B97D6279D0D49840E0 /* GPBCodedInputStream_PackagePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 02DBA939CE679A68546E01F00A6027D3 /* FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = E4C48284CABF83F748FB75471EE6008D /* FIROptions.m */; }; 02FF5D849A0664874439EF4BAC2A029C /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB1BBCD3F64FF8BA9250E80D83F2FCB0 /* Conv.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1"; }; }; 055F4F0589128F13470D73379414A429 /* FIRAnalyticsConfiguration+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B0EBF1B3694309DFDBB34914A5D348FE /* FIRAnalyticsConfiguration+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 05753D9606AF2B7EE9248F144B12C078 /* GTMNSData+zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 6734DE64ED0684F4ED7E862F0B473C09 /* GTMNSData+zlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05784E4F577C71F801295AA360FEDBAA /* EXContactsRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 07621CD38AF5056D16B706FF2917D8F8 /* EXContactsRequester.m */; }; + 0649814FCE8D1A872EEEE4760938BF7E /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = A14A6093EFD30BB027DD8CCF002590BD /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 068F141A4D4F93685151DDA6BC5270D0 /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FF181FB6116A9CA2DBFC3D40F5EC124 /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; 07F8D080E8BF101BCF8A70FCAEBE060F /* FIRErrors.m in Sources */ = {isa = PBXBuildFile; fileRef = B70DF0D054083CCB1DE9AC9B8D3926B0 /* FIRErrors.m */; }; + 08AA3599F2E941302E152C039AEEAA98 /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CA6D2A9C2E6E9D04B92B2A07B36DB20 /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; 08F9747618A9327A39D7B1AF00D5DC5C /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 16425F137AEAF28E31DBF3D7192A5571 /* diy-fp.cc */; }; 091C0C0E3A30D286E30F860AE0925759 /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = A2B5536C4DF71588F097DDAB97B554F5 /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; 093B41BC8332F6869816B37BEE274ED5 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = D7D23CD108787BFAAD18B7070B91E9C1 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 09614DD24882F2F2E15B7312628D928F /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 9420F602F4192D15D8FA1069CC31E68F /* RNDeviceInfo.m */; }; - 09AFCE571D4D86700F73BA90A6594C33 /* RNCUIWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D1765AB3C29325E0A549F7FA48939BE /* RNCUIWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 09BD412B70CA879571F933AF2CF6404D /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = BA53310A7B00B120FCF2F5B70A54DB45 /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 097FAB099558BE69C5B07C5CBF958442 /* EXCameraPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = F57479556D5C216C32A904C334E1813B /* EXCameraPermissionRequester.m */; }; + 0A22011D34F56D40C55D8124106DAAD3 /* EXLocationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = A25E946B1A5EC1622D8EF647D8116506 /* EXLocationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A42B05646032C26BCD812C94D27B004 /* EXRemoteNotificationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F5082C5C685A7BD8CD31C7F343D777A /* EXRemoteNotificationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0A63FF2A23BA8EF950D29CA533F04607 /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CC1EA5EF5AC122334A24592ADDB26BC /* MallocImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1"; }; }; 0AC85B4ED3A0B32B50063F4CB81A290E /* GULAppEnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = AB5E8E6109691A6353CB4DD1B46E0BA2 /* GULAppEnvironmentUtil.m */; }; - 0C29815B0841F93565BCEA72C9A7A5A8 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 35BF4AC5DF9B811679F83A83DCF63137 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 0C3B7C372E8CCD83F33E490FFA6FC98E /* FIRInstanceIDKeychain.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D9623D4DB3EC29B6AD964E55373B73D /* FIRInstanceIDKeychain.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0CFAACD77EB99245C7D94C7749CE3A3D /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 6697EA434D23502A2D809B6B7E6E3A4B /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0D2EC3F4873B4B4E7B1FC9F4CC2E22B9 /* FIRInstanceIDLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C0A208B50BC7DD0CB91ED9CAC3066BE /* FIRInstanceIDLogger.m */; }; + 0E98DD3571CB4DEFE85CD2685B10C3D8 /* RSKImageScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 13D445095FC98E1953690D565C881FDD /* RSKImageScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0FBC3916AAAFD9B34F65BFE3DDF349FE /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E84271A95440E502D18C5E94D631D9E /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0FBF6BE462F9B1EDF1D24CF41C77BC94 /* EXCalendarRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = AD38BACBCDE0C87546CEC1DA964E9C4F /* EXCalendarRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; 10695B47303DF2F97F58581E0E53C2E2 /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 011AC49904E60DBE7374EF4C6C46CCC5 /* SpookyHashV2.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1"; }; }; 107BF2E806089DC6DD5715D1FCADC1FF /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = BB9118D470BB9F2108A60D3ADF6C1EC3 /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 10CA342E4D5EFCA2203B3EC2C8EE61C2 /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 6BEC5CB1F4874AAD0138959794C1CF02 /* QBImagePicker.storyboard */; }; + 118D14EEDC301F9CEE4F52D3D44F9F26 /* YGMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1C17A5EEE73F2A28DBEEB6E1464683A1 /* YGMarker.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 11ACF64693885AF840960AE177A5B4D7 /* GULLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 54627613061D55A797A2AFCFB0A864D7 /* GULLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; 11C5E4D77536108141631964EB64A308 /* FIRInstanceIDConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = CE8C6D11CF7E5AF31E2AE0306111F7F1 /* FIRInstanceIDConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12ACC94DE2E5700B6CCF85313043EEC5 /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D3E20FDB85B0DEE0046C9D4D938B4D1 /* UMAppDelegateWrapper.m */; }; 13344292745B46D6C5C804CDE24D3BFF /* FIRInstanceIDBackupExcludedPlist.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BF13B1EC347270A141AF1842CDAF405 /* FIRInstanceIDBackupExcludedPlist.m */; }; 13AC1B6E083DF13B164ACE78E8784649 /* FIRInstanceIDBackupExcludedPlist.h in Headers */ = {isa = PBXBuildFile; fileRef = A6AF7CBCB46B2ECD4D4D365D894F5455 /* FIRInstanceIDBackupExcludedPlist.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1673D44D7A590A1B50A0CAED06E77AF7 /* Duration.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AE3A44AE964E532BF5CCB7C7ECBF108 /* Duration.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 16C252A8705DD134AFFA5C75C53D8098 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = E9AE052459B4C798ACAB6AAB4C2F0CB0 /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; 16CBCCDFDB0D21E6C825EAEC1409161D /* FIRInstanceIDConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = C028BB3DFE4D8493D4B9D24B9C3BFDDE /* FIRInstanceIDConstants.m */; }; + 16E7AD971A8C64747F7B1E5207EB28F0 /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D60F17861DBC7F2C20EBB3116BBD819 /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 16FB16123FF73194DE095D2013CC244F /* FIRComponentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 4124992184BAF918EAD45DF0D83DA693 /* FIRComponentType.m */; }; 173458C6AD8D4F6E0191F1C0B4A48CFC /* FIRInstanceID+Private.m in Sources */ = {isa = PBXBuildFile; fileRef = 59B18FAFDBF7C97CA820446A7A40E385 /* FIRInstanceID+Private.m */; }; + 176C113A21C2EF55A472AFA80EC39711 /* UIImage+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = D5C124EA6E1C40165CF089F6400F47EF /* UIImage+RSKImageCropper.m */; }; 17E0E641870D2DF76133B0E009B014C4 /* Duration.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = 630D96CF42C5D421F8148108C056654D /* Duration.pbobjc.h */; settings = {ATTRIBUTES = (Project, ); }; }; 18B1B61855C9B69D71746E578DE198CC /* Empty.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = A1C878EFBC94ECAB6800F32C740907CE /* Empty.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; 18FB4261493C670629A85992F786101C /* Wrappers.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CB3EF08CDD1CF865F3C42A5BB449708 /* Wrappers.pbobjc.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -163,54 +261,65 @@ 1A6BB3682752BA9D73FB55FEFB1AB20D /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 22293BA067850112F37BE2951B912138 /* signalhandler.cc */; }; 1B5BCA7CE5BC8921E2C38DF493C52578 /* FIRErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = B18FD72A3EB5A96181A5E65A20158C48 /* FIRErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1DB06C995ABDDD738BFD40217EC07EF7 /* FIRLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = A7FB755B6494E4CBB67B357467B03FBB /* FIRLogger.m */; }; - 1DE05E6830F0ABE6CCE4C9ADFA2E8AF3 /* RSKInternalUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 59AFCE36072473C2A6DFE33FD5ED1CB2 /* RSKInternalUtility.m */; }; + 1DC1822ABF3DF8A69FF17B804CC49FA1 /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DC7C3515580940D0C1C64597E302966 /* QBAlbumsViewController.m */; }; 1DEBCB73B19589825892640DDE292CB0 /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8C0384F4A1B46D20CEA298035E7C5855 /* symbolize.cc */; }; - 1F0840859666FB3BC343022167885B7B /* RNCUIWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BAE630AF22C431D47F6644AAFFBC9604 /* RNCUIWebViewManager.m */; }; + 1E7F403014ACA53DDDFB3DEF4C6AA08C /* EXCameraRollRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 49A652931CE64C000A07DD2240216CB4 /* EXCameraRollRequester.m */; }; + 1ED7437893A44EF959745DC05B2E34A7 /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 63C8128F9A3A5D250BFC71249E0FEC55 /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1FB09E38A88700679246F2178BC1DB1F /* GULNSData+zlib.m in Sources */ = {isa = PBXBuildFile; fileRef = D16AF918A382DA5D5F9D4257DDECA4C6 /* GULNSData+zlib.m */; }; 1FD7DFA53B2E89285E085D13F0A7D2CA /* Empty.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = 6499163217FEC226F460D5D8529782C6 /* Empty.pbobjc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1FE4B39F4357606FF23D1632FD3BD1FA /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = BB3766A8CE178857C32BCB7E8B3D700F /* UMModuleRegistry.m */; }; 20BA40C421853310C98499D9267451D0 /* GULNetworkURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B254C6B665958AB2EE0FF41B55E87D9 /* GULNetworkURLSession.m */; }; + 20C667BDA560C5D5EE23F8A14D3BA8CE /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8408AD1D1943C833A6B9BBA92F7588E2 /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20F0D13F0C31A19295812D26BA9F58B9 /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = FC508D515D80F54B5CB658FC4FE3802A /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20FDBCE40A19D0476FA07B56F6BCE1C6 /* FIRDependency.h in Headers */ = {isa = PBXBuildFile; fileRef = BA73B2715BDBED36501431ADECCB9C33 /* FIRDependency.h */; settings = {ATTRIBUTES = (Project, ); }; }; 215413451619226DBABEDA4EAAD490AB /* FIRInstanceIDCheckinPreferences.h in Headers */ = {isa = PBXBuildFile; fileRef = C3D903C6F31578BB1496E10CC7660C28 /* FIRInstanceIDCheckinPreferences.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21DC86B47BFEA52D0CBA5464A8750B66 /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 04387AC8C6AE41C3100B505F8335F30D /* QBVideoIndicatorView.m */; }; + 21CD42785A17C66AA10DF89D37135D0A /* RNCUIWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 08D861E40D5AC82A4B5C559FCBD3EBE9 /* RNCUIWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 21FB802D68798B4FC220407A9B8493F8 /* FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 3898F03FA6F5B8EC91001D51A7ADCBF2 /* FIRApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2214808510C298F0139EE97653F1FEDB /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7662F13E288A068B7A314AB2C0D620EB /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 23AE483DD4588EDF9F5589977687F69F /* FIRComponentContainerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = EB42AB4A769B8206971D52BD7228724B /* FIRComponentContainerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 23F1CD33721B4192BBD5413B873718F8 /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = A05B3B53971D89846CBF9E89E50C6122 /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24E201C915CCA46BB9E2B520E16CE96A /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 8C12D44C3342E3DCF923AFC75D90DFC1 /* en.lproj */; }; 251140E2C8D95EBE845BA1433816F665 /* GTMSessionUploadFetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = B3FAFB7BCCD5C53538A4E9ED0729FF9D /* GTMSessionUploadFetcher.m */; }; 25355E9F2748D2A37E9463EB8ED30A22 /* GPBRuntimeTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AF96CFD962855C85F574FBD2C954DE2 /* GPBRuntimeTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 253929A2E77DD3E6FCDAA4DDD8D8F62E /* RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = A4F2AA49E1687DFB015A34423BE87536 /* RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 274168A8174F9C8761C1D37C13ECF3D9 /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 256F73640791D9E203ABC811B5F47544 /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25F287CE25F971F27B8C0B0E3ACCD603 /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = F550274E78EAC3866BE2D581199E62FC /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 284CB9518CF4323C95538E903174FAE0 /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 0107A3ABF10D02533CF3C32C99548012 /* RNSScreen.m */; }; + 2871049A24773B2E25C824457D9148D2 /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = F688E90AA09BCD1670AC3241EA0D2F50 /* ImageCropPicker.m */; }; 28AA073E13CAF3B9F03213FB3DBB51D1 /* FIRInstanceIDCheckinPreferences+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B18D92F9CCA81F237800EF33FA92CB4D /* FIRInstanceIDCheckinPreferences+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 28C05C7E5A397E4FD0A2D23360652E57 /* RSKImageCropViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D98378181E5D1EB7E3D3B9BC346926D /* RSKImageCropViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 29445CE104128F18244A0621D2DFBF04 /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = E8DE43DFD7CC3A804076BF1825A63034 /* QBCheckmarkView.m */; }; + 29D3B622E14FEEB68740B37BD30F160C /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EA85B9EE28BF14E7D97230CBCE2F04E /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A24C8BAFE01F793C9E4E740C2218FE3 /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3219006E7D6EEA1CA01EC2AD1F8F1AC6 /* QBAlbumCell.m */; }; 2ABE0C837D40AAB898715DEBF573F8A0 /* GULLoggerCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = A2412265E936E16EF8CAFEA80AC61815 /* GULLoggerCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2AF142EB7D746412636B3DEDB0019974 /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = FABE7A4D0F7AAB8B1351F965306DE4CC /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2B4855FBDD7E6447B957F25EF568AE39 /* GPBDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 29CC28732B35F69DDD786CBEBEED2149 /* GPBDictionary.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2B611DF3E61BCA6065DFB637C49C3DD1 /* GPBUnknownField_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EFD7D606C5FCF2524B1CA130FFB8982 /* GPBUnknownField_PackagePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C520E5225CE3BE7F6AADECA719E57AF /* FIRInstanceIDCheckinPreferences_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DFC645B36E2820CBD47C45BF1DFEE72 /* FIRInstanceIDCheckinPreferences_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C982A909201E7FF49A1AE8148E479BC /* GULNetworkLoggerProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 4217C74187711229B5945ADEDB0A9DA0 /* GULNetworkLoggerProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2CFE8515CA9EDB362003E8212767039E /* GPBRootObject.h in Headers */ = {isa = PBXBuildFile; fileRef = E7EBE525A09050866014CB02AF5B19BB /* GPBRootObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2EF172363D5F62BDE384B0479F399B85 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D17550BF994FBF06C73511851CEB5EE /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2F663F4A45768143AA9425436399F4CC /* GPBDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E2D1F54C052F13ABE73A9D113CC6625 /* GPBDictionary.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 2FDC94D70D59535B36AFFA269FA06C12 /* react-native-splash-screen-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DAA8B42F52E23DE8B4AB068E101E8594 /* react-native-splash-screen-dummy.m */; }; + 307CB65169E8986E7C907168C1FDDF66 /* EXAppLoaderProvider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CCAAE8B347C2D621F490FBE4518C20FC /* EXAppLoaderProvider-dummy.m */; }; 309BB13F15CBF5522705735F160B9AEF /* GPBWireFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = ECDE53F648C58F537F5674A4108DEB3E /* GPBWireFormat.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 316956B60CCE1E969FEA694DD2C73396 /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 57A1108F22DB53BDAA0BE96B7DDCCBD4 /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 30EED7A34D9A1000D1EB522E97493972 /* EXCalendarRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = EC686A1BED1F8845F06C785355A46D41 /* EXCalendarRequester.m */; }; 330F71A0320C2DD89EB7543AEB3772D8 /* GULNetworkURLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = EE0E0D2257A57CE5396CC60C20291BA9 /* GULNetworkURLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; 332D3BA85C0C086218AA3E94676334DD /* FIRInstanceIDCheckinPreferences.m in Sources */ = {isa = PBXBuildFile; fileRef = 525C647EEF47536DBF52A18EA0147F7C /* FIRInstanceIDCheckinPreferences.m */; }; + 334FD83F947E195B6B62B98DFEAD03EC /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 99F03A190FE8C0B6B52D4E6DF67D34B4 /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33519CEB7A0FFF0BDB8526C28B0B5F42 /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 6651D14A463FBCCB3B207312B3279DFB /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33E6E0865A7FCBE3C47106697186DF91 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = B59C809BF2F7DBD59CE4CA83A46F529F /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; 340C84373AAEB32501315E9FDB7B595D /* GULReachabilityChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = A56F7E48750D68E7167D657A3975D705 /* GULReachabilityChecker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3487EFEBA5B19AA89C3A61E8C80C1346 /* GPBCodedOutputStream_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D1B92FF422855E7F24CBC59BA2A31C4 /* GPBCodedOutputStream_PackagePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 350C5BA9EC252A3DA2C30BF86967CEBD /* RNCWKWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A400D5102BE84445B019430EA3BE8B4 /* RNCWKWebViewManager.m */; }; + 35625E8C93B50B12963974B96BA1DCE0 /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = C352EE6E151EDC8523F4F13C165280E6 /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 35D02A2D942E8209D2B3A418A3DEF068 /* FIRComponentContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 622A888BCCAB419A51B31C52E811CF12 /* FIRComponentContainer.m */; }; 362240CF1E3FFF96963EAB010888B46C /* GPBUnknownFieldSet_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 845C431A9E25DE99DB18E6F00FBDCBF8 /* GPBUnknownFieldSet_PackagePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36CF622F192C797B907793BC69FACE90 /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F745DA3C984A2AACDE016C230536203 /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 370B496315BB42D0232BD6BC4949B518 /* FIRApp.m in Sources */ = {isa = PBXBuildFile; fileRef = F861D6FCD688186A198304576ADBC85F /* FIRApp.m */; }; 3728CB53E4723B332E0C5D8CD2409CDE /* ieee.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DBE5B5C519267A9659862AF6C8F3EC7 /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 37F3A39510FAF04BCA058F5F2AC3C128 /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F070DB8778F84DDDEFFBD0B665025401 /* QBAssetCell.m */; }; 3830C1B857C5717C7DBC2CCC16306EA8 /* GPBExtensionRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AF2CE3186BE637555516FB742354EB9 /* GPBExtensionRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 387FDA604382A9626FBB56DAC67162DD /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A7B78D23D17C806D9968287D113B87CD /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 38BCB127248925C97DA22D9ADD596A34 /* FIRInstanceIDDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 975D4AA90560D485466B4A51B23DE27F /* FIRInstanceIDDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3972FE6095DF71F6091188C712E9A122 /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = CA6B202915B4D395579B1952B3BF2110 /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3975A189814E8B3B79F9566A9FECC624 /* FieldMask.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D1AC57504505A93DD8D0EA687056CBB /* FieldMask.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 3AFB3CAEE7F92245F787FC644EDC731E /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A4EB1F6C34C64107C63FBDC6626368C /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3AB303FC717C5A08935E7F8EB822F68F /* react-native-splash-screen-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AED8DB3E621C8A7B8E0815DFC1B585C /* react-native-splash-screen-dummy.m */; }; 3B1FAF90703091E00ADB644BFFBFC2B2 /* Wrappers.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = 19D813648EB603BAF163D4B61F2C5691 /* Wrappers.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; 3BFB2A7A3853E6DC492B62AF69F653D7 /* GULReachabilityChecker.m in Sources */ = {isa = PBXBuildFile; fileRef = 59EDFF0DAF963120B38FF8CB03EFD21D /* GULReachabilityChecker.m */; }; 3C73C4F0BABCDEA57FC1B876A210700A /* GULUserDefaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A392B2042022C20AA6278A6488F3450 /* GULUserDefaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C80082393AD23B290BCFE22D12D1486 /* YGMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8062C941EC8C4E98617883010925AF7C /* YGMarker.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 3CF1353F5929B07F123F912A8D156BBE /* GULMutableDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = B465E86E382F51387AC798D90E619E49 /* GULMutableDictionary.m */; }; 3CFD6EB1B1537646AA796883829BCBA9 /* FIRInstanceIDVersionUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = CC9DFE33B02231AD63A6E8D6916F6E68 /* FIRInstanceIDVersionUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3D249A7F85EE6772361D937866471E33 /* FIRInstanceIDStringEncoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C091A0338C15E8B88682282FA526CA6 /* FIRInstanceIDStringEncoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -218,295 +327,380 @@ 3D982D560C6DBCBD19EA8BA9A391B545 /* GPBUnknownFieldSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 185920CE3F01EE5D5EFDCD7E82E2116C /* GPBUnknownFieldSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3DE45D3910CC47153462598BD966C2FA /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD302C365DF1C82AA1668E93CD114EE4 /* ScopeGuard.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1"; }; }; 3EE027B293A0E5D138231C2B2DCCB39F /* GTMSessionUploadFetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 42D616CF93145F8AA0A8CCC0613DF94B /* GTMSessionUploadFetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 409DD85D0BE2B487A537C7509DBA58C3 /* RNSplashScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B6803B09C3C15EBD80A58A170528FA7 /* RNSplashScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41033599EA38C5F034BE8BD960596594 /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 08917358529F92D17A1A10E42995569A /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F88E34DE1D90DF355F3462EC3CBB4CD /* Pods-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DB26A8DCF5A6E3B4A1BC4152C6D9DC6C /* Pods-RocketChatRN-dummy.m */; }; + 40538BF2F1BAE3F9D4D478826657F1D9 /* RSKImageCropViewController+Protected.h in Headers */ = {isa = PBXBuildFile; fileRef = 047F7C14D5BA3D10FDD5C05A933E8CD5 /* RSKImageCropViewController+Protected.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4123AEB246F2BE1F3D2BC7F5456F6701 /* FIRInstanceIDKeyPairStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BC6169FE9172EC3ECF6AD711B177B87 /* FIRInstanceIDKeyPairStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41E27F7E3EB658FF29DC145BCBD8B72E /* RSKImageCropViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B4EDA879A5FBC25007AEDD3699E0135E /* RSKImageCropViewController.m */; }; - 41E553FD365994F8FFE856728ADF3C1A /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C37447B513BB858ABEE189BB5B3199F /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4252722B0D4555CCE1F354442F8AD620 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 8C12D44C3342E3DCF923AFC75D90DFC1 /* en.lproj */; }; + 41C9EA6EEEE1D42DD14D721F1BF3DEBF /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 5429D0E9E33F561A70968BE8CDDB8440 /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 43A4BDBFF6D33D4C678CD2282411B3C6 /* GPBUnknownField.m in Sources */ = {isa = PBXBuildFile; fileRef = 83A553FB3363877DF058636D631A348A /* GPBUnknownField.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; 444C4ABEC9AE8BB0B4D711ACAD6DE2A1 /* GTMLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F60A815345257201EB2DD6A85AE4AE3 /* GTMLogger.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; 44CA2D642A4F431AD3B5DBE1DDB59F3A /* GTMSessionFetcherService.h in Headers */ = {isa = PBXBuildFile; fileRef = 20957E6E06A9F00102F60719D037C558 /* GTMSessionFetcherService.h */; settings = {ATTRIBUTES = (Project, ); }; }; 455D37C9E7B765B6501EB4D87F82F377 /* GULAppEnvironmentUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 85F0D2659222CC95642879C71B79F283 /* GULAppEnvironmentUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; 45C3CD1AE848F68F1406FF6B37425BCE /* GPBMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = A0FC4A4263889C7BB58FCA1914D25763 /* GPBMessage.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 46E9227C5A92E8ED63B02D7E848BD68D /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = 211E0ECE8F57C74C6EDD857AAF9DB816 /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 47DC77E4B14514C73DC162CF72078580 /* UIApplication+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = F3BCBFAD374F9A20E01958A9D04855DC /* UIApplication+RSKImageCropper.m */; }; - 492DF9C486B7E0CC6346216453536F4E /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 01E527DC82BB0D8C7168C89D23E7D5DD /* RNDeviceInfo-dummy.m */; }; + 488CDAE7D04BDDE829743A0A96D791E9 /* EXRemindersRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = E35D6ECFD04E59A0EC2C82AEB03CAB16 /* EXRemindersRequester.m */; }; + 48F5295E6AB3A3F0A015E762767BB5CD /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 0847728381CD9CD2615B06739082FC6F /* UMViewManagerAdapter.m */; }; 49D5AE148EDE23C66E04C17A9DF3CD0E /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = D3D924AF6D72DD9606771699E3E1312A /* double-conversion.cc */; }; 4A91A6BCDAD59855BD5D82CE6550FCB8 /* GPBUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 50BC3074BB06BC98F23931C70A9B5C19 /* GPBUtilities.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 4A9CB7E10A5CDE36AFFEE3DC560AEA88 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 96A259CA1DAC0597321390526E85E986 /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 4BB7BB2F1CA43B6E9CDB04A0D8498F1B /* CGGeometry+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = D3BF9F21DC67AEF716304B2F5468563F /* CGGeometry+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4BD63A79C45516CDDBCE55088003BD1A /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F070DB8778F84DDDEFFBD0B665025401 /* QBAssetCell.m */; }; - 4C11BDF98EB9AFC045FA5D7169C12C03 /* UIImage+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = D5C124EA6E1C40165CF089F6400F47EF /* UIImage+RSKImageCropper.m */; }; + 4AB35B500F8970A8A6A443F2F64B0B8B /* RSKInternalUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 59AFCE36072473C2A6DFE33FD5ED1CB2 /* RSKInternalUtility.m */; }; + 4B36E488844F33246DD27858C65EDED5 /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = DEBBAC37E2DAEEA04D8C77922B710CF9 /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4BD7AD3745691A6994A56491FF1C9F1F /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BD4B0282AC59F89462194F07C0D2B3D /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C404CF5F61BECB3E483A760C5950F65 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E89CF155C6E36CDE6946192F3608160 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4C51A4D164F0402E77AE447E5D8F9760 /* GPBUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 565D524286473269CBBCCFB3B6EDD6AC /* GPBUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4CB7E74A4643875B43BC4F7B400D0674 /* FIRInstanceIDTokenStore.m in Sources */ = {isa = PBXBuildFile; fileRef = CC02B9C0F1CEDC2E11D97AAFA570B60F /* FIRInstanceIDTokenStore.m */; }; 4D6204372A459395461F7EF95EAA3E23 /* GPBExtensionRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = A0682B4FACC89766A12837374BA1E199 /* GPBExtensionRegistry.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; 4E0A2703083AF8211C29C24927EEA578 /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F253D6BB700AA13956A26AA399F054C7 /* json_pointer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1"; }; }; - 508B19DFDA149187FD513A5CDFEF4DDB /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = D32303C572C6448B447144C125C1BD66 /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 512DB3999B76EB0099DE83F8FD30DF10 /* YGMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 278C595B434D1016AAB40EF5A84CCAD2 /* YGMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E4032FE4B8AC855E373E910FCC092C7 /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = 8883E203DD23C2228AC3CD2526F59AD6 /* UIImage+Resize.m */; }; + 4EF878BACBE3C55742FBCEBF1EB1D62D /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B22CDFE8A6BE351F42B2380C2711731 /* RNDeviceInfo.m */; }; 51E9C1CE19E5F6374631FAF47DF80AEA /* FIRInstanceID.m in Sources */ = {isa = PBXBuildFile; fileRef = 1949B0542A654E7317ADAEEADCD4683C /* FIRInstanceID.m */; }; 52A745CB46EF3FB68AF264176DED6FF6 /* FIRInstanceIDKeychain.m in Sources */ = {isa = PBXBuildFile; fileRef = 644949DB617A048149E047010C6D0980 /* FIRInstanceIDKeychain.m */; }; 540742094C16FD82B3A81A633B812851 /* FIRInstanceIDAuthService.h in Headers */ = {isa = PBXBuildFile; fileRef = 620FB2E72885D3DB06D010AAE96C5880 /* FIRInstanceIDAuthService.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5417751F797161B8F8A945B9169880B8 /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B6EB8ABBF4DBB75EEAE28A420846B0D /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; 547507E011EB4B4692B1C4AF1D7D9513 /* GTMSessionFetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 493FC8AD48875FF76E8792079DF4D17F /* GTMSessionFetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; 54936AE44632EEB56709C47BD7DA7C30 /* GPBArray.m in Sources */ = {isa = PBXBuildFile; fileRef = 677CA4BB009608055FD2DE2322188AD1 /* GPBArray.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 55F644A64AF3A8F0B3BADF137FCCD3BB /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 08917358529F92D17A1A10E42995569A /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; 56190CE5DD772C01F08022D6215F5298 /* FIRInstanceIDTokenManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D37C4A1FC44FCFDA1CA04CE747500EC8 /* FIRInstanceIDTokenManager.m */; }; 563242DBDA35DDC44EF47B2F10248BB3 /* FIRInstanceIDTokenFetchOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = FFFA6C4730580F08F48B1B15E8603BB6 /* FIRInstanceIDTokenFetchOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 58584A6DE9640C732604FC6C66D50167 /* RSKImageCropViewController+Protected.h in Headers */ = {isa = PBXBuildFile; fileRef = 047F7C14D5BA3D10FDD5C05A933E8CD5 /* RSKImageCropViewController+Protected.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 57C6E165F455A2AB36FD563DFF541E58 /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 081BADE01BF0043403D44F357D3D5034 /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 58741226485937DCFC3EEAB8550EA7A4 /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EC9E0452A7C8DC2B1682F1D192A5B7C /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 590169C3BE81E6FE9B67E19D5DCFC107 /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 78E7253F767B7FADF737B07003AAEA3C /* EXWebBrowser-dummy.m */; }; + 592F5C115D492157BAB057FC36627C58 /* EXLocationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = B7876320ADC94AF2FD72D465EF390BE8 /* EXLocationRequester.m */; }; 5935A9A037670707EAD529898A61A424 /* pb.h in Headers */ = {isa = PBXBuildFile; fileRef = 10C306448DF95BDD2C33FF0845BE3EE3 /* pb.h */; settings = {ATTRIBUTES = (Project, ); }; }; 598BF86C3CEAF5C934DBC6C26792EF94 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = C2549B1AC6EA7BD6F62C4E7941527711 /* bignum.cc */; }; 59DE09E33DAEFA2A3334C37FCF7D5349 /* FIRInstanceIDCheckinService.m in Sources */ = {isa = PBXBuildFile; fileRef = E587B3F2F5ACE664165F9212BAC58A0B /* FIRInstanceIDCheckinService.m */; }; + 5A12BEDD1EB7143EAA9DB28C030834B8 /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ACD875EB7DA766798B3BC381F195E89 /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5A2F03FAC8E5F5A2D356C7B91FDC88ED /* GPBArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 32461DFC0E47CD7259441A160789160E /* GPBArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5AD2957BC9616A15C34796F1E7487F00 /* glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1590D6871326CFE7CA44DFFEA384FD03 /* glog-dummy.m */; }; - 5AE34C5703510C37651F2D592E581740 /* Pods-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DB26A8DCF5A6E3B4A1BC4152C6D9DC6C /* Pods-RocketChatRN-dummy.m */; }; - 5B49E51718F58DD0B4F8F1B0E83C8582 /* RSKImageScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 13D445095FC98E1953690D565C881FDD /* RSKImageScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B24C61116DA3149D83CCAC5B8D4F6F1 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BE1F3B72E441DFBD646870A79A1EA93 /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BE56809F05A22560A27866CC463E9BE /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 92D0C869550966421DB4CB3F899284E3 /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C25F0E8F29D70CD722B76C5B5E10385 /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C72A72218B45C82168CC078F45FBA31 /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5C2ABB749C6E8BBEC7631087BFA535DD /* GULNetworkConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 031182114156D9FD17B5BA12E328E7E0 /* GULNetworkConstants.m */; }; 5C39FAFF84E98053EAF5F44DC4B7BFAA /* GULAppDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = E99B0D64B717D3685A2D48961E286C54 /* GULAppDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5C5DC4E757BBE058FBE99DFA1C349E2C /* FIRBundleUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 13ED540E431E29B3E235F3EFA7249E95 /* FIRBundleUtil.m */; }; - 5C660749EF59FFBDB52DAD31EFBC5933 /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = E8DE43DFD7CC3A804076BF1825A63034 /* QBCheckmarkView.m */; }; + 5CD72C03170BEB287C67C3F725E163B6 /* YGMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 890768481D4BB4205103013DE4B3640C /* YGMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 5CEF4EDF45E80D8B5AA903EBDE690166 /* FIRInstanceID.h in Headers */ = {isa = PBXBuildFile; fileRef = 822E127F41D73E1A442BAE48920F7F3E /* FIRInstanceID.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5DBBB91027255885AAE7B300C895779A /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F7AF9C51D51F92DD053537B8222568C /* EXConstants.m */; }; + 5DF5101487DF8545DD8F50F68AEDAF45 /* EXAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = D041BAFA4EFFB3C2CB0CCE6501CF7C5E /* EXAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5EEE0EC4213DB6D05FBE883FA40E8FAE /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 6697EA434D23502A2D809B6B7E6E3A4B /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6004E0C699769F1278848EA1A81563FD /* RNCWKWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = B4B78C3D5579EF0029157E0361A173E2 /* RNCWKWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 60D20AECA7D7AEC05834C1EE9F61C483 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 35327675F6CED1B41870E375518BCEF8 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61475E67281F1F4D1D75F2F49192BA35 /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 248F4F5FFD5BE6494CF378FBBFBAC07F /* ImageCropPicker.m */; }; 6202F0EEEFCB1ABE4656F4975FF294BC /* FIRInstanceIDVersionUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = A9209D5A37DA753BC42A9DD8365F66BF /* FIRInstanceIDVersionUtilities.m */; }; - 624F9171686FCC5CD7F72AE511A09FBC /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3219006E7D6EEA1CA01EC2AD1F8F1AC6 /* QBAlbumCell.m */; }; + 6262BBFAEBD554FF9B9CB958D38B9AD5 /* EXSystemBrightnessRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = A489FE30B53D57A32E6E18B2FB051F08 /* EXSystemBrightnessRequester.m */; }; 62825760B895542D30194A59B53D82EA /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = BE50045174443690244903BDE53B9ED7 /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 62B8FBEBC6B7C8E48B8FFFD3725D54DF /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E16ADD60A0F450EBE3C4DC585815576 /* UMReactNativeAdapter-dummy.m */; }; 62F5773429846182D47E299F05F56B8B /* SourceContext.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = 61CE22C50D775F0923600623F3B4E3B7 /* SourceContext.pbobjc.h */; settings = {ATTRIBUTES = (Project, ); }; }; 633F2782EF0F6487FDEDE505EF8DF73E /* FIRInstanceIDAuthKeyChain.h in Headers */ = {isa = PBXBuildFile; fileRef = 52413708A751A44C4BBEC6FA2ED9CCE8 /* FIRInstanceIDAuthKeyChain.h */; settings = {ATTRIBUTES = (Project, ); }; }; 64DC54D37099AD0EE355E5B55B892709 /* FieldMask.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = CDE4FA8468D09611489BAA01EE305FB9 /* FieldMask.pbobjc.h */; settings = {ATTRIBUTES = (Project, ); }; }; 65AB95B50A3F253E56767FC717190684 /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC93B4AE1BC99FC3489FB009672CEBC9 /* F14Table.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1"; }; }; 661CC08A40D06826CCC5F38ADBF35DA9 /* FIRInstanceIDUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F2B2C4D4A5F2B2E0F49A001AFFFA329 /* FIRInstanceIDUtilities.m */; }; + 6626F8244B4B769CC1CC40E44899649D /* CGGeometry+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = D3BF9F21DC67AEF716304B2F5468563F /* CGGeometry+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 66944E5515EF3031B6055D04F210B2B5 /* GPBProtocolBuffers.h in Headers */ = {isa = PBXBuildFile; fileRef = FE56DCBF8D844549273B298E9EF13AC6 /* GPBProtocolBuffers.h */; settings = {ATTRIBUTES = (Project, ); }; }; 66D08320DC929B8D5C97884EF06506A1 /* FIRAppAssociationRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = BDE529E1EF6279CDF6CAD08BB2113F69 /* FIRAppAssociationRegistration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 67D2695DC15D92264A898094C25E0680 /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 6BEC5CB1F4874AAD0138959794C1CF02 /* QBImagePicker.storyboard */; }; 68A30E4A38A40F3C00132E825FFB1295 /* GULNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = B7076D6BE9B38FC1611B4AF166C11FB5 /* GULNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68A61BE10E089C140464DD53988AA447 /* RNCUIWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B77F4115089B8B178E7E8E9A2EEC1A1 /* RNCUIWebView.m */; }; 6ADF36D4F87995F68DAE551D7C4974E6 /* FIRInstanceIDAuthService.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BA7175A9908886E248699428C067D56 /* FIRInstanceIDAuthService.m */; }; - 6C3AC0272222CC7390515D084B46F7E2 /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = DF0F4D415D88D059359F90BA6F2572FE /* UIImage+Resize.m */; }; + 6B31930D61CE82588E6115C8E41479CA /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 09D994CE87C6EA29C806103ADE30B9B1 /* EXFileSystemLocalFileHandler.m */; }; + 6BCE7FEF6DF416F34B3696CC85276590 /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 52DED0382D977A6024E4E77EBC971FD8 /* UMModuleRegistryAdapter.m */; }; + 6D270C943D7EED7AEB2CFF1AEE1C32F2 /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E37C8977F315F56A1E44BD41F80EAF03 /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6D3913895B99C9CA1AC7B01A3FDB3E40 /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F679BDFCED3A61C87F3B0D401DDD7B7 /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E3B2EBC2804F55BA900510839F43E34 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 72040EF500C630FB526C13293B6036D7 /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D696A4584FCFF1C4C63F2F6CE81B9C5 /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 256F73640791D9E203ABC811B5F47544 /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6EE78D91771E29D2D7E741FCA2F1A07B /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = D01284F7E12F47F4E20C402D5BF5E354 /* UMUtilities.m */; }; 6F523BF8E8F0E8F63871EBBD6F52E954 /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8EAABB04C2CF955ECC9E123EE5FB00E5 /* json.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1"; }; }; 6FB720247D573C43B16CD998D396EFF6 /* GPBMessage_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = E80614B9501CBE2DC0DFD0CB76C51905 /* GPBMessage_PackagePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6FD16FE28B3CC8B2D29FA8FA96FA542D /* GULUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C9F66BD2F5994688215F7C214C82892 /* GULUserDefaults.m */; }; - 704F67F9CE43B0B4647DB5833CFEEB7B /* UIImage+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 27BA61510074129562C639CBA224030B /* UIImage+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 708B5E67847F332FFC954B77D1526F4B /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FC166449536B01AA14B5FC576CFC630 /* EXAudioRecordingPermissionRequester.m */; }; 709AE21BF5777B1E8A4232861440024F /* GULOriginalIMPConvenienceMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = AC827C8C29D1F41334B1DB02F51E1472 /* GULOriginalIMPConvenienceMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; 70FC943F496D3240C9137A4DE738E07E /* FirebaseInstanceID-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D19E2F79B0006C6B374700D05DB3D121 /* FirebaseInstanceID-dummy.m */; }; - 71D04EC388F5D0D6E725B57519D5D63E /* CGGeometry+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BFD6F1262D7CFD8E1E86E5A80CB5B15 /* CGGeometry+RSKImageCropper.m */; }; - 71D59B53A54256864C79C42E9816C253 /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = D3DBBC941A09E991D876BEC8E8857BC8 /* zh-Hans.lproj */; }; + 71CDD3B877E6523153940361B1E9712F /* RSKTouchView.m in Sources */ = {isa = PBXBuildFile; fileRef = 47A6A31F9EB2B51ADD0931A873E89C5D /* RSKTouchView.m */; }; 72149BE83C816B41E8FFE418B46AFB6A /* GULNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 05449E32192EDFA22803A46B68E16576 /* GULNetwork.m */; }; - 7264D516ADEBB61E362BB1833BBD9FDC /* RNSplashScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 46C298A0D61DB7EB52E447B83C66B45E /* RNSplashScreen.m */; }; 72F769711E01B4FD1FAD993242D3F395 /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 444245D3CCBAB1A0DEEB6D89589ABEE7 /* cached-powers.cc */; }; - 73471DCF728A0EF2029874635F484B02 /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 8B8A65EF6D756E78D1E16ACF41C31AEB /* ja.lproj */; }; + 737D2AF03D4F3614B986B15E03563EF1 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = A3B8971C13BE096BD4B029E1ED7B8D18 /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 741BE50BA5F881A3983CB7F192225344 /* EXDownloadDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 80697BC6BBB4E3A1F17668897EA69F92 /* EXDownloadDelegate.m */; }; + 7496ED399851902C8CE5963750F54F41 /* RSKImageCropViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B4EDA879A5FBC25007AEDD3699E0135E /* RSKImageCropViewController.m */; }; + 74C3104331FB959ABD08D30042EB8C8D /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = 86144205600214BECA2C93CEDC2A76D7 /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 757F5F4560089A27289BFC45B8E28881 /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = 26F0CE9105B1167C94475E380773F8B1 /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; 75F990944B9DC6C6D5B1716536437CA3 /* FIRConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C2812A321DB28C5A37D494A1705FA3C /* FIRConfiguration.m */; }; + 761010BA374317F8FF28DA5C6CAFF92A /* EXRemindersRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A6CA78B5DD72E0852B7CF800120B301 /* EXRemindersRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; 761A99105ACF81FBABD996E0599C87F1 /* FIRInstanceIDTokenOperation+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = BAB0B55F0D83C13F4A93E9693F1E3CC0 /* FIRInstanceIDTokenOperation+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7734EE585DD95C350CD5463137AF6CD1 /* Api.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = E329F4B752BE9BD5C2E6CFB772539144 /* Api.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; 773B70523D58DFDB3B60A1E48FAFC81D /* FIRInstanceIDTokenDeleteOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 11CEFEA651D768ECDD7B19E6CC8AA9A1 /* FIRInstanceIDTokenDeleteOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 777DF767F0CCA24A9BFC9983179C48A0 /* GPBUtilities_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C24C1DB9F2C7EE07196D2C247A09366 /* GPBUtilities_PackagePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77C87A19EFEF92929BE2A52DB57040DA /* EXCameraRollRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 39E37C371CC57E6870285F67E36D0188 /* EXCameraRollRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; 77F8FA7C6F79F4D75F272601252E1F9C /* Type.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = F4769E4FD51434A8166BF6744B6DECCB /* Type.pbobjc.h */; settings = {ATTRIBUTES = (Project, ); }; }; 78F0EDF42B5AC108BCFD1344336F1A80 /* FIRConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = ED6B7E5A61EF834B72AD4268D2B5F4D1 /* FIRConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7966A7B37EDE4A16158C6E51151957D3 /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = FF7E9A0B4A1BF87864349533DD6892DD /* UMSingletonModule.m */; }; 7A0993D795B2B5412F5FC95EC6D0ECCD /* GPBUnknownField.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E1346157A8E9BD0479DB40C4BC2EA76 /* GPBUnknownField.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7AE6E0EAD54B89EABC3F8B3ADC296A66 /* RNCUIWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3117A3D34B4A56C558AB6E548338C4F2 /* RNCUIWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7AF3EBDE1C484B8530345B0872619C5C /* GULObjectSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0497F30F4BA1B5FDDFED9924942263B0 /* GULObjectSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B0A16B700DB342A2BF6F7E093506F63 /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 394428DD51DBEC8515A0F375EB4829A2 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7C8845F9ECE6EE49C4251591BB5BCCBF /* UIApplication+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = C74F06CA3396E64F308DC487B0BD1373 /* UIApplication+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7CB5D1F4B3078F9E4B2DC8A9F8E9C364 /* FIRComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = F13C9827FFA6E7331D6E301FE4773240 /* FIRComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7CF7DA00EB65330D129B9224FB3CCBC8 /* GoogleUtilities-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DB0E05E584EBB1BD10BFA278E997CCD /* GoogleUtilities-dummy.m */; }; 7D0FE8260C286B4CDA3FFFB26AA6E1AD /* FIRInstanceIDURLQueryItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B96A3E403D29A41E063CF1EB4EA6B2D /* FIRInstanceIDURLQueryItem.m */; }; - 7D943CB85A84BB4BCBDF510646154467 /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 92539DBA7C237CC37CC174B30BE17026 /* QBVideoIconView.m */; }; - 7EEDDA22A838BEB0C9C8E0F496C13BC3 /* RSKTouchView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D048B65D5401F3B11C2CD7AD3F5FDE2 /* RSKTouchView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D7E038BB1A31A111DEB147DC7E012A2 /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B8FFFD78BF442326333A21BA8336F645 /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F27DC6073A61FD6CE1D3A51E303BB1F /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4836E9E0A5928D89BDAE7412E9522FFB /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7F7874E65AED2A890EE014C9C7D58F1D /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = 579E21F0E94CEF5650570F6CF8841CC8 /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7FC13E30F958F04ED3CD72295E97F1C3 /* GPBDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 711C6598936FBFA8F477E439F6E6A956 /* GPBDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7FF3C3998D7CF5C363AC1CAA696B6162 /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DAA51CCDD348AF8EE253F900114CC529 /* UMLogManager.m */; }; 810868979DA15CB69CB0905779AF4DCA /* GPBCodedOutputStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E840F68F5A28B3739B3B51B8661A51C /* GPBCodedOutputStream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81827AF92B0392C580BEBA81C4409689 /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 25CEF3076A2151192072612D1A44B649 /* react-native-webview-dummy.m */; }; + 81595D1E18000C492A1B4BEF82BC4BCA /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 90017BDF5F3E8258C920A782FE651D9C /* UMReactNativeAdapter.m */; }; 81844D02D0200E7F2871FE3A33C7DB12 /* GTMSessionFetcherLogging.m in Sources */ = {isa = PBXBuildFile; fileRef = E7D881ED2B5743223827914D984E15E1 /* GTMSessionFetcherLogging.m */; }; 828784E4945CC4A04F81CCAFA65162A6 /* pb_decode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5806880501A07C1ACB9A7138A81669B0 /* pb_decode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 82F4A08E405B0A3706D5F18335E9D880 /* bignum-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 3209D52223DC90072F96949AAFFFEF3F /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; 830AC0E023DDB020FAB2A7B55C21A568 /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = D5405FEBAC392B770AD99B5AC7687E55 /* raw_logging.cc */; }; - 8357DF731CE167B7544E4D6CF1EB1C29 /* RSKImageCropper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FE503EE8D17258B72EFA6478A1EE7BB2 /* RSKImageCropper-dummy.m */; }; 83B41A031755AB6F0E367484C028946A /* Timestamp.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = CF2AE1EC0D98FF4B93D51D644A2C7ABF /* Timestamp.pbobjc.h */; settings = {ATTRIBUTES = (Project, ); }; }; 83F6E3E7BAF0411AFE6B770BD22EF47D /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ED3F83DE07B36FFE21FC3707F2802DDF /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1"; }; }; 84EAE8F60281CB3EF824504346CA4B3E /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B843F05D718A4E6A823BF7A3D02FB40D /* Unicode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1"; }; }; - 859F867982A89EA5C44D20259C61F4A2 /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = 3AF58F919F042029ACECE9E795ABF2AC /* Orientation.m */; }; 85B1BA370D18F6377A3D700A87F52D38 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1688EE83E950851DBD776306319028FB /* utilities.cc */; }; 85D6B242AB82B680CC7497B908191E56 /* GULObjectSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F9DA817DD136F20858650D09F53CFAE /* GULObjectSwizzler.m */; }; 85F2B5F3B3CFD8BA2671B55AAAADC3DE /* FIRErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 69E9189795301B078917D0DCC1A8CA75 /* FIRErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 862512663267311A4FA9918593DACF5C /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A857E144D09F66372318D1BEEC6A7F3 /* DeviceUID.m */; }; + 869B8D2B40D66AEB37297A41F6590726 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D6F669B30089DD5744D83D5C9F8F4F0C /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 87223E1BEAB415F791755EBF9E002C66 /* Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E0C49F12A12309D11B852442959A76BB /* Folly-dummy.m */; }; - 876DA1D375E4F92831B30E4A5546BA74 /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9CA136F385C2D0C0B763BA969DDC9469 /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 882EF64D49CC16E5027AC932AEA358C8 /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CA8236F3347BF0F3F337D47FD041B86 /* RNSScreen.m */; }; 888A102CD6AD2792AEF9939A05FA723D /* FIRInstanceIDKeyPairUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 16DC3363E3A5DD93919EA65165E1DD2D /* FIRInstanceIDKeyPairUtilities.m */; }; + 89A91379BA936471ABD92062A42FE14C /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = EAEA879C60C21AD215ED46751F2B87C8 /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 89F3CC088617A30811815DFAC3D94D0F /* Any.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = 32DBB9B2B059385BF7CBC7C10F071CC9 /* Any.pbobjc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B90A3259B8C3CF85D391C4486EAF590 /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D06F244A607B7A1EEAD91787CDC01C9 /* Compression.m */; }; + 8A3EB935280A953908A3E3C200C1B30C /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C39561B2924B88B60DEDA640062C08F6 /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8ABB9154AF58BEE92ACA7C4E8BB9795B /* EXUserNotificationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F03506161E4CDAC7F99821B2E37F610 /* EXUserNotificationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8BAE0B8DA8BF812E1ABB2ADA4C3CA091 /* GULSwizzledObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 3801D7269A518344DCBC1FC0BE8CD46D /* GULSwizzledObject.m */; }; 8BF08136BEFD0CB96D59EB9236EBA86F /* GPBRootObject.m in Sources */ = {isa = PBXBuildFile; fileRef = FE0AD6A2B458F3446F9F710454023AD2 /* GPBRootObject.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; 8C1C86BFB2300B2DA51F6A160DD8B05D /* FirebaseCore.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A49939A60E602BB2BA3160182C8E331 /* FirebaseCore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CA0B957D6B57C0FFAFC026D67E3731E /* yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F3122CB71D61B1D541A9723CE024E1F /* yoga-dummy.m */; }; - 8DDA97E5BA3CDB7D29DCF5CEDD4930D4 /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1306A874922522A25C5081B057468E59 /* QBSlomoIconView.m */; }; + 8D47D902B89DCD2A92DEDDE21C74D541 /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 5060761558A343D17B92566062690FB7 /* EXFileSystem.m */; }; 8E206E233249F136A91A3A4FF2E311E0 /* FIRVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E185919BB79C8C7935702959B1F792F /* FIRVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8E30A6325CF643601D61BBC2CC0E9513 /* FIRLoggerLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = ABD254E522C84D25A9CACB00D98DED09 /* FIRLoggerLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; 8F1BF3ED0276A1CCD308ABAF44503852 /* Struct.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = 475CDA23EE58A9149A0B188381E6E4B9 /* Struct.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; 8F3B8C492DE8B36FCD0987C4CF623A6E /* SourceContext.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = A61E25AA5729C8205A791AC4A5C1BA76 /* SourceContext.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; 8F717D59C6CA0E34F03E35E0A4213B24 /* FIRInstanceIDKeyPair.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E27655892D05466617A8A07FDBD8687 /* FIRInstanceIDKeyPair.m */; }; - 8FD5F436F49CDCAB76DB9E37ED0BA1F7 /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D8C2FBD9146DD6CBA2261912D7829F2A /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 9049E304B24FDEF02EEFB5004D0BEEA2 /* GTMNSData+zlib.m in Sources */ = {isa = PBXBuildFile; fileRef = B6B6FD9F05867E267A730BD9C007D221 /* GTMNSData+zlib.m */; }; 906174AD800410B4773A4EAF4957653C /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5E12617144A23133BF6F8F4556C822FE /* logging.cc */; }; 907AC7C93FA683123FF3CB1AB1239882 /* GULNetworkConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = F5242D0FBCBD7A1D99CEB88585EA682A /* GULNetworkConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; 90DD71B0E7921BE591DC589F1ACEBA0A /* FIRVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DC0A60A9467868CEA7A2146861B49B6 /* FIRVersion.m */; }; + 91C88BBB4D58DE4F230D9B75482C1AF8 /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C4300B81B6D4A22BA472C9FEDFCFEC69 /* UMCore-dummy.m */; }; 92B30541095647B6D6B900D6C3E78A76 /* FIRInstanceIDCheckinStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 68A1E84C5B4C1FA0364534DF5FA9CA2B /* FIRInstanceIDCheckinStore.m */; }; + 92EC0D6049EEA91B2EEEA7508E714B41 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 181D20640F43D8CB7EC6EAB505B86318 /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93020C5F98125BAC7F7B4C3FF3D9794E /* RNSplashScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 627B0BE5D7A9F12E77D45BEEA5ABAA12 /* RNSplashScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 934BF8388331FB129A20DB0B63644921 /* EXCameraPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A673BEBFF3B62964CF34710C36A170A /* EXCameraPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; 935D6DADC932A5753137DE4605BBEC76 /* FIRInstanceIDTokenDeleteOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = B6BD6BC1B1EA23C048BA0ED9D296238E /* FIRInstanceIDTokenDeleteOperation.m */; }; - 939CBDB16E6865FDFEC1A36CBAF86897 /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D7001F9CBB5C587EE6303E5F0CB948FE /* QBAssetsViewController.m */; }; 9404CB7E5B9C19F294217952B68D458B /* FIRInstanceIDKeyPairStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 6513B153A69122DA4C3567D902EF3824 /* FIRInstanceIDKeyPairStore.m */; }; + 94339167F07C72E9F07B376378E498DB /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 60042A28AD88403718D41C4C668ED417 /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 944A511EBFDEE282B14E2D823B0F2FB7 /* GoogleToolboxForMac-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 76EBFD3CD23982CD8310269BCF2453CF /* GoogleToolboxForMac-dummy.m */; }; 94C921F65340F551B03C5D6922576388 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F92900861A1536FC2C06F634018F7F6A /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1"; }; }; - 951E07A0B474B30340454D5A2CBD80C0 /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = C352EE6E151EDC8523F4F13C165280E6 /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 94DD90F76B9AE8490D91E20B665CD604 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = D869731AB7C204E5D46212EB8B2F7FB7 /* UMReactNativeEventEmitter.m */; }; 9524BFAAAE6E5588F9615CEEFFAB8F74 /* Protobuf-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CECDA20FE3432D2A0FD84D45349110D /* Protobuf-dummy.m */; }; 956F8C804CAD6678531E8A42D3C7BAAB /* GULNSData+zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FEB15F0E803D8293239AB02DA1B66EA /* GULNSData+zlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; 95F0126305351DD05D7AA074E2F2AF24 /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E48F6ED55D527B20EADC7AFA4795485 /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 988D980DCB98F29CBB08EE69068E1EA4 /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EE49B8A769B1E7AFEABA9B6B0B88B03 /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9628624EBCE8420CA751EC94935FCD68 /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 34F880E7869DCCEF1750AF44694138F0 /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96693844C50716001E11A1A1B0FAB3F3 /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 10FD7868B64776D0F4D6809EC6FBA7D5 /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 970F0E4C79229FDA04BC23D50B1CFAB6 /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = B03A39B9EB5100925384D28FC7D387A9 /* UMNativeModulesProxy.m */; }; + 971A797D1573C90846EC7847F3529E49 /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = D28151816F39FDAB286C1B086A6D5441 /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 972BED01AFB6B9A901ECAC18D2528889 /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = E61453F5743127BBF1F9140BAAD1ED6E /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 99FCA10852C44775B1FC3B6004D56A1D /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DB6F761DADAE5FE337146D9EA099097 /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A6380FD46EC6B95868F01DE0A181FAB /* RSKImageCropViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D98378181E5D1EB7E3D3B9BC346926D /* RSKImageCropViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9AE90D1360625450CC828AB283D9C337 /* GPBWellKnownTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 9632C230C1B82662D3DAB3FAF6426F38 /* GPBWellKnownTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9B32E6AE0CF41F8168D8BF99EAAE3167 /* GULReachabilityMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = DCC7600BC172CA9427C27FD82BF17552 /* GULReachabilityMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9B586B31EC4BFE1C13C9DDAFFCC1B6C1 /* Type.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = E91CA0CA3AD2A04005A71157B2C32FB7 /* Type.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; 9C09F11BA21A367F85580F5E5CF30CA9 /* ColdClass.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51DB1D488B9CD90333D4917C16942248 /* ColdClass.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1"; }; }; 9C256455B0ED145A471E33181813B7D2 /* FIRInstanceIDUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = CB8724C8D4D696AD4C067B9326224A01 /* FIRInstanceIDUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9C953458446A98B17F12B67AC88FE012 /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ACD875EB7DA766798B3BC381F195E89 /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9DCD4C1AFB7759FEC706547C99699984 /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D9FE2D7FED21670B054D842B83FB7A4 /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D3100ACF474922057D60AEFC59E8DBD /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = D3AE10F5623CCEB6D48B913E269F417A /* EXPermissions.m */; }; + 9D986D766F8D155E1B4685E373B6C61D /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D7001F9CBB5C587EE6303E5F0CB948FE /* QBAssetsViewController.m */; }; + 9EA2F0C50431DEF352B81BD92E40A4F0 /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = F128D70778FFE6C1A7DD1B2E828B2630 /* RNSScreenContainer.m */; }; 9ECB423EFCF9267DA37AFDEB8F03F568 /* FIRInstanceIDTokenInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = AA015B42B94D08FF3C4C36EA989F13DE /* FIRInstanceIDTokenInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9EE15D8A09CB26C79D549E5FB30BF7B8 /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 92D0C869550966421DB4CB3F899284E3 /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9F777CBD04816F19CF33C734C125DC1A /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 599A4418AF75B9750AABACF579E38163 /* fast-dtoa.cc */; }; A060BA186820986AE60DFEAEB1C6AA8F /* FIRInstanceIDURLQueryItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BAC49632693E881A740E4F2693EE2EB /* FIRInstanceIDURLQueryItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; A0E10A6AFBD2A3CD5FF0ECA08A258637 /* GPBArray_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 001906DF79B2E749BEE13C58E5D57CDA /* GPBArray_PackagePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0F660652F3DBFC728C4F9ECB68700D0 /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 1503277A849EFD3C4519B0DE0E9974AC /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; A1485CDE13598E782F45A64AEF864316 /* GPBDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = D3D856CFC6310D66AC7461C87AFE11D4 /* GPBDescriptor.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - A2B47F9119965CD8CF16A28B226A9173 /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = D4C5EEE50A5951E21B340E4F9133D4BC /* DeviceUID.m */; }; - A2C661061F95A04EAE4AFF0468070258 /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = AE03559C371F1BFBFBF509BC8D9CBFCE /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A1F02DBB5F49B95EC31F03E4A5721746 /* RSKInternalUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E94C6CB02605A72F32BBE9875D6AC50 /* RSKInternalUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2DB6AE365C4821D13AD24423DC3D72F /* yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 27AED10E7415E8EAC54A176445B00B2B /* yoga-dummy.m */; }; A3CEB8BC063E3973C6F927E99546B782 /* pb_common.c in Sources */ = {isa = PBXBuildFile; fileRef = 14D12918B4EE1A6B8AC37D2DDC5916FE /* pb_common.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc -fno-objc-arc"; }; }; - A440E792CD65F05EB4DFE772A4EFA4DD /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F568E078B3A119DA64CE4AE6D89B9249 /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A58761B4E207158C8362F872C061F365 /* RSKImageScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E62079D73ED4FA523DE774809C97A9F /* RSKImageScrollView.m */; }; + A5C2C9A87ABEA51968F34749801E3E19 /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 23652696D4ED5CB7239C129C83DBB0D2 /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; A5CD5FD1E50562B7D20C8DCC09F8918E /* FIRInstanceIDStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CCCEBA88468B01A169C6465CAF3FD12 /* FIRInstanceIDStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; A603F92302A8297B0F3EBF7F7401EBBD /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AB317F0CFE633918FE469302716CA49 /* Assume.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1"; }; }; A608CD7C0F44E7CBBC311FDADA4BC953 /* NSError+FIRInstanceID.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A67C74E067248967893327F3DAD53D7 /* NSError+FIRInstanceID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A645F048EF24F095E5EA8E29DD1FEE14 /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = D768036BAB75B2CD87E942691547D629 /* RNSScreenContainer.m */; }; - A66A1A70BA2605D61A44DDD414F7925C /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 91A35AD1F7E5AB5426953BBB211E62FD /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; A68D95130278786381DA115EA4E9B527 /* NSError+FIRInstanceID.m in Sources */ = {isa = PBXBuildFile; fileRef = 7ECB7FF032D4794DA9840A5670C932BB /* NSError+FIRInstanceID.m */; }; - A6C33A2E9CC4A14E585DB7055765DD5A /* RSKImageScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E62079D73ED4FA523DE774809C97A9F /* RSKImageScrollView.m */; }; + A6C256909218413950A6E7EFDDDBB3D9 /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4256FD74190E181955C125070B01CCF3 /* QBImagePickerController.m */; }; + A74F49CF8ED0405D05005EEF44685ADA /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 358C204261A6299B250B302CCB9D8F00 /* RNImageCropPicker-dummy.m */; }; A7CB4E7AFE7FA70A8C23C368BA15638E /* FIRInstanceIDCombinedHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 451416F601DDE30625DA62A16B92765C /* FIRInstanceIDCombinedHandler.m */; }; + A8A950AC4D68AD848DFAA86FD0CAA73D /* EXWebBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = 49D1DEB093902AA186353D40F3C3178D /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8D5113CF95A396D35F179C25A3E27EA /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = 861A76F20C898312EB1E59975DFA19A8 /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8F0AEB8C8AF7823889AFBE5055272DA /* RSKTouchView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D048B65D5401F3B11C2CD7AD3F5FDE2 /* RSKTouchView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A926F6E165049E3DDE7FA0B31BD20BE0 /* UIImage+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 27BA61510074129562C639CBA224030B /* UIImage+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A9BEF0B50915D2B3AC8BC1A890E4ADF1 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 37E68EFDD7704903AF0C5598DFAB4E07 /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A9DA59F953FCF4BCD610E5E70342169A /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 240BF7E59EB0D6E281887DF21CCCCF4D /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA26C72333847B4F1B1B87014E6E5349 /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6AAB2748F1E3C806E8DF0D0D1DE9D9 /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA37123387656CE22A4C22D2873BBA1C /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1306A874922522A25C5081B057468E59 /* QBSlomoIconView.m */; }; AAA79A59D32A4D1AB6444255E94EE955 /* FIRAppAssociationRegistration.m in Sources */ = {isa = PBXBuildFile; fileRef = 05F735D71208B628185FD7C9C51A77F8 /* FIRAppAssociationRegistration.m */; }; AADF82455020A283FB36776C9B12E32E /* FIRInstanceIDAPNSInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 4573011531F44A2BF83F4401B9AA859F /* FIRInstanceIDAPNSInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; ABFF1AFEE6EB001906B3FF4B17A7ABBB /* FirebaseCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7ECE1CF94802F266870C32A042C6A6AE /* FirebaseCore-dummy.m */; }; AC30D3B158A8442C4DD2F248CA8528FF /* FIRBundleUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AF2990E98853FB180EF62E257CA5D5D /* FIRBundleUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD31F06A485D49B7C0AAED9C3A51EF37 /* CGGeometry+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BFD6F1262D7CFD8E1E86E5A80CB5B15 /* CGGeometry+RSKImageCropper.m */; }; AD413437CBBF101330CA8ECA8B18FF37 /* GPBExtensionInternals.h in Headers */ = {isa = PBXBuildFile; fileRef = 0782F9E9096355814719FF9B88161DCB /* GPBExtensionInternals.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF30F8A43512F3BBFFAF4EC0F2361E97 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 32E9D5A267B3193EC960E9AFFF3A89A8 /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + AF0907A2E2B5158A6A32DFB02D2AEADA /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = F2464CEBD0BB0B1B2E8D01172B2A6AEB /* Orientation.m */; }; AF8EC55515847D2EE9AD7ADED2B0B0BD /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = DFB3B3A22A1D883E021456672D098678 /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; B00378500E34E873F4275738E8D383F4 /* GPBRootObject_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = FB8F83C766BDABDF47DC628A400C9E8D /* GPBRootObject_PackagePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; B0823AE97EFF22CB013BD3D93C7BE400 /* FIRLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 515A1F6C79F560E37E999D318248B68B /* FIRLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; B0D17B1096B0DE3591B6DFF2EDC4BA73 /* FIRInstanceIDTokenOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = EA452AF7C2948DFAEDF5BF8E102BDAA3 /* FIRInstanceIDTokenOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B14EF768966CEC3002EA4A2DAEE08535 /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 97B391EFB99B208776049CE4F698A6EE /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; B3445D4E4EC4058050396D3FA2BEAAD7 /* GULAppDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 01667AE46D9B0857D288D0322E9859D5 /* GULAppDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B38F4734707A4306A48AC4308B4829F4 /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4256FD74190E181955C125070B01CCF3 /* QBImagePickerController.m */; }; + B3765807999B7DBA83511801ED8F5BB0 /* RNCUIWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F0B571476341CBAD9B4FBF1C6A98E39 /* RNCUIWebViewManager.m */; }; + B382031D2492F1CBB211999615293D71 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = AABE5795C8CFD060112F0AF07E40FD00 /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; B3B7F8E288D1780263ED71B04CFAC5F1 /* FIRInstanceID+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = A6E9647C4980516FAEF729C99A4557DF /* FIRInstanceID+Testing.h */; settings = {ATTRIBUTES = (Project, ); }; }; B45936B36964F613BAEA990136EFC28A /* FIRInstanceIDAPNSInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = ECAA1BE70470727702FE925831A02A0D /* FIRInstanceIDAPNSInfo.m */; }; - B48201AAA1B76C63E4EFD03A8269F315 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = E0CF2B48E590396E282D7161D3C9379E /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; B48B175BF8D11872F05DD9B0BE7A5A02 /* pb_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = A67A93040C93F21781D539C991CCEE83 /* pb_encode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; + B49F91721E88E10F553CFD471D0A6155 /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C35DBDEDBB81FA3C61ADD8DDEFDF38C6 /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + B52BC606F68E178A9A77961D0F49D878 /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E2301E3E067F41038D461AB5C3D3F3E1 /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; B5342DD8C99B6EAA57FAB6C09E94E38A /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 34E0A28899DD0A74E41D4C7D43982744 /* fixed-dtoa.cc */; }; - B5D596EED300963BD020ED34A292D58F /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = B48203EA174ED2282FC881C38A2BA481 /* de.lproj */; }; + B5D52C8BD8FA8A217B9F9C0689D937C0 /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = 44A02EB7CE80D015110C7D9C22D352C1 /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; B6CE63A97BACE41020A26A9FBDA65E4E /* GPBDescriptor_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 50211D8651BDEECDCF337C2943949119 /* GPBDescriptor_PackagePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7026A39D11CD576D23AE3BD031C940D /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 49203CB3A39CA1F41F48B859BA32E1D1 /* UMViewManagerAdapterClassesRegistry.m */; }; B7D9F8D1971A3797151BCBDF74824208 /* nanopb-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C26FDE4600EFD11466856933697391CE /* nanopb-dummy.m */; }; + B96A8FF7161D4C3966C93D591692A600 /* RNCUIWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = B578DF328A96228F19A957411F5615C6 /* RNCUIWebView.m */; }; BA72121160AF58E9BB0CDDE7F3A8C286 /* FIRInstanceIDTokenInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 59580373A446659C07B9D6B12E8B769F /* FIRInstanceIDTokenInfo.m */; }; + BBED6169BFEBC931BDCD62A09A50B074 /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 3C8C72EC2BF76E610A9317B92C3CE3B4 /* es.lproj */; }; + BC5D6E53E2637DAF4C67DC101A423A25 /* QBImagePickerController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D38A9993CEE1E3C4E749510217E641A6 /* QBImagePickerController-dummy.m */; }; BCFBA8C90FCC43DF9D66551A9D371971 /* GPBCodedInputStream.m in Sources */ = {isa = PBXBuildFile; fileRef = 034AB978EEAE0AA5F06DB6D822E28E93 /* GPBCodedInputStream.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; BEDC98C637D42DB31CE44DD1D5584DB2 /* GTMSessionFetcherService.m in Sources */ = {isa = PBXBuildFile; fileRef = 961E5CFB6EF6E98C98144578CDA78057 /* GTMSessionFetcherService.m */; }; BF0CDE313B0F3BE180D52BAED9F06B1E /* GPBProtocolBuffers_RuntimeSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 209FB1AF949B819EDBD99CF85EA82E66 /* GPBProtocolBuffers_RuntimeSupport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF5B46626A4BAE5F8803A0510A26A5E0 /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = E733BBE63869E6D6C3E02F5FCC6C08C5 /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BFA7899BEDFB6607EB45C85E65331F83 /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C5C96ED1BBFBDDD5D873F41010FE12B /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; BFD2F7E2724939BBE6DA011936B8A9E1 /* Timestamp.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = 64EE348660F8A8DDAABFA36434FE1DCE /* Timestamp.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - C0091AE3F406D3C829D49A1EF04A6DC6 /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29B4227FA2B6B93E9449DB91EB95C690 /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; C070952B3F12DA66D352AC0BAE33C150 /* FIRInstanceIDTokenStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 16012A4DCE6C5D44809A303788CD7C71 /* FIRInstanceIDTokenStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; C080B8267DB7C51F5683E9F4C2B39511 /* FIRInstanceIDKeyPair.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E64579CEF306EFF1F501D02D17A75B8 /* FIRInstanceIDKeyPair.h */; settings = {ATTRIBUTES = (Project, ); }; }; C0945FCF515705CDD7CA3ADB6AF512ED /* GULNetworkMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = EB6981EF8981D724C17B40BCE18F4DF1 /* GULNetworkMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1D10DB3564C87834FA65EEDB090DA9D /* RSKTouchView.m in Sources */ = {isa = PBXBuildFile; fileRef = 47A6A31F9EB2B51ADD0931A873E89C5D /* RSKTouchView.m */; }; + C13E203132EEC3568DBB77FB567D69C4 /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 62F46A50BC1F0985EABC6DB040306E23 /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C18ABBF4D019811130D472686862B429 /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E28442A13BCB5F5FB8EB8D623697E822 /* EXFileSystem-dummy.m */; }; C2C81088574BD4C52006BA29AEBA587E /* FIRInstanceIDCheckinPreferences+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = A41B7BFEABEB2A6449351B5C578A54D3 /* FIRInstanceIDCheckinPreferences+Internal.m */; }; - C3188A3CF9EDD3B1E496FA575346477C /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = A82DD3844C4A552F3FF128E2A7A93145 /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; C327914498A09C2E0C953F8AE792E601 /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C8B860B45EC3D0A6958A4F91C0490A3 /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3E63457CF76484173C6FD42ABCDF711 /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 875CE55CF06282B95D8CDF0CD9D1C9F8 /* RNCWKProcessPoolManager.m */; }; C41623E483400C6D0EF9B5B180977DED /* GTMSessionFetcherLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = 91FFC3ACA796AF71C4AB51C4D5637080 /* GTMSessionFetcherLogging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C439D52599AAA5AB8CFADBA10BE4430C /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = CAF143E1E7ED92D08E3C3432190E7A9E /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; C5669D28F2C424FBD3C87257F1AFE0B8 /* GULLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E4F9A756C618643123B7CD818A7BB8E /* GULLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C60E5F0F870EDFE06FCF85494C3A391E /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = 342998086589B49C17CB7C08EE70FE00 /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; C639CAD215412925EED667B28F574670 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = C835B8E4E53C0605BC7F8BA70CCB892F /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C63ACD8218A2D9E10EE682934D0F4CFC /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = F943E8994A4AA646EFA11DFF0111583D /* EXFilePermissionModule.m */; }; C695C216632743B623F06BF40207ED94 /* GTMLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 80F583A588A7BFDA1F7CB40F133E0521 /* GTMLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; C6D6DC05035BAA5BF8C0D65A254F8066 /* FIRComponentContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = D5E3DCD7AD1C184DF5044B42DDE421E4 /* FIRComponentContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C744BF6D3BACE7FCD586E53F95D454F3 /* RNCWKWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = FF0B4AFE49BB7BE8467BF6D0769C978A /* RNCWKWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C78365E2347A577353B1F935C89C48E3 /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = EC46FEF7E1E3DC4BFFA9E3F3D91A752E /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; C788CC9F951C5FE3BE71F5728E9ABB7F /* GULSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = BBDDC56455CE2A8EEB6FD459EDBD9EC5 /* GULSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; C7DCA36BC01C33478E6BC8801AA6F929 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 85CB4225592A21E0AD70BE53C1742166 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; C7EBD03407C402D32F202E03F9D3C14B /* GPBWellKnownTypes.m in Sources */ = {isa = PBXBuildFile; fileRef = FD1FC6E5021013DE598D3FECD7E43103 /* GPBWellKnownTypes.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; C86A11C817D19AE89C208A1E7678EE4D /* GTMSessionFetcher-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7228F1A5DD1E7449CFFAA650E17D8BF7 /* GTMSessionFetcher-dummy.m */; }; - C9AC68BAA1CB3AF856FF3D922E75DCCE /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 23EF46C4ADCA8028AA4E10BBB66CBCB9 /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9458500834DF53896A805C5BBDA421E /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 92539DBA7C237CC37CC174B30BE17026 /* QBVideoIconView.m */; }; + C9D3DA181BF2FB56A1283EF6837E2B1D /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = A2D240154C82D5836FD6D6B448742EB5 /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9DBB2FDFF186442599314D1ED853E4E /* EXAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = A67810017C226A90912C399D17D6F3F8 /* EXAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; CA250F71993E9FEB1634E96F75817D7F /* FIROptions.h in Headers */ = {isa = PBXBuildFile; fileRef = DA25CB04EA64550643955E87AD36DBB1 /* FIROptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; CA42B2D125C43AFE1D9D61180465C5AB /* Api.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = EB42C933792B47AC97EF02831256A945 /* Api.pbobjc.h */; settings = {ATTRIBUTES = (Project, ); }; }; CA927A36413545AABAB2D8D57F6217C8 /* FIRInstanceIDCombinedHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A15FBFECB164015748AEC5366BF3741 /* FIRInstanceIDCombinedHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CAF7F9A29C80BA2F930578157246B8C6 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B8F0579A9CF59FFC4F5F3CC25D6A8C2 /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; CB1625BCCD0E5D4B9EC6359456203748 /* FIRDependency.m in Sources */ = {isa = PBXBuildFile; fileRef = 706A49ED0395C47363714A6B97AE0F47 /* FIRDependency.m */; }; + CB2AA199F135077B9B9BCD3C89048CCA /* RNCUIWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 86509703295F22DF8DF2C71F2A7F79F9 /* RNCUIWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; CB74F65C279D0D01C5E2AB702DBEFFA7 /* FirebaseInstanceID.h in Headers */ = {isa = PBXBuildFile; fileRef = 35078A0D30C07DC0E51293BAB4B7A48F /* FirebaseInstanceID.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CBE6D5F56356628212758CEDC9DA623A /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 54ABF5F2B16EAA8A1545B71B5C961875 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC1F690FF76AE0E45622809281DB2B49 /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = FC3B30836EDAC398396B777A009CE255 /* UMExportedModule.m */; }; + CC5A0086E528C422C59FB1B89303D107 /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 04387AC8C6AE41C3100B505F8335F30D /* QBVideoIndicatorView.m */; }; CC745C7C72057C01B128517182E30B59 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 17D71991D0280E8C03F310F0CAABB18F /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; CD7CB53B7D223BBC381160BA73F796ED /* FIRInstanceIDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BCBE4FFA2B48385E101CAC42332AC11 /* FIRInstanceIDStore.m */; }; + CDBC59077AD1D33760F3265595534A61 /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B3F11C80E1039393852D112C2E721A8 /* EXConstantsService.m */; }; CEC8B820873F8BAD5C806EFF198D194F /* FIRInstanceIDTokenOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = AE4BEC52BB9C31042CC4495A10E43DB1 /* FIRInstanceIDTokenOperation.m */; }; + D063737F7D6857968BBA1E9AE3357765 /* RNCWKWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F03EC47BE3796BA3D41D4CA4C0C177BB /* RNCWKWebViewManager.m */; }; + D27FF87D9B24732BABC5D2F3F78FCE5D /* RNCWKWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 31F57D68FC16B6E7772AEA2799F8BCCA /* RNCWKWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; D2E942FFD868D20C41660AD7771AF1A5 /* FIRAnalyticsConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A5BB19124FE2A8CCEE96A5348423FEA /* FIRAnalyticsConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4D233C302C08D761B45B38FC1656968 /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 846B0BC1DCFA4CE75C9A46E4DD21840F /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D3C2E30F37AD156D77471838034D8C68 /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FFFA26A42C9B9AB64628203684027FA4 /* UMReactFontManager.m */; }; + D4CD33481457050508DCFB2F1183BE8B /* EXAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 827904353D3734D52899954551594443 /* EXAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; D4FCC8B3D115BCB7C5F44B701C479FC4 /* FIRInstanceIDCheckinStore.h in Headers */ = {isa = PBXBuildFile; fileRef = D64988EA80D874BD49F788383ACA30DC /* FIRInstanceIDCheckinStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; D5471C0037BF76FDE78F062A77200E52 /* GTMSessionFetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DDBA0C893A828F996D54E54B9E0B132 /* GTMSessionFetcher.m */; }; + D5471ED4617926B80DCA66DDE1FFF330 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B41A54F634DAD80956CC13ADE0E55364 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + D5B967B20760F7D01122C77D08672395 /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 47D5B955345FDC85DBE2F5F2869E5E6C /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; D60F4B966B0BCA71E7F8EFDF45B85A56 /* FIRAnalyticsConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = A340F0B85A7A004E4716C810327DCCF2 /* FIRAnalyticsConfiguration.m */; }; D6C20DCB29B6BFF5E545D724066718D0 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 6946B862376ED5B6185DFD59CE9BB4A5 /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; D746976AE8464DBFF5D281F2906E21B0 /* FIRInstanceIDTokenManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 98A65BC0BF8190887897FA8466E7C946 /* FIRInstanceIDTokenManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D7C24A120817283C4DDD1D412D4FC628 /* UIApplication+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = C74F06CA3396E64F308DC487B0BD1373 /* UIApplication+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D7B6AE67B618EFF3A03D73F739149865 /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = D65AD727225BB92275B31AE45AD57991 /* Compression.m */; }; D9209630855C4AB6C60AB736EF20153C /* GPBMessage.h in Headers */ = {isa = PBXBuildFile; fileRef = 60FB01EC5A5AA441B4CA867A5A25DB8B /* GPBMessage.h */; settings = {ATTRIBUTES = (Project, ); }; }; D920A12FAEA9FE2490E9116EB01ACB30 /* FIRComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 4690E70186C445A91474BBC3A31BEAB2 /* FIRComponent.m */; }; D98B266A6E8E7CB1C4C7744FF3B8C6CD /* pb_encode.h in Headers */ = {isa = PBXBuildFile; fileRef = 88173FEAE6AA0334663679ABEB47A34D /* pb_encode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA860D1E9056E672D95ACC3C2D54A42C /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E049E51AE444A3530A98034BF1B85316 /* RNCWKProcessPoolManager.m */; }; - DB3248E8551A96B79EDE6C6590F1BDDE /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E0D575A7564B76C5C6283AE37A01B7B /* RNScreens-dummy.m */; }; + DA496E0597C64A3404628E03E447F7F0 /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = D96DFC2DCCAF308B72584E5077455DBC /* UMModuleRegistryProvider.m */; }; DB3ED88E34A2636F499470962B9E65D3 /* Struct.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B17644C190C6921FF8F6E4980B8BE97 /* Struct.pbobjc.h */; settings = {ATTRIBUTES = (Project, ); }; }; DB41F75FFBD7F117091ABD0941F87582 /* GULMutableDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 29B77C1B615C9F7970503A7E8C200548 /* GULMutableDictionary.h */; settings = {ATTRIBUTES = (Project, ); }; }; DC4D736295104B8DE7F713B25C782C58 /* GPBCodedInputStream.h in Headers */ = {isa = PBXBuildFile; fileRef = D08A5D686D77F6A0E33952D2AD2EA06C /* GPBCodedInputStream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC72BC8D0518C51608931B9CBB0570DA /* RNCWKWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = FDEEDFC03C02A5ECC34DBB0C5EA3F9F2 /* RNCWKWebView.m */; }; - DDEADEDA71B66935B01F5842BF03FEB6 /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = 86144205600214BECA2C93CEDC2A76D7 /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD80E713216A18B09BD63F0CF05D3B9A /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = A6A62E84F3E5F9AF4A3F1E9E0C488173 /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE22255B85ED5C17E8432D9DD5E4591A /* EXRemoteNotificationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 268FC354AE815473A7349D72E7FC2712 /* EXRemoteNotificationRequester.m */; }; + DE9204E50FF1B894A61BE443E21CBDE1 /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EE49B8A769B1E7AFEABA9B6B0B88B03 /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DEBDC71B78F63208A5178DBADA1E8DBA /* EXDownloadDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 51A480123ACF8DB07F3E7974F79FAD96 /* EXDownloadDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; DEC83087353AD0FBD02A519C55BAAF7A /* FIRInstanceIDLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E5FF9B8F5625C54B2248B8CFBD8433E /* FIRInstanceIDLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DECFC95C86D393B452CD612C5232AB73 /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BC1B641074F5EAF33B6FD1326641579 /* UMViewManager.m */; }; DF02A2098984DB92914CE657E8FEE6A4 /* FIRInstanceIDStringEncoding.m in Sources */ = {isa = PBXBuildFile; fileRef = F4A3E35C402DA8FA4C4B62F2269FFC1C /* FIRInstanceIDStringEncoding.m */; }; + DFBDFF433059306D0E80770512F15C74 /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = 34E798DBC90A3B55CAA3BB2CDABE0C2B /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; DFC5E47A627B01975364AB9CFC2A549E /* GULReachabilityChecker+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7498C22D9DF923F2EB5402E6FB46A266 /* GULReachabilityChecker+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DFD2EC1808D7D3F850D00C2698CCB8AD /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C8FFE0DBED1557E36AC1665664FD90B /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; E03E8A327381935C6AB749A319E3923E /* GPBDictionary_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 3877D8495364FD75AC548B8B0F16D0A7 /* GPBDictionary_PackagePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0B80F839FDD9EBCE6392D251468E284 /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8176AA8C6D2DD64BB3198F842BE4F65A /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + E2E07878F80C3CA380F84AF10840308B /* EXSystemBrightnessRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB164B93049877B4D556C25592F3C98 /* EXSystemBrightnessRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; E30636799D2363B05D48F859511864CB /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 601F8DCD411FF95D5B4DB5F224ACF266 /* demangle.cc */; }; - E6AFE3C23CCFDBE8DA7BBDDC2D50CBCC /* RSKInternalUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E94C6CB02605A72F32BBE9875D6AC50 /* RSKInternalUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E41EA8387DD032D55443223065DF058A /* EXUserNotificationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 41BBF971DC07C2BA314CEE1FA9C9C4AD /* EXUserNotificationRequester.m */; }; + E7F75705B12F4BDE6A75BCC35621A0DF /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = ACB20375414EC0E7663C9E6433ACC179 /* RNScreens-dummy.m */; }; + E825D205858460845558A16F3D444FD0 /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B1B38D97CC2E75944B260CE9765367E /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; E8288CEB8339BC0E7A6C6CAF005EDED9 /* GPBWireFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D1E7E185F853FC0062B62CDD76AF164 /* GPBWireFormat.h */; settings = {ATTRIBUTES = (Project, ); }; }; E9750DC0BC948A8207B801E66195A911 /* GPBBootstrap.h in Headers */ = {isa = PBXBuildFile; fileRef = 02EE269B177F9131844B8B87D0E70230 /* GPBBootstrap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E992EA5B66443DB7356ED04F10471B61 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F6DB59C58191061510504045500E3D53 /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; E997297D6CFC855095C08922CDDB4DCA /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E93B22E06F3F818C0549A563FA597AC /* Format.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1"; }; }; + E9F0F76D2C387CB5210A82D50E780819 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3A32005A36CE1F8C2942EB9F65F1ADBE /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; EC0124C2EFAFAADBC4024B76F53ED067 /* pb_decode.c in Sources */ = {isa = PBXBuildFile; fileRef = 13CE02627B836EDF5071714929924A66 /* pb_decode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; ED2B5A1995AFDF63318F71ECE36C618C /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 20630B5E48C7CB69BF91D7D7F265396B /* vlog_is_on.cc */; }; ED38C771CC6B89094B59C12DAA7DC7CC /* FIRInstanceIDAuthKeyChain.m in Sources */ = {isa = PBXBuildFile; fileRef = B54AEDB05E5080BC1BBE0209C846D048 /* FIRInstanceIDAuthKeyChain.m */; }; + ED6EE21B477CD958C06BB06515712F3D /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = C73159CB46392481F5E310B186799CEF /* EXReactNativeUserNotificationCenterProxy.m */; }; EDBEA52F88EBC169CA6F8210950C9A7D /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 33218EF1E52206241B7FCE116C3107BE /* strtod.cc */; }; + EDCE47A92669425E094F515F070BD47B /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 26C4F97FBC172AB416CDD855FC91AB1A /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; EE40B868388C40490FF1E07712CA4B3E /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = D31213551926432FA2202EC56108DB24 /* bignum-dtoa.cc */; }; EF0D0CA19F6AF46B42901543C77EB4C0 /* GPBCodedOutputStream.m in Sources */ = {isa = PBXBuildFile; fileRef = BABA188C1E6539FAC9CE54B5C817AF80 /* GPBCodedOutputStream.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + EF93A2F86BD6725C49F5EBC66CD115FD /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F1318E29E57550F95C16288E33321257 /* EXPermissions-dummy.m */; }; + EFB447DDED67D3F5DC1C512178C36953 /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DCC4DE9E15A2BD536CB0732B569E143 /* react-native-orientation-locker-dummy.m */; }; + EFDFE7E1BAA482B57A5362F7936B8D96 /* EXAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 16B677B7081A3DC51B1488436F9B0241 /* EXAppLoaderProvider.m */; }; F06444243ED98B3E9B778F664FB46788 /* GPBExtensionInternals.m in Sources */ = {isa = PBXBuildFile; fileRef = 60FE58C23DA01DE44721A1DB79EC1B0F /* GPBExtensionInternals.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - F0ECC0C65D845BEDC02BD06D0A1D728B /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 639A8A756E2673AD03AD87B87B1215D6 /* react-native-orientation-locker-dummy.m */; }; + F0CF6B026333A81AE8357A56624C2195 /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 056C7FC5EE011B3CCC5AE76F67DF6962 /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; F15912A4615676CBCA47D77A31A1734A /* FIRInstanceIDCheckinService.h in Headers */ = {isa = PBXBuildFile; fileRef = 16D5B1912353CE8623BFB2FCF1190963 /* FIRInstanceIDCheckinService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F1A61C1D8004320F4ABEBA3E2F1DED32 /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = A541BAD8E7E67A7548179FAFA3A18FED /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; F1B902B60FA4FD0B8198397332120C84 /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4640D3CB0EE847C77BD022CCBE88A4D /* dynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1"; }; }; - F1D0A3CA89D3C37E539C9E11A0215589 /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 21E490EE02F5EB3928C5955CAF2320A2 /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; F2DFD7896F7A6125A0AC66C8FAFC7935 /* FIRIMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = A20CADD4552AE7665DC8A5AC2905BE9B /* FIRIMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F33E12977B6F58815603A341FACF8A99 /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DC7C3515580940D0C1C64597E302966 /* QBAlbumsViewController.m */; }; - F3A06762C5E9EBB4E907B9E4690AE89E /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 88ABD257F2B1603EFB1A5D2DE450E668 /* RNImageCropPicker-dummy.m */; }; + F30097BF7D7809D91AAD9FA1B0BEFC79 /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = F8B5CD91CC86AD7935C9D1BF1ACB5ED0 /* UMReactLogHandler.m */; }; + F3ED7ED8FEB605CBA35EF558D8AB8994 /* RNCWKWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 23B56F3012E8E2C96BA634327B6D24E9 /* RNCWKWebView.m */; }; F41B1921B80066811103216802F90604 /* GULSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = B951C090165B8D26D9E040D670A5F2D9 /* GULSwizzler.m */; }; + F4624CBC0891EA88397FC0E58196E766 /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = ECE4F4D21720856B096509BCFE189EA7 /* RNDeviceInfo-dummy.m */; }; F4AA1DA9CC99F6B40605401FBFC1010E /* FIRInstanceID+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 8562482F04AF663EA3F27B4C0C5EAFB1 /* FIRInstanceID+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F4D8A9AC9C439FBBE694998CA5748D4C /* RNCWKWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B7D8EB6DE4A88212952A63A64F3F6B7 /* RNCWKWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F4CDC8F6E1142DB9EB0CC5E43FF05D26 /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 8B8A65EF6D756E78D1E16ACF41C31AEB /* ja.lproj */; }; F515627FFC40CC53D44DDC5A7D112750 /* pb_common.h in Headers */ = {isa = PBXBuildFile; fileRef = D1D409B472D80F2EB4C71563990FC72D /* pb_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F6297191A804602E99A8430DF6DD339E /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 3C8C72EC2BF76E610A9317B92C3CE3B4 /* es.lproj */; }; + F56337E1CBD455759BB8B042B07DA5F4 /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FE8F35C8E33EA725E63131C4AA800404 /* react-native-webview-dummy.m */; }; + F691D9FA47A573CADDCF5584D7D693DE /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FA18D746E9BF90413F6FCF201C60696 /* EXConstants-dummy.m */; }; + F6DC0252F62B5E68F39D8B43E73B22D2 /* UIApplication+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = F3BCBFAD374F9A20E01958A9D04855DC /* UIApplication+RSKImageCropper.m */; }; + F6FF8F0BD489DB9F28B169C1914043BD /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 37BAEBE1865DF8700BAF305E701AFB87 /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; F740E0F198B1AB9831AAEFAD867AFB6E /* GULAppDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = FF53A904DED58A3B128E71C3BB3400C2 /* GULAppDelegateSwizzler.m */; }; + F7785755D00BD629F44E19E70242AFF1 /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = BC5760D35C9D6F3A44AAF25728469960 /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F8CC3FEA346D5E1765C947AA4B97DDB1 /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = D3DBBC941A09E991D876BEC8E8857BC8 /* zh-Hans.lproj */; }; F901A44BAB4BB2967096265D767469D0 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 33E9AF75CF68904359D675D2F6B5CA19 /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1"; }; }; F91A93D3CC21280DB2FD91203A334429 /* GPBUnknownFieldSet.m in Sources */ = {isa = PBXBuildFile; fileRef = D318286797895EE8DE84CE55BFFE541F /* GPBUnknownFieldSet.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - F9AFB09E08707A30588138EDDCAFBF97 /* QBImagePickerController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D38A9993CEE1E3C4E749510217E641A6 /* QBImagePickerController-dummy.m */; }; + F9A5B02F41A79DC79E3279F53783AF90 /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CCD50F6E0B8EA59A93E50FA9623175C /* EXFileSystemAssetLibraryHandler.m */; }; + FA0A87C7E41E6E26F158E116AC743618 /* RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = A4F2AA49E1687DFB015A34423BE87536 /* RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA14D71302F9C125B28A1A0C86204833 /* RSKImageCropper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FE503EE8D17258B72EFA6478A1EE7BB2 /* RSKImageCropper-dummy.m */; }; FA2A85685FD2F956E9AD5F88ED8646EF /* GULLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 9ECC8E411E019FCD2AF6653ECBB8AEEC /* GULLogger.m */; }; - FA6441FBBEC6F160194967D6047E3CFA /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = A452DDB9FD10DDAB60D3F04FA2DD6BAF /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FAF6B57EDEE412A783FD3FD64B4DBF17 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 79A3AA7303075D4CEFF344518B5D27E9 /* EXWebBrowser.m */; }; + FB06795DDF659DD376055F22F5E9A478 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 27B862744D32DFC1C73A8D6E420C33D4 /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; FB1881FB69A2623C6C30875C619DA9F7 /* GULSwizzledObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D2F4AA1E8F90B87245842734E56023D /* GULSwizzledObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FBBE82C89D51E9040D4584EE919BC60C /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E9E5AFF9F1158A263F627B523DD4F95 /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; FBC7D3B12B44B299E9CC578C66372048 /* Any.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = 12E720231196ABC7A2F315B1C9F78BBC /* Any.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + FBFFC5C6E84F0C8336D519C301385828 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = B48203EA174ED2282FC881C38A2BA481 /* de.lproj */; }; + FC73CF45898655A99060A7A3CC51958A /* EXContactsRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = ADD07E70D6E7D8B979279C2A9A64CC74 /* EXContactsRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; FE1BA6CF59B74CDB7A9CA0DA5CA101FF /* GTMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 050D2FFCB89E3CDCF40A66AC84E9D103 /* GTMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; FE3350C2A4C6ECEE35DA90459AC249CE /* DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 413420DD213E1ED35AB2EE5950DB489F /* DoubleConversion-dummy.m */; }; FEDD051EB5E8D2595A2FC585AF847AD2 /* FIRInstanceIDTokenFetchOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 86FB658177A76D66DFF67A1F1B6430D6 /* FIRInstanceIDTokenFetchOperation.m */; }; + FF1ACB706A6B7CBDEDE5E56103C77869 /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 099FB3E4E24A8F22C58E2F084CD4784C /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FFB87EB0D95A6E493406748DD004F932 /* RNSplashScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 56251F479828941CB3B4812B2DCB9493 /* RNSplashScreen.m */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 0545D06269AACD0CA47D771CF60B0F00 /* PBXContainerItemProxy */ = { + 03F67C71C1BCF7AB38C99B50F6A65CB4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000000005960; - remoteInfo = React; + remoteGlobalIDString = 88986567DE4DF8D6F1183EC5ABBE4218; + remoteInfo = "QBImagePickerController-QBImagePicker"; + }; + 0489DFCBC90BAFCDACF931CE4FD819A0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 66641B93FAF80FF325B2D7B4AD85056F; + remoteInfo = "boost-for-react-native"; }; 05F88362B58CA661718541D4C8D84A46 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -515,12 +709,40 @@ remoteGlobalIDString = 368FB7FBA34E3323BB42D13325551C95; remoteInfo = FirebaseCore; }; - 0EE71388025283D337DDEAE1DAEAF7CC /* PBXContainerItemProxy */ = { + 07E712437B2BAD104BEA1D0616FA2AA1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 10D172205FBF5536819F94D0AD56DE78; - remoteInfo = yoga; + remoteGlobalIDString = 32F8EA730FE2005197F54338D2C236AC; + remoteInfo = GoogleToolboxForMac; + }; + 0A101293FA0973D9CCA7003574F59D72 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 80550EFCC9B14329B278C9CE06F8D916; + remoteInfo = RNDeviceInfo; + }; + 0AF5E90688ED05527671777E991A74B6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F1DE11E9221F196A8A9D3464F96A345A; + remoteInfo = Protobuf; + }; + 0E6E7586B03D663EB565E32D6B4AA510 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 000000006B30; + remoteInfo = React; + }; + 11E58C7A1C9939FA18BA11B76BD0791B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 000000006B30; + remoteInfo = React; }; 1A3C492F71285F25490A56EC8987E437 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -529,6 +751,13 @@ remoteGlobalIDString = 7969F0F17682790DCAF63BC9AF2176ED; remoteInfo = GoogleUtilities; }; + 1CC755C2CC7D7110C7BB131E9E87E2DB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B7A9163CFC06AA914218608942A70B50; + remoteInfo = yoga; + }; 1CE3E751E533C71A2F0C6903F97BFDE8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -536,26 +765,12 @@ remoteGlobalIDString = 39E0403E3ACE39BC0D878D82FAB8F012; remoteInfo = FirebaseABTesting; }; - 21F171CC2DB6203D5358EEA10CC79569 /* PBXContainerItemProxy */ = { + 22267B81712B4A524C00C020C844B005 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 111EE270AF30FB09FC9EB73638F2E16A; - remoteInfo = RSKImageCropper; - }; - 221B7DA2A8C42C51C5102CFD7F21F0BA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 21D4CE3FA96D3BE5B8237D082505C188; - remoteInfo = "QBImagePickerController-QBImagePicker"; - }; - 223479AFBB81F9E760378E6C4A62912F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 42F7AF66FD1178857DC3A2834552BE76; - remoteInfo = FirebasePerformance; + remoteGlobalIDString = F285EFD8528706D9EB51D7540269B791; + remoteInfo = UMFontInterface; }; 29C75182850787283A5CB901C4069706 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -564,19 +779,12 @@ remoteGlobalIDString = 1ABBF6F89787BBEDF49B4636ADB45587; remoteInfo = FirebaseAnalytics; }; - 2B8A7DF5B74DB781BBBA64EB96E56A17 /* PBXContainerItemProxy */ = { + 30B83DE9BC3E24DFA790E9A8DD211F6F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1ABBF6F89787BBEDF49B4636ADB45587; - remoteInfo = FirebaseAnalytics; - }; - 2EE116F6C770D5147861DD22F11D0681 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7969F0F17682790DCAF63BC9AF2176ED; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = EF4A49EB410755DB3CEB3DAA961FFB19; + remoteInfo = UMBarCodeScannerInterface; }; 30E4AFE91AFE993916F5FF5C06DD35DD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -585,6 +793,13 @@ remoteGlobalIDString = 586739D116442BA7FCD2EC0353EA0FA4; remoteInfo = FirebaseInstanceID; }; + 3111D1F776E3E8F84BBAE7626ACF9468 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2F8CF410B0326B6DEB5A2CDA4E2A2D8B; + remoteInfo = EXConstants; + }; 33B78007BAC95CB937CF2DFE82E76C79 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -592,12 +807,40 @@ remoteGlobalIDString = 2543734D0A332B2588202904B99CC151; remoteInfo = nanopb; }; - 37741C1C5AB21BAD1E3305A5671E7D7A /* PBXContainerItemProxy */ = { + 33D779B9B49082C990E65C37BCEF27F4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000000005960; - remoteInfo = React; + remoteGlobalIDString = 99FEE446172BA9A9D3C429193C87B775; + remoteInfo = RNScreens; + }; + 37B519CC86E1443CFD42904C9A455579 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8A247007F4F0BF7C2DD4DD8A7FC765B1; + remoteInfo = QBImagePickerController; + }; + 386E56024551B3F3569B0F45AAE9D9F3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7969F0F17682790DCAF63BC9AF2176ED; + remoteInfo = GoogleUtilities; + }; + 399078C04D515EC69797A2FAF9D3B88A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F285EFD8528706D9EB51D7540269B791; + remoteInfo = UMFontInterface; + }; + 3A824F3ABC5FF18B9E2A64B43B285592 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E3A3FB14CD4ACD21565913CF4A4B097C; + remoteInfo = GTMSessionFetcher; }; 3D342107E8BB2E1AAA760A57543C5A06 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -606,19 +849,19 @@ remoteGlobalIDString = F1DE11E9221F196A8A9D3464F96A345A; remoteInfo = Protobuf; }; - 3DABC68FE6684D99C7CD71AB16B0EEC1 /* PBXContainerItemProxy */ = { + 4264AED38BF41D5973129990A27A540B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F1DE11E9221F196A8A9D3464F96A345A; - remoteInfo = Protobuf; + remoteGlobalIDString = 000000006B30; + remoteInfo = React; }; - 4159CF65AEE99AA12261F3E3D5E5D7F2 /* PBXContainerItemProxy */ = { + 4425991D591AB1CA8444DDEEA092E696 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 928F6D091147C82DAB685010E23BA90B; - remoteInfo = QBImagePickerController; + remoteGlobalIDString = 42F7AF66FD1178857DC3A2834552BE76; + remoteInfo = FirebasePerformance; }; 48B8A5D360038B198CB9ABDEC205C1F7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -627,33 +870,54 @@ remoteGlobalIDString = 586739D116442BA7FCD2EC0353EA0FA4; remoteInfo = FirebaseInstanceID; }; - 4B23C60B79E5F3E3C0BF93DDBB31F5C1 /* PBXContainerItemProxy */ = { + 4AA9BB29ADE381F3FA13FE4F23898402 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 111EE270AF30FB09FC9EB73638F2E16A; - remoteInfo = RSKImageCropper; + remoteGlobalIDString = 9BF0DA5C4D6A4C61F825D88A08C2F7CA; + remoteInfo = UMSensorsInterface; }; - 55607F090267C22B4E11EAEBD923379A /* PBXContainerItemProxy */ = { + 4B9A2556D195911252C20C2706806A71 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 32F8EA730FE2005197F54338D2C236AC; - remoteInfo = GoogleToolboxForMac; + remoteGlobalIDString = 24F769FA9B03BA265696664C50C70828; + remoteInfo = "react-native-webview"; }; - 5594F8524B33D04522B92DD863C070E3 /* PBXContainerItemProxy */ = { + 4D868DD673E0BCD75FCE3AD3B286CA4F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E3A3FB14CD4ACD21565913CF4A4B097C; - remoteInfo = GTMSessionFetcher; + remoteGlobalIDString = 031F6220C2D49E4AD5F61FAA0ECADF64; + remoteInfo = UMFileSystemInterface; }; - 570A54C4F60052B8EFEB0116752DB026 /* PBXContainerItemProxy */ = { + 5563E05C1CB9A4D6246F249A76335C90 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ABA9A411BB5A359862E5F1AA6238278E; - remoteInfo = Crashlytics; + remoteGlobalIDString = 5AAD465FECAE9083F45E3DB9252A8302; + remoteInfo = FirebaseRemoteConfig; + }; + 56E2A5F3ACCD8E382AD5CC8D2F3F450F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7C36E7C600F8DE2BE1819059C80F2182; + remoteInfo = GoogleIDFASupport; + }; + 59AEE8D73B959701282CA1263A1A949C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 368FB7FBA34E3323BB42D13325551C95; + remoteInfo = FirebaseCore; + }; + 5A6F88731F3D3A7C6C48AFE508892021 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 037B3080D17C0918F3E81F3A1BC9210D; + remoteInfo = UMPermissionsInterface; }; 5A9363F4FD6B77942B665046B14395CF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -669,6 +933,13 @@ remoteGlobalIDString = 5AAD465FECAE9083F45E3DB9252A8302; remoteInfo = FirebaseRemoteConfig; }; + 5C18A82DEC1E4DFCD36BD4D17F0E9ED3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4412C5F689DD128EFB8F42F11C502D2C; + remoteInfo = UMCore; + }; 5D4696B5DC0410EBB318096CDEA1B03B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -676,6 +947,62 @@ remoteGlobalIDString = 7969F0F17682790DCAF63BC9AF2176ED; remoteInfo = GoogleUtilities; }; + 63240E8EEA72621B43B1DC133E52685A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = AB021401ADE9E1431240BBA948E7965E; + remoteInfo = GoogleAppMeasurement; + }; + 63DB774D4FA9EE42B4CAD951CFCDA6C8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3C9001F23F58850FCB7FAEFA0C72E507; + remoteInfo = "react-native-orientation-locker"; + }; + 64789DC79A7E15D05A20B428CA16565B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F42432668A0F81BE898F1FEA0D6A83B7; + remoteInfo = EXAppLoaderProvider; + }; + 69437501A8C8109A8CACDE3DAD285106 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0DABBD55913D3E7469399FF80333EA1E; + remoteInfo = "react-native-splash-screen"; + }; + 6C9A91284B831230762C99FF81852B00 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 26A5B3B7F44E0C2A69ADF5B06E41C24F; + remoteInfo = RSKImageCropper; + }; + 6F4411D92BD9A18256186316EBDEC781 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E982F26D0D763FE8A6D551E895D4027A; + remoteInfo = UMFaceDetectorInterface; + }; + 70F37C141BA487162A565A5A71134D97 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 037B3080D17C0918F3E81F3A1BC9210D; + remoteInfo = UMPermissionsInterface; + }; + 7289852A57F2B726690AB94B3169D94E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 000000006B30; + remoteInfo = React; + }; 75709DA4236EE310812BED9AE5852B6C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -683,6 +1010,20 @@ remoteGlobalIDString = 7969F0F17682790DCAF63BC9AF2176ED; remoteInfo = GoogleUtilities; }; + 7880B3ECF0885AE6324D69FB3B8AE97B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4412C5F689DD128EFB8F42F11C502D2C; + remoteInfo = UMCore; + }; + 7E36F2B2549B43FDFDFE0529A266208C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = ABA9A411BB5A359862E5F1AA6238278E; + remoteInfo = Crashlytics; + }; 8133F53ED6CDC355BB2264E4DBA0BF96 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -690,26 +1031,26 @@ remoteGlobalIDString = F1DE11E9221F196A8A9D3464F96A345A; remoteInfo = Protobuf; }; - 82D205C593BC9656666B80B677BD864E /* PBXContainerItemProxy */ = { + 81FCF1570B91167CA7DB3B02E3D3E0CD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8F9FB30742F24E06348CA6BB7BE816B4; + remoteInfo = EXFileSystem; + }; + 848B9359A4D6F254C446229A98E92037 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 29FC2A0EC130F2F2AF7AC9AE94A583B4; remoteInfo = glog; }; - 83F588463DA126EEC778DBFD7E268964 /* PBXContainerItemProxy */ = { + 867F7CA5E4D34156D61E0C13D4850E2D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 76D3860A83438EE6A0ACBBD4BBB61B14; - remoteInfo = "react-native-orientation-locker"; - }; - 87CF346560B24E0F39599A79E8F91E44 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DF470A1028ED32C9E70DBDAA805F8802; - remoteInfo = Folly; + remoteGlobalIDString = 3FCFE37F3115CF59C06A7F46C1F6C92A; + remoteInfo = UMTaskManagerInterface; }; 87D02EAE1DD3CC8AB9B8D646D27548A4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -718,26 +1059,19 @@ remoteGlobalIDString = 1ABBF6F89787BBEDF49B4636ADB45587; remoteInfo = FirebaseAnalytics; }; - 89E34E29502C44BA69D64D5478824EEC /* PBXContainerItemProxy */ = { + 8B1A21420B20243B742AF4A555F13D54 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 57954C49E918563AF7054B31EACBAB93; - remoteInfo = "react-native-splash-screen"; + remoteGlobalIDString = 240504C276270018DE05B3D0F038B1E5; + remoteInfo = EXWebBrowser; }; - 8A5745F3DDC39E72566F1C4C16892EF5 /* PBXContainerItemProxy */ = { + 92B737EB261D896805118EF82D7A5349 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 586739D116442BA7FCD2EC0353EA0FA4; - remoteInfo = FirebaseInstanceID; - }; - 8B892F7DCCC4ED0A7BAB52A0E0C20117 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 66641B93FAF80FF325B2D7B4AD85056F; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = 2543734D0A332B2588202904B99CC151; + remoteInfo = nanopb; }; 94ACBB797039D918B9290B94A50A3F36 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -753,12 +1087,12 @@ remoteGlobalIDString = 7969F0F17682790DCAF63BC9AF2176ED; remoteInfo = GoogleUtilities; }; - 96719887109D9387FC492BBCBC15A0A3 /* PBXContainerItemProxy */ = { + 97FED6762DBF83CB56550E5719088991 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BE8DE6BC4B9347A3FE72C52C9FAE8B4C; - remoteInfo = RNDeviceInfo; + remoteGlobalIDString = 1ABBF6F89787BBEDF49B4636ADB45587; + remoteInfo = FirebaseAnalytics; }; 9D25F24407F3DB7F8037248B4DA8103D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -767,13 +1101,6 @@ remoteGlobalIDString = 586739D116442BA7FCD2EC0353EA0FA4; remoteInfo = FirebaseInstanceID; }; - A069F1A2E15D73EC2C536EFDECCC9B98 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DC10A77A26D85A9F4BB77FDE1FF128C0; - remoteInfo = "react-native-webview"; - }; A07A8F019F42721442DA50F68DCECAFB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -788,12 +1115,26 @@ remoteGlobalIDString = E3A3FB14CD4ACD21565913CF4A4B097C; remoteInfo = GTMSessionFetcher; }; - A5EA18562BAE13C9796465157D20887C /* PBXContainerItemProxy */ = { + A57FA5C40A1BE5F5C481358F3D88E137 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0AFC585C520484341005ED314DD6F26D; - remoteInfo = RNScreens; + remoteGlobalIDString = D6CDBA4F567B018F442382D2520D6D27; + remoteInfo = UMConstantsInterface; + }; + A7C477F16F437F0AFFBF067E258EB1E4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4412C5F689DD128EFB8F42F11C502D2C; + remoteInfo = UMCore; + }; + A809F87ECBD733D786D401044E34215D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9A9B9448103B296FA53D9693C8DFAE9F; + remoteInfo = UMImageLoaderInterface; }; AADD210D1F940E270E559A5AE73B7D04 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -802,26 +1143,19 @@ remoteGlobalIDString = 29FC2A0EC130F2F2AF7AC9AE94A583B4; remoteInfo = glog; }; - ACE0C8F90E0997DB82D276BD7D191BC9 /* PBXContainerItemProxy */ = { + AB8863F7B37D57C169E621FF284054D1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7C36E7C600F8DE2BE1819059C80F2182; - remoteInfo = GoogleIDFASupport; + remoteGlobalIDString = 4412C5F689DD128EFB8F42F11C502D2C; + remoteInfo = UMCore; }; - AEBAA8C70F6579DE56DF4968146A8314 /* PBXContainerItemProxy */ = { + AC2A20FA8016FB27839FE562E5DEB6DE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000000005960; - remoteInfo = React; - }; - B02308BAF12B25193B0ADC5112A87C37 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 39E0403E3ACE39BC0D878D82FAB8F012; - remoteInfo = FirebaseABTesting; + remoteGlobalIDString = 7EE372278F1E44FB04162ED4F315624E; + remoteInfo = UMCameraInterface; }; B05FDE7687B62296694D0BBA9546545E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -830,40 +1164,26 @@ remoteGlobalIDString = 7969F0F17682790DCAF63BC9AF2176ED; remoteInfo = GoogleUtilities; }; - B7DB4A65C7496ACDC31C4E67585AAC44 /* PBXContainerItemProxy */ = { + B91A0AB526E7AE67D83D85EA69EB781F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2543734D0A332B2588202904B99CC151; - remoteInfo = nanopb; + remoteGlobalIDString = 0ACA345EAF80C8F41867C0E5928F88BA; + remoteInfo = RNImageCropPicker; }; - B829418D67A3474DB52F128E4FE63532 /* PBXContainerItemProxy */ = { + BE0D9CA338918985910CFAB12661D90F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 97C8CD7E4179727E4F374CABD338D2BB; - remoteInfo = Firebase; + remoteGlobalIDString = 4412C5F689DD128EFB8F42F11C502D2C; + remoteInfo = UMCore; }; - BA4A6168F2E40D2D1FD953CB7700F85D /* PBXContainerItemProxy */ = { + C377E46CDAC590D6628CF266A615DB33 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000000005960; - remoteInfo = React; - }; - BC05A9D967DC5251290FC72F65B62686 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 000000005960; - remoteInfo = React; - }; - BD5F52B48BC4DA0D6371CA5C6F278875 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5AAD465FECAE9083F45E3DB9252A8302; - remoteInfo = FirebaseRemoteConfig; + remoteGlobalIDString = 26A5B3B7F44E0C2A69ADF5B06E41C24F; + remoteInfo = RSKImageCropper; }; C6E67451067E44E2BAF9B3D37F53D047 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -879,12 +1199,19 @@ remoteGlobalIDString = 1ABBF6F89787BBEDF49B4636ADB45587; remoteInfo = FirebaseAnalytics; }; - CA29ED922E3724930A52B5F2CC9FE789 /* PBXContainerItemProxy */ = { + C8E64F1F2FBEBFA4B059D35B1EEF2B4C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D35E9EC86D36A4C8BC1704199FDB3552; - remoteInfo = Fabric; + remoteGlobalIDString = 5ED05858D3E3C1599A062FB1C45FE359; + remoteInfo = EXPermissions; + }; + C97AA34E88570CC3AEF6B7B50B479805 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DF470A1028ED32C9E70DBDAA805F8802; + remoteInfo = Folly; }; CD235DDD6ED40AF6628D34E57EB6B2EE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -914,19 +1241,19 @@ remoteGlobalIDString = 368FB7FBA34E3323BB42D13325551C95; remoteInfo = FirebaseCore; }; - D465047540D12FD9D95291AE82A76DB9 /* PBXContainerItemProxy */ = { + D298FC5A0D6B89B04A468A63B05FDB9B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = D35E9EC86D36A4C8BC1704199FDB3552; remoteInfo = Fabric; }; - D516972C7248EB94C3523FECC8F43B02 /* PBXContainerItemProxy */ = { + D465047540D12FD9D95291AE82A76DB9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1414ADEE4A421F3C5F9A229345CE3F61; - remoteInfo = DoubleConversion; + remoteGlobalIDString = D35E9EC86D36A4C8BC1704199FDB3552; + remoteInfo = Fabric; }; D5582AE19A81D8922E73DAD94F1B1207 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -935,33 +1262,12 @@ remoteGlobalIDString = AB021401ADE9E1431240BBA948E7965E; remoteInfo = GoogleAppMeasurement; }; - D73FADA9406D1FBAAF34A98AF815B658 /* PBXContainerItemProxy */ = { + DE8E24A82187DC723D28DE1E90FB6AC0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 928F6D091147C82DAB685010E23BA90B; - remoteInfo = QBImagePickerController; - }; - D9498F25B2EDFDBE0DC80A5689FB82A4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 19B86FE3A045FD3536FCD8DC39B415D3; - remoteInfo = RNImageCropPicker; - }; - DAD84C1C1E8EC3061F1FCBE800942C00 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = AB021401ADE9E1431240BBA948E7965E; - remoteInfo = GoogleAppMeasurement; - }; - DAE3D9937C5AEA59775DD33F7C612EA5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 000000005960; - remoteInfo = React; + remoteGlobalIDString = BA4B096D64C945C50DBB633908388787; + remoteInfo = UMReactNativeAdapter; }; E60C05616D024BAA46966F3E6B4EDC1B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -970,12 +1276,26 @@ remoteGlobalIDString = 2543734D0A332B2588202904B99CC151; remoteInfo = nanopb; }; - E8B9963F832AFE8E2A5593B2555C7D89 /* PBXContainerItemProxy */ = { + E679CABC1D66C8FF16C7B39FAF19E953 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 368FB7FBA34E3323BB42D13325551C95; - remoteInfo = FirebaseCore; + remoteGlobalIDString = 97C8CD7E4179727E4F374CABD338D2BB; + remoteInfo = Firebase; + }; + E69FEDC3D3E38942B94CDAC7AD59F7C4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 39E0403E3ACE39BC0D878D82FAB8F012; + remoteInfo = FirebaseABTesting; + }; + E9E0A2F87A1D25582F36E9E2611ECDBE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D6CDBA4F567B018F442382D2520D6D27; + remoteInfo = UMConstantsInterface; }; EB266CA52E321F1A5BD9E62115470A38 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -984,6 +1304,13 @@ remoteGlobalIDString = 66641B93FAF80FF325B2D7B4AD85056F; remoteInfo = "boost-for-react-native"; }; + EE1597441C2BE2C9C67FC2536DDBB551 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8A247007F4F0BF7C2DD4DD8A7FC765B1; + remoteInfo = QBImagePickerController; + }; EEBBFE74636D6BC7E8D380B4DBDBC621 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -991,914 +1318,1134 @@ remoteGlobalIDString = 32F8EA730FE2005197F54338D2C236AC; remoteInfo = GoogleToolboxForMac; }; - F2848F48DCD7D499A167970D0027F377 /* PBXContainerItemProxy */ = { + EECE9787B6622FB7DF4B626AF14AD3D8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000000005960; + remoteGlobalIDString = 000000006B30; + remoteInfo = React; + }; + F320BF3400D1E628728774CB8DED96EB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 000000006B30; + remoteInfo = React; + }; + F39EA041A45BF69A4E6E78614B7A5D48 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 031F6220C2D49E4AD5F61FAA0ECADF64; + remoteInfo = UMFileSystemInterface; + }; + F43545755CE3D8AAF1A22468AC1DA47D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1414ADEE4A421F3C5F9A229345CE3F61; + remoteInfo = DoubleConversion; + }; + F694606F8A3B5D15625E633C00EB1AC8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4412C5F689DD128EFB8F42F11C502D2C; + remoteInfo = UMCore; + }; + F761E12C6AD8B50A8AEED8F08F2A9909 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 586739D116442BA7FCD2EC0353EA0FA4; + remoteInfo = FirebaseInstanceID; + }; + F9385BB2DC118909A75F3F5C363FB2FA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 000000006B30; + remoteInfo = React; + }; + FC0E0CAF02AB8E4333B704330144D427 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 000000006B30; remoteInfo = React; }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ 001906DF79B2E749BEE13C58E5D57CDA /* GPBArray_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBArray_PackagePrivate.h; path = objectivec/GPBArray_PackagePrivate.h; sourceTree = ""; }; - 001AAF3E9126740B41E02447608D4D2B /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RCTBlobManager.mm; path = Libraries/Blob/RCTBlobManager.mm; sourceTree = ""; }; - 0085EE4901AEC3550FF5650A968F20EE /* RCTLocalAssetImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTLocalAssetImageLoader.m; path = Libraries/Image/RCTLocalAssetImageLoader.m; sourceTree = ""; }; - 00E93827EB9F155FF1CB3F7ADF3053CF /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageUtils.m; path = Libraries/Image/RCTImageUtils.m; sourceTree = ""; }; + 001B228B04383E155D4C250D34A38CA8 /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; + 0030B5D0CC9FDA4086C0D102A9D1010B /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; + 007D07D4C6782A17CE8F9A4340805A8B /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; + 01007BE2B4A194506D77D92090E68178 /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; + 0107A3ABF10D02533CF3C32C99548012 /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; 011AC49904E60DBE7374EF4C6C46CCC5 /* SpookyHashV2.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SpookyHashV2.cpp; path = folly/hash/SpookyHashV2.cpp; sourceTree = ""; }; - 013679A01EB3C4820916BCACA5EB82A7 /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; 01667AE46D9B0857D288D0322E9859D5 /* GULAppDelegateSwizzler_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler_Private.h; path = GoogleUtilities/AppDelegateSwizzler/Internal/GULAppDelegateSwizzler_Private.h; sourceTree = ""; }; - 016C6F191BE51C14AD6DF11D7E2F02FF /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTTextAttributes.m; path = Libraries/Text/RCTTextAttributes.m; sourceTree = ""; }; - 019A59E7B810C81E40917BCCC4DAD9A2 /* RCTWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWebView.m; sourceTree = ""; }; - 01DC8D519261EBAA259B879B90D6A7C5 /* libRNScreens.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNScreens.a; path = libRNScreens.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 01E527DC82BB0D8C7168C89D23E7D5DD /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; - 02371EA5B3DB9048CE62BB28E01C696D /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; - 02978CB1C748E8FA706CC0E6AEA5317D /* RCTNetworkTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNetworkTask.m; path = Libraries/Network/RCTNetworkTask.m; sourceTree = ""; }; - 02EBD575F4AE48B3241638B288F94687 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; + 0174BD30EE6EDA477799464266E56646 /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; + 018950733BD3B10A6369A715C9F629F9 /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; + 01D865DB9DBB288C89FE5EDEDBF33180 /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; + 01EF4CD4ED20556FD7894D5A97740BEF /* UMBarCodeScannerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.xcconfig; sourceTree = ""; }; 02EE269B177F9131844B8B87D0E70230 /* GPBBootstrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBBootstrap.h; path = objectivec/GPBBootstrap.h; sourceTree = ""; }; 031182114156D9FD17B5BA12E328E7E0 /* GULNetworkConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkConstants.m; path = GoogleUtilities/Network/GULNetworkConstants.m; sourceTree = ""; }; - 03469186FEB5D84423E500960BC5C7A5 /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; + 031F45FE05A074E123EBFF0851BB7E1C /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 031F8E2B25ECEA9A465FDCCC71E3CADD /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; + 0344906936C32DC0CF0EAF792358185B /* libProtobuf.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libProtobuf.a; path = libProtobuf.a; sourceTree = BUILT_PRODUCTS_DIR; }; 034AB978EEAE0AA5F06DB6D822E28E93 /* GPBCodedInputStream.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBCodedInputStream.m; path = objectivec/GPBCodedInputStream.m; sourceTree = ""; }; - 03A09AA251F031FF69A29DE97D080BF2 /* libFirebaseCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCore.a; path = libFirebaseCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 03D77687AAA2ABE0D98C3F9A591CFE9C /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; + 036ACCF506C814EB78AEAE110D1235E7 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; + 03E9CF69C60A2BFCAF5846B48F7AD5AF /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; + 0422E3CA4E119AB496AB0CE3AF4AB60D /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; + 0426E53259A5B51BEF24C7D754450EF8 /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; 04387AC8C6AE41C3100B505F8335F30D /* QBVideoIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIndicatorView.m; path = QBImagePicker/QBVideoIndicatorView.m; sourceTree = ""; }; - 044793492BE04BE01BEBB918CD58520D /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; - 047C95AF51E8D46F16DDA9A4058CDAFB /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; 047F7C14D5BA3D10FDD5C05A933E8CD5 /* RSKImageCropViewController+Protected.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RSKImageCropViewController+Protected.h"; path = "RSKImageCropper/RSKImageCropViewController+Protected.h"; sourceTree = ""; }; 0497F30F4BA1B5FDDFED9924942263B0 /* GULObjectSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULObjectSwizzler.h; path = GoogleUtilities/ISASwizzler/Private/GULObjectSwizzler.h; sourceTree = ""; }; 050D2FFCB89E3CDCF40A66AC84E9D103 /* GTMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = GTMDefines.h; sourceTree = ""; }; 05449E32192EDFA22803A46B68E16576 /* GULNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetwork.m; path = GoogleUtilities/Network/GULNetwork.m; sourceTree = ""; }; + 056C7FC5EE011B3CCC5AE76F67DF6962 /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; 05F735D71208B628185FD7C9C51A77F8 /* FIRAppAssociationRegistration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAppAssociationRegistration.m; path = Firebase/Core/FIRAppAssociationRegistration.m; sourceTree = ""; }; - 06CF7190944DC4FA395F7C1579BA8F1C /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; - 074143CB77498D36AB90F5A7D18CB715 /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; + 07621CD38AF5056D16B706FF2917D8F8 /* EXContactsRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXContactsRequester.m; path = EXPermissions/EXContactsRequester.m; sourceTree = ""; }; 0782F9E9096355814719FF9B88161DCB /* GPBExtensionInternals.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBExtensionInternals.h; path = objectivec/GPBExtensionInternals.h; sourceTree = ""; }; 078FF8EC0ECED7B97D6279D0D49840E0 /* GPBCodedInputStream_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBCodedInputStream_PackagePrivate.h; path = objectivec/GPBCodedInputStream_PackagePrivate.h; sourceTree = ""; }; - 0822B400E877CBFA3D2C90D485328144 /* RCTImageEditingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageEditingManager.m; path = Libraries/Image/RCTImageEditingManager.m; sourceTree = ""; }; + 07B3426C5AF3D1948C481251F313AE3A /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; + 081BADE01BF0043403D44F357D3D5034 /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; + 0847728381CD9CD2615B06739082FC6F /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; 08917358529F92D17A1A10E42995569A /* QBAlbumCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumCell.h; path = QBImagePicker/QBAlbumCell.h; sourceTree = ""; }; - 0901BD78FBA99D849CC9A1849976A30F /* React-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-dummy.m"; sourceTree = ""; }; - 09B2554CF26F8F43E8C6001023959492 /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; - 0A400D5102BE84445B019430EA3BE8B4 /* RNCWKWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKWebViewManager.m; path = ios/RNCWKWebViewManager.m; sourceTree = ""; }; - 0A85E6F59A948F204CF367FDFE2CA620 /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFPSGraph.h; sourceTree = ""; }; - 0ACC2E217FC7B9720D6AEB5AD38C3552 /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; + 08D861E40D5AC82A4B5C559FCBD3EBE9 /* RNCUIWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCUIWebView.h; path = ios/RNCUIWebView.h; sourceTree = ""; }; + 08EA203E178FE22B6F45D9CB9ABFDADC /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; + 099FB3E4E24A8F22C58E2F084CD4784C /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; + 09D994CE87C6EA29C806103ADE30B9B1 /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; + 09E3EEAB5B104CBF49BAA7FDBBE2335E /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; + 0A5273EB5883838AD1C88A8AD0698979 /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; + 0AD7E622812B0B3D1A3D979F059CDB6B /* libnanopb.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libnanopb.a; path = libnanopb.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 0AF1B8013A3C3AC8DBD7D2B3D52D094D /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; 0AF96CFD962855C85F574FBD2C954DE2 /* GPBRuntimeTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBRuntimeTypes.h; path = objectivec/GPBRuntimeTypes.h; sourceTree = ""; }; - 0B057BB663D2EFE409EBAA3247E8CB0F /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; - 0B0F182CDFD08AF7DAF54B1DF7214B6E /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; + 0B22CDFE8A6BE351F42B2380C2711731 /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; + 0B38BEC76AC4DC9434B28B64A6007753 /* RCTAlertManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAlertManager.m; sourceTree = ""; }; + 0B7455BDD0D3F7C4DC7CD1786044042C /* UMCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.xcconfig; sourceTree = ""; }; 0BAC49632693E881A740E4F2693EE2EB /* FIRInstanceIDURLQueryItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDURLQueryItem.h; path = Firebase/InstanceID/FIRInstanceIDURLQueryItem.h; sourceTree = ""; }; - 0BF5ACE89D0C329067DE4A304AC1AA3F /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; - 0C0C4F372C3EF1599232EAD98E083EFC /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAsyncLocalStorage.h; sourceTree = ""; }; - 0CA8236F3347BF0F3F337D47FD041B86 /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; + 0C13C1759134EC6D8C8CE62B45116B0B /* libRSKImageCropper.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRSKImageCropper.a; path = libRSKImageCropper.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 0C2496AD863DBD021498DE44A6B7EA9D /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; 0CCCEBA88468B01A169C6465CAF3FD12 /* FIRInstanceIDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDStore.h; path = Firebase/InstanceID/FIRInstanceIDStore.h; sourceTree = ""; }; - 0CD20F54C0979735781DE0153BB0072C /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; - 0CEA6B3088D757477B874AF223239133 /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; 0CECDA20FE3432D2A0FD84D45349110D /* Protobuf-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Protobuf-dummy.m"; sourceTree = ""; }; - 0D06F244A607B7A1EEAD91787CDC01C9 /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; - 0D17550BF994FBF06C73511851CEB5EE /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; - 0D1E375073365E733A757520046ED561 /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; 0D1E7E185F853FC0062B62CDD76AF164 /* GPBWireFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBWireFormat.h; path = objectivec/GPBWireFormat.h; sourceTree = ""; }; - 0D5DF052A23CB44F008C82005B2B7C3D /* libGoogleToolboxForMac.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleToolboxForMac.a; path = libGoogleToolboxForMac.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 0D5FCD37382BE0819264CFBA4F131B85 /* RCTImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageViewManager.m; path = Libraries/Image/RCTImageViewManager.m; sourceTree = ""; }; - 0D8D5C82223C397877112DFD640E2B98 /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; + 0D2F5CFC6288907B38A9AAA97FAB06C6 /* RCTImageStoreManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageStoreManager.m; path = Libraries/Image/RCTImageStoreManager.m; sourceTree = ""; }; + 0D40AF4A2F3E7E311287D43124934F54 /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; + 0D8EFA85D6E5A696E746C6F1C33A2B75 /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; 0DC0A60A9467868CEA7A2146861B49B6 /* FIRVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVersion.m; path = Firebase/Core/FIRVersion.m; sourceTree = ""; }; + 0DCC4DE9E15A2BD536CB0732B569E143 /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; + 0E00ACEB403A6B40CD17DB2EBED4A1DE /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; + 0E44F3DAA947595DB982DEAE1E00595B /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; + 0E4F528FA887C404C39980A9C144D3E4 /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; + 0E63A9D263C22E8BC589400C9D271ECC /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; + 0E7A62CAE2B8895E6620E47D22BA5DAA /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; + 0E86F846FB114EA8D99C44F9573E1DE3 /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; + 0E89CF155C6E36CDE6946192F3608160 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; 0E94C6CB02605A72F32BBE9875D6AC50 /* RSKInternalUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKInternalUtility.h; path = RSKImageCropper/RSKInternalUtility.h; sourceTree = ""; }; + 0EB07B6D8E9C0E307E33CA54983B469F /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; + 0EDF3E12DCF4316A3B7AA063B5A10B3E /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; + 0F397216076B3A42C4D3B6ABB27F2716 /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; + 0F5588A52249C63C62B8C06083901CF0 /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; 0F55E0C521766F08DF73E90DF03908EE /* nanopb-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-prefix.pch"; sourceTree = ""; }; 0F679BDFCED3A61C87F3B0D401DDD7B7 /* stl_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_logging.h; path = src/glog/stl_logging.h; sourceTree = ""; }; - 0FADD3FFD275D8F1B7CDDDC2E9108362 /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; - 10AAC81D80F58DB861A6A5FF0B125F14 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 0F745DA3C984A2AACDE016C230536203 /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; + 0FD359E6EAA27994114D9A4C0BBF3C8D /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; + 105D57161F7A658346160DDC0C80C16E /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; 10C306448DF95BDD2C33FF0845BE3EE3 /* pb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb.h; sourceTree = ""; }; + 10FD7868B64776D0F4D6809EC6FBA7D5 /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; 11CEFEA651D768ECDD7B19E6CC8AA9A1 /* FIRInstanceIDTokenDeleteOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenDeleteOperation.h; path = Firebase/InstanceID/FIRInstanceIDTokenDeleteOperation.h; sourceTree = ""; }; 122B9AF72119AEE8595D2AE55CD8F9B4 /* Firebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Firebase.xcconfig; sourceTree = ""; }; - 1248306ACBD97A80F24C132646C7D714 /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; - 12A1B8CF6E1502D989E6E6C52147F339 /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; + 1272924F1716C2CEAB7E63FE004B1EDB /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTAnimationUtils.m; path = Libraries/NativeAnimation/RCTAnimationUtils.m; sourceTree = ""; }; + 12864B0FA18BA936AEA5A8E6DB9AD12B /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; 12E720231196ABC7A2F315B1C9F78BBC /* Any.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Any.pbobjc.m; path = objectivec/google/protobuf/Any.pbobjc.m; sourceTree = ""; }; 1306A874922522A25C5081B057468E59 /* QBSlomoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBSlomoIconView.m; path = QBImagePicker/QBSlomoIconView.m; sourceTree = ""; }; + 13412E2D6339383A001F3D53F5A728DF /* libFirebaseCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCore.a; path = libFirebaseCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; 13CE02627B836EDF5071714929924A66 /* pb_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_decode.c; sourceTree = ""; }; - 13D2DA48A4216FE4F51113F809F12393 /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; 13D445095FC98E1953690D565C881FDD /* RSKImageScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageScrollView.h; path = RSKImageCropper/RSKImageScrollView.h; sourceTree = ""; }; 13ED540E431E29B3E235F3EFA7249E95 /* FIRBundleUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRBundleUtil.m; path = Firebase/Core/FIRBundleUtil.m; sourceTree = ""; }; - 142940214879FB9B072E376B7620751E /* react-native-webview.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.xcconfig"; sourceTree = ""; }; + 1417C8BD310BAD78B8CDA1ECBE803066 /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; + 14C0A2ED45574AB0DBA15D61C643A9CC /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; 14D12918B4EE1A6B8AC37D2DDC5916FE /* pb_common.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_common.c; sourceTree = ""; }; - 14D2F14F5C50E989487A162297616FDE /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAccessibilityManager.h; sourceTree = ""; }; - 1503277A849EFD3C4519B0DE0E9974AC /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; + 14F231C081C9CE3C69A8DAF83535644C /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; + 1503B7A4EB456C5193A33AB980695084 /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; + 154F0DB721A72A8D300972A561C284DC /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; 1590D6871326CFE7CA44DFFEA384FD03 /* glog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "glog-dummy.m"; sourceTree = ""; }; + 15A8C8844C114B6B90E595F0FB665913 /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; 16012A4DCE6C5D44809A303788CD7C71 /* FIRInstanceIDTokenStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenStore.h; path = Firebase/InstanceID/FIRInstanceIDTokenStore.h; sourceTree = ""; }; + 16206E2127D10BB1D6D046CE0C797F8A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 16425F137AEAF28E31DBF3D7192A5571 /* diy-fp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "diy-fp.cc"; path = "double-conversion/diy-fp.cc"; sourceTree = ""; }; - 167F23E91459E9C1B4C7525DC2B73D56 /* RNImageCropPicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.xcconfig; sourceTree = ""; }; + 165A8C5C3D3C76F2218823C9C6CC53F6 /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; 1688EE83E950851DBD776306319028FB /* utilities.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utilities.cc; path = src/utilities.cc; sourceTree = ""; }; - 16AE7EA55D09EE47FA11010269E7180D /* RCTWKWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWKWebViewManager.m; sourceTree = ""; }; - 16BCFBC3734A2AF318FA9557B7C6B1FB /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; + 16B677B7081A3DC51B1488436F9B0241 /* EXAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppLoaderProvider.m; path = EXAppLoaderProvider/EXAppLoaderProvider.m; sourceTree = ""; }; 16D5B1912353CE8623BFB2FCF1190963 /* FIRInstanceIDCheckinService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinService.h; path = Firebase/InstanceID/FIRInstanceIDCheckinService.h; sourceTree = ""; }; 16DC3363E3A5DD93919EA65165E1DD2D /* FIRInstanceIDKeyPairUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDKeyPairUtilities.m; path = Firebase/InstanceID/FIRInstanceIDKeyPairUtilities.m; sourceTree = ""; }; - 1730DF892519D8A1364D4E50B237253A /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; - 174C3CDEF567F363603C3E3CB3890641 /* fishhook.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fishhook.h; path = Libraries/fishhook/fishhook.h; sourceTree = ""; }; - 17D6D1509530A33ABC1F17CCFCDFCDFF /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; + 1723D225364D069373B64B10430B8764 /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; + 1733223F77AA4E8FEB55CA8F95165122 /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; + 1739B33D1D2821BDDA401667850768A5 /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 17822812448FD33A9D2EC98BC3B1CD36 /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyboardObserver.h; sourceTree = ""; }; 17D71991D0280E8C03F310F0CAABB18F /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = Firebase/Core/Private/FIROptionsInternal.h; sourceTree = ""; }; - 17F75CB326520808F2954C187E122308 /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; 181D20640F43D8CB7EC6EAB505B86318 /* QBVideoIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIndicatorView.h; path = QBImagePicker/QBVideoIndicatorView.h; sourceTree = ""; }; 185920CE3F01EE5D5EFDCD7E82E2116C /* GPBUnknownFieldSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBUnknownFieldSet.h; path = objectivec/GPBUnknownFieldSet.h; sourceTree = ""; }; + 189D98D929058EC739EFEE1F3C94C8A5 /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; + 18C55895F0006CE859732C63559283A0 /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = ""; }; + 1938E4852D76A679FE815404F05E2225 /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; 1949B0542A654E7317ADAEEADCD4683C /* FIRInstanceID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceID.m; path = Firebase/InstanceID/FIRInstanceID.m; sourceTree = ""; }; - 19BDD18734E3ED77D3CAA89E3F1C4EF8 /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; + 1991FC9EB059A762813E3CE3DA38C063 /* libEXFileSystem.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXFileSystem.a; path = libEXFileSystem.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 19A4D5C0A12418D8D5337895B092F2DB /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; + 19C00766C1F75C14478C49EF52E60DFC /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; + 19C75DF1B093279DAEEAA1D92673633C /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; 19D813648EB603BAF163D4B61F2C5691 /* Wrappers.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Wrappers.pbobjc.m; path = objectivec/google/protobuf/Wrappers.pbobjc.m; sourceTree = ""; }; + 19F468ECED73EE466BAFBC96CAD74433 /* UMFileSystemInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.xcconfig; sourceTree = ""; }; 1A15FBFECB164015748AEC5366BF3741 /* FIRInstanceIDCombinedHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCombinedHandler.h; path = Firebase/InstanceID/FIRInstanceIDCombinedHandler.h; sourceTree = ""; }; - 1A760F53C16EFEE83DF51B39C1A8859E /* libRSKImageCropper.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRSKImageCropper.a; path = libRSKImageCropper.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 1AACF2E720214F71B2126A962E498349 /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; - 1AC5912C31AD1AE7AA799A833769F283 /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; + 1AB164B93049877B4D556C25592F3C98 /* EXSystemBrightnessRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXSystemBrightnessRequester.h; path = EXPermissions/EXSystemBrightnessRequester.h; sourceTree = ""; }; 1B17644C190C6921FF8F6E4980B8BE97 /* Struct.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Struct.pbobjc.h; path = objectivec/google/protobuf/Struct.pbobjc.h; sourceTree = ""; }; - 1B810F0F52AB5EFE551D0E87B9D37332 /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; + 1B3F11C80E1039393852D112C2E721A8 /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; + 1B892614B4A2CD57C1FB35B1CFCE71CD /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; + 1B96E4EAC0210AA012C47E135DE1D551 /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = ""; }; + 1BB2ECB4FABB3B421E594759B37943AA /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; + 1BEF09F9D90B35B1A3DFE48144EE516E /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; 1BFD6F1262D7CFD8E1E86E5A80CB5B15 /* CGGeometry+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CGGeometry+RSKImageCropper.m"; path = "RSKImageCropper/CGGeometry+RSKImageCropper.m"; sourceTree = ""; }; - 1C869F5B0706877E6E60CC39ED896598 /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; + 1C17A5EEE73F2A28DBEEB6E1464683A1 /* YGMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGMarker.cpp; path = yoga/YGMarker.cpp; sourceTree = ""; }; + 1C6309DE5FE71B25B47E91BCDDD13305 /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; 1CB3EF08CDD1CF865F3C42A5BB449708 /* Wrappers.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Wrappers.pbobjc.h; path = objectivec/google/protobuf/Wrappers.pbobjc.h; sourceTree = ""; }; - 1CF79665F242EEB18FF79334F73B3864 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 1D0700C43F0306DFDA0749EAD83C8E98 /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; + 1CB5AE1B09A4E0011B9DB85FE7D0BFFE /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; + 1CF002A6FAAEE3BA0D4096358A076777 /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; + 1D0C95622AE31B557E799165112286FD /* RCTFileReaderModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTFileReaderModule.m; path = Libraries/Blob/RCTFileReaderModule.m; sourceTree = ""; }; + 1D0E90CEDD42D2583A93647210E4765C /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; 1D286B910787554EB729CBCE602D94C7 /* ResourceBundle-QBImagePicker-QBImagePickerController-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-QBImagePicker-QBImagePickerController-Info.plist"; sourceTree = ""; }; 1D2F4AA1E8F90B87245842734E56023D /* GULSwizzledObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSwizzledObject.h; path = GoogleUtilities/ISASwizzler/Private/GULSwizzledObject.h; sourceTree = ""; }; - 1D5ED9C54E2719CFE43AC5D2E440A869 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; + 1D3B3126CE0C8F773C1AC4FB5169ED59 /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; 1D98378181E5D1EB7E3D3B9BC346926D /* RSKImageCropViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageCropViewController.h; path = RSKImageCropper/RSKImageCropViewController.h; sourceTree = ""; }; 1DB0E05E584EBB1BD10BFA278E997CCD /* GoogleUtilities-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleUtilities-dummy.m"; sourceTree = ""; }; - 1DFCE95A81ECE0141160B50F0E4D6491 /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; - 1E2B9C76477F5F4350ADB1E31986E4AA /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; - 1E42FC5C7A5540BD7B96542AAC3BC145 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nManager.h; sourceTree = ""; }; - 1EA453E747C278F09B3C526AED1635D9 /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; - 1EAD845EB27BD240C42ED60C7CFCF7A0 /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; - 1EB2C1628FA66E5210A2EE4F13CA5F14 /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; - 1EB873A45A231FDB78C5F6E390EEF814 /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; 1EE49B8A769B1E7AFEABA9B6B0B88B03 /* QBAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetCell.h; path = QBImagePicker/QBAssetCell.h; sourceTree = ""; }; - 1EF928B260E2D9400137F326DF55CDF2 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 1F431A209C549CA0BE5E13A69CEA3512 /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; - 1F9CDA9B231672186181FD33331A9A0B /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; + 1F4D6F414F814495259FA23690BA0A7C /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStatusBarManager.h; sourceTree = ""; }; + 1F7E0D826B79739EA3503DA4FF3A345A /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; 1F9DA817DD136F20858650D09F53CFAE /* GULObjectSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULObjectSwizzler.m; path = GoogleUtilities/ISASwizzler/GULObjectSwizzler.m; sourceTree = ""; }; 1FE6B4110E349310CB49B144EEEBB44C /* FirebaseRemoteConfig.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseRemoteConfig.framework; path = Frameworks/FirebaseRemoteConfig.framework; sourceTree = ""; }; 20630B5E48C7CB69BF91D7D7F265396B /* vlog_is_on.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = vlog_is_on.cc; path = src/vlog_is_on.cc; sourceTree = ""; }; - 206DCB46844A5AC452E33D130694BC0B /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; 20957E6E06A9F00102F60719D037C558 /* GTMSessionFetcherService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcherService.h; path = Source/GTMSessionFetcherService.h; sourceTree = ""; }; 209FB1AF949B819EDBD99CF85EA82E66 /* GPBProtocolBuffers_RuntimeSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBProtocolBuffers_RuntimeSupport.h; path = objectivec/GPBProtocolBuffers_RuntimeSupport.h; sourceTree = ""; }; - 20E9E9F16FB59BE7910B25BC29B02B33 /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RCTNetworking.mm; path = Libraries/Network/RCTNetworking.mm; sourceTree = ""; }; - 211E0ECE8F57C74C6EDD857AAF9DB816 /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = instrumentation.h; path = yoga/instrumentation.h; sourceTree = ""; }; - 21223916590270E5BC6B2E021664B69B /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStatusBarManager.h; sourceTree = ""; }; - 215921D9CE6F36E7F6E845A38B13740B /* libQBImagePickerController.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libQBImagePickerController.a; path = libQBImagePickerController.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 21D603271270CA58860B3D9150DD5282 /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; - 21E490EE02F5EB3928C5955CAF2320A2 /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; + 2200EF08B10471217EFF0B5A5395E831 /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; 22293BA067850112F37BE2951B912138 /* signalhandler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = signalhandler.cc; path = src/signalhandler.cc; sourceTree = ""; }; - 2266DD41FFD3F2DF53E5DAB6F767E366 /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; - 227C68B4E81A26EF7059D5FCBA69EE48 /* RCTWebSocketExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketExecutor.m; path = Libraries/WebSocket/RCTWebSocketExecutor.m; sourceTree = ""; }; - 23EF46C4ADCA8028AA4E10BBB66CBCB9 /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; - 248F4F5FFD5BE6494CF378FBBFBAC07F /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; + 2252B557FDFE6EB0317C8748FA0EF84A /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; + 22B8E67E2377F36A9B5F852398E56001 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; + 231B966E6573E3BA0004DA6618D9B2C2 /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = ""; }; + 23652696D4ED5CB7239C129C83DBB0D2 /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; + 2393F631CD34B06379E24C1BBC794EEC /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; + 23B56F3012E8E2C96BA634327B6D24E9 /* RNCWKWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKWebView.m; path = ios/RNCWKWebView.m; sourceTree = ""; }; + 240BF7E59EB0D6E281887DF21CCCCF4D /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = ""; }; + 2439FEE333FA77815E9DE865EF0B074F /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; + 24A26FEDDC69D8367D025741DF85BE3C /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; + 24D1161A66E2DAFED61651E51CBFEBF6 /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSourceCode.h; sourceTree = ""; }; + 24DEE93B29381E1054AA3580912C3160 /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; + 2535CC9EA20C42B22545D1B8DBF756D1 /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; 256F73640791D9E203ABC811B5F47544 /* QBSlomoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBSlomoIconView.h; path = QBImagePicker/QBSlomoIconView.h; sourceTree = ""; }; - 25CEF3076A2151192072612D1A44B649 /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; - 26EC364BC53A89C8FABF49635BA5AE3C /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; - 27069FB870DC23ABECA4A81B71F346B9 /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTResizeMode.m; path = Libraries/Image/RCTResizeMode.m; sourceTree = ""; }; - 270E472A7E6780CBBE8A183CCA75AD74 /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; - 278C595B434D1016AAB40EF5A84CCAD2 /* YGMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMarker.h; path = yoga/YGMarker.h; sourceTree = ""; }; - 27AEE0C33CBDF4FAF22C15057410EE12 /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReact.a; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 25DBF708C31FCE57B05503B3814C87ED /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; + 26205C914492A921C8447A2E3569A9A3 /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; + 263A175F8122E3AEB637230C1BCB3C11 /* RNImageCropPicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.xcconfig; sourceTree = ""; }; + 268FC354AE815473A7349D72E7FC2712 /* EXRemoteNotificationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXRemoteNotificationRequester.m; path = EXPermissions/EXRemoteNotificationRequester.m; sourceTree = ""; }; + 26BCFC8D96C12EB76E48A8EEB399B9E0 /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; + 26C4F97FBC172AB416CDD855FC91AB1A /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; + 26F0CE9105B1167C94475E380773F8B1 /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; + 279DACBA79D4335C530A3A54AC27DA48 /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; + 27A4E0032F202338C1360730C41D29B2 /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; + 27AED10E7415E8EAC54A176445B00B2B /* yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "yoga-dummy.m"; sourceTree = ""; }; + 27B862744D32DFC1C73A8D6E420C33D4 /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; 27BA61510074129562C639CBA224030B /* UIImage+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+RSKImageCropper.h"; path = "RSKImageCropper/UIImage+RSKImageCropper.h"; sourceTree = ""; }; - 2904B07AEDCD591530EE3FE6876076CD /* RCTNativeAnimatedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNativeAnimatedModule.m; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.m; sourceTree = ""; }; - 293F77756560B9164EC847E289ABEC61 /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; - 29605C6559148984B553D0AFB64DD267 /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; - 29B4227FA2B6B93E9449DB91EB95C690 /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; + 27F8230010CC6119B0EE0FF8FEDF9763 /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; + 28050C6074331DC8460D494CFF32E868 /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; + 28122F813D19F76D6EA22C0094BFC587 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; + 2823E12D2F615FDFDEFD1D31EA945BAB /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; + 282F5DF26E2302E1475D4EE081DE188F /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; + 283F06081AF37E12487ECF73C1D45982 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 28543891F7EABB7936CBE5F32B6DBB2D /* RCTWKWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWKWebViewManager.h; sourceTree = ""; }; + 28968048C63F0024535F476874B5A936 /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; 29B77C1B615C9F7970503A7E8C200548 /* GULMutableDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULMutableDictionary.h; path = GoogleUtilities/Network/Private/GULMutableDictionary.h; sourceTree = ""; }; 29CC28732B35F69DDD786CBEBEED2149 /* GPBDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBDictionary.h; path = objectivec/GPBDictionary.h; sourceTree = ""; }; - 2ADFF1C163A290169C39AA178920361A /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; + 29D7B68F63008D5EDFAB6F0D149C5FCF /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; + 2B1B38D97CC2E75944B260CE9765367E /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; 2B254C6B665958AB2EE0FF41B55E87D9 /* GULNetworkURLSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkURLSession.m; path = GoogleUtilities/Network/GULNetworkURLSession.m; sourceTree = ""; }; - 2B297F30D487A4852E7A2ED2EDEE6EE7 /* QBImagePicker.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = QBImagePicker.bundle; path = "QBImagePickerController-QBImagePicker.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; 2B3472F5B5AFC91972C23EE479F38D58 /* CLSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSStackFrame.h; path = iOS/Crashlytics.framework/Headers/CLSStackFrame.h; sourceTree = ""; }; - 2B77F4115089B8B178E7E8E9A2EEC1A1 /* RNCUIWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCUIWebView.m; path = ios/RNCUIWebView.m; sourceTree = ""; }; - 2C37447B513BB858ABEE189BB5B3199F /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; - 2C51918EA1808D554CF1D321442A3CBD /* RCTWebSocketModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketModule.m; path = Libraries/WebSocket/RCTWebSocketModule.m; sourceTree = ""; }; - 2CA9DA6889DF8BB4C0F9228C6AD305F8 /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageShadowView.m; path = Libraries/Image/RCTImageShadowView.m; sourceTree = ""; }; - 2D2BB3B75AE024B7C87D2A7A1229818E /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; - 2D9FE2D7FED21670B054D842B83FB7A4 /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; + 2B78865D53A81FB2F6E1D3C6A4E1FDE8 /* yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = yoga.xcconfig; sourceTree = ""; }; + 2B7CC2AF912BD38D90145E2DB9C62964 /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = ""; }; + 2BC1B641074F5EAF33B6FD1326641579 /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; + 2BD4B0282AC59F89462194F07C0D2B3D /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; + 2CC748AEA2FE112A6BBACE6BD6A14767 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; + 2D61EC101AD13A569FD7E4ED33C71AA0 /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; + 2DD37E892C05DC12C0BA26819F7EFDDC /* libFolly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFolly.a; path = libFolly.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 2E82C7076879CE9326E0133B092945EE /* RCTWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWebViewManager.h; sourceTree = ""; }; + 2E84271A95440E502D18C5E94D631D9E /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = ""; }; + 2EBB2BDA890D07CFBC2886C4FADDA866 /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = Libraries/WebSocket/RCTWebSocketModule.h; sourceTree = ""; }; + 2ECEC55EDDCCD1F1F2B83558A9D7B414 /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; 2ED73F696CD986B8483EF549CD502B8A /* Protobuf.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Protobuf.xcconfig; sourceTree = ""; }; - 2EFCC32F7A879DBCD63AE50F30541956 /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; 2F33FE55A531ACD9F959B3E74F720F24 /* FirebasePerformance.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebasePerformance.xcconfig; sourceTree = ""; }; - 2F373F00B000E4CE4EBB9408247D435D /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; - 2FDF57448B0B3B96FCCB3ADFD8B7936B /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; - 303B9B16FFAD36F5401E0D101F4821BC /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; - 30FB3FB168879CE5737B4D9631DB04D4 /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; - 310FF05E3469CF0382DA2DD0ACE5C9DD /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; - 3117A3D34B4A56C558AB6E548338C4F2 /* RNCUIWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCUIWebView.h; path = ios/RNCUIWebView.h; sourceTree = ""; }; - 31343CC066A95C3752117FF59B9070AF /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; - 31988722B051F3E6DC99C321028C88D2 /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; - 31DA68120990DF86803E05350F47AC0E /* react-native-splash-screen-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-splash-screen-prefix.pch"; sourceTree = ""; }; - 31EC7CD37083EDFD177C6279E8ABCEF4 /* RCTImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageLoader.m; path = Libraries/Image/RCTImageLoader.m; sourceTree = ""; }; + 2F5082C5C685A7BD8CD31C7F343D777A /* EXRemoteNotificationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXRemoteNotificationRequester.h; path = EXPermissions/EXRemoteNotificationRequester.h; sourceTree = ""; }; + 2FF6D76ADDC0C60AD4B81C47FA11932D /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; + 3025872C57975345DD682A0815A3A8C2 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 303A878C4D780678235AD9EF0049B35E /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; + 31696CA6F4D83FAF1D87F672AE28C91F /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; + 319F339DE8D540C13ECE3977931E76D5 /* libPods-RocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-RocketChatRN.a"; path = "libPods-RocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 31EA22487BCA7F4EA7794D9877156CD1 /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; + 31F57D68FC16B6E7772AEA2799F8BCCA /* RNCWKWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKWebViewManager.h; path = ios/RNCWKWebViewManager.h; sourceTree = ""; }; 3209D52223DC90072F96949AAFFFEF3F /* bignum-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "bignum-dtoa.h"; path = "double-conversion/bignum-dtoa.h"; sourceTree = ""; }; 3219006E7D6EEA1CA01EC2AD1F8F1AC6 /* QBAlbumCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumCell.m; path = QBImagePicker/QBAlbumCell.m; sourceTree = ""; }; - 321F5A18D019E3A656CAC03FD4959573 /* RCTStatusBarManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStatusBarManager.m; sourceTree = ""; }; - 32411FE0DAF7F77CB031463B19E73F31 /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; 32461DFC0E47CD7259441A160789160E /* GPBArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBArray.h; path = objectivec/GPBArray.h; sourceTree = ""; }; + 324DDC941F4AD1D9F2983AAB5755126E /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; + 3264C2BBD2B9839A6DB62F3DC0A2CD44 /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; + 3288AB56C2B6DF64F639479527578664 /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; + 32B24EADC92EA0C4E9D26F18D6C42B3A /* UMTaskManagerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.xcconfig; sourceTree = ""; }; 32DBB9B2B059385BF7CBC7C10F071CC9 /* Any.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Any.pbobjc.h; path = objectivec/google/protobuf/Any.pbobjc.h; sourceTree = ""; }; - 32E9D5A267B3193EC960E9AFFF3A89A8 /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; - 32FA86C1AD558353C675525F85274733 /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; - 331BCB92AAB21000A74A9DCC0612D06D /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; 33218EF1E52206241B7FCE116C3107BE /* strtod.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strtod.cc; path = "double-conversion/strtod.cc"; sourceTree = ""; }; - 33293D01B6A94EF07C1B85856EBE99CF /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; + 334EEA50CA5A93D27A1BFE906C3E8C0C /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; 33E9AF75CF68904359D675D2F6B5CA19 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/detail/Demangle.cpp; sourceTree = ""; }; - 342998086589B49C17CB7C08EE70FE00 /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; + 33EF75EAD0C793E0FE0A110FECE41F23 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; + 3478131BC348347A22DE404F4A90A9D1 /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; 34E0A28899DD0A74E41D4C7D43982744 /* fixed-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fixed-dtoa.cc"; path = "double-conversion/fixed-dtoa.cc"; sourceTree = ""; }; + 34E798DBC90A3B55CAA3BB2CDABE0C2B /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = ""; }; + 34F880E7869DCCEF1750AF44694138F0 /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; 35078A0D30C07DC0E51293BAB4B7A48F /* FirebaseInstanceID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstanceID.h; path = Firebase/InstanceID/Public/FirebaseInstanceID.h; sourceTree = ""; }; 35327675F6CED1B41870E375518BCEF8 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = Firebase/Core/Private/FIRLibrary.h; sourceTree = ""; }; - 358393E6497E486FE7F30B9130FBBA05 /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; - 35BF4AC5DF9B811679F83A83DCF63137 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; - 35F1A3F93E961AA639F61EB31B43A52E /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; - 360E5C05B774C89A4883C0016C5A174E /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; - 3613FE23C025F4348E6040E52E15676B /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; - 3687BE327C8068A115E32DF467EB0182 /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; - 36937A01E6D75EC438618AA1B753C093 /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; - 36BDCE6A03EBE2DE106F2E905C173FC2 /* RNDeviceInfo.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.xcconfig; sourceTree = ""; }; - 36F723BCE5C99CBFCD3A31CA8E2F7EFD /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 371F586AC27DF843AA0CA1ADFC622A01 /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; + 3546D1F7F828F246187E17309778ED6F /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; + 358C204261A6299B250B302CCB9D8F00 /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; + 35BEDABB35595AA263B2C25B1F531A2F /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; + 35BF6831E9357CB29C3C3122D6F4B6FC /* fishhook.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fishhook.h; path = Libraries/fishhook/fishhook.h; sourceTree = ""; }; + 360D695F54C7347EB2DAFE0D5A8863A7 /* RCTActionSheetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTActionSheetManager.m; path = Libraries/ActionSheetIOS/RCTActionSheetManager.m; sourceTree = ""; }; + 3658BA90C5C9427FA99C1BE43BA41645 /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; + 36B6D7D92D3F3B29DA454B082FED626A /* RCTImageEditingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageEditingManager.m; path = Libraries/Image/RCTImageEditingManager.m; sourceTree = ""; }; + 36E68E045C9CB25AE38E86ED6CFB8B98 /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; + 36FF2E370F4C06F4BEED27F538F44F16 /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; + 375B63386C1B8CDF2C1FD6C40C790F0C /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBox.h; sourceTree = ""; }; + 3783B8B353FE51B4ECE2F02333F79948 /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; 378AAB43F6447375572F48EAA16ACF04 /* FirebaseCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.xcconfig; sourceTree = ""; }; - 37F524CD0A14B6AADB92FF321918677C /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; + 37BAEBE1865DF8700BAF305E701AFB87 /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; + 37E1694CE2D0160C2911EFCAA4EA68CA /* libDoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libDoubleConversion.a; path = libDoubleConversion.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 37E68EFDD7704903AF0C5598DFAB4E07 /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = ""; }; 3801D7269A518344DCBC1FC0BE8CD46D /* GULSwizzledObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSwizzledObject.m; path = GoogleUtilities/ISASwizzler/GULSwizzledObject.m; sourceTree = ""; }; - 384758638F2B841DE9132AC71A6846F6 /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; + 387212658E8C481174A06376C1EEF220 /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; 3877D8495364FD75AC548B8B0F16D0A7 /* GPBDictionary_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBDictionary_PackagePrivate.h; path = objectivec/GPBDictionary_PackagePrivate.h; sourceTree = ""; }; + 3897856CEA3EB47EAE7C5EC2AF5AF11E /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTResizeMode.m; path = Libraries/Image/RCTResizeMode.m; sourceTree = ""; }; 3898F03FA6F5B8EC91001D51A7ADCBF2 /* FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRApp.h; path = Firebase/Core/Public/FIRApp.h; sourceTree = ""; }; - 391997F6F4B713013E49A83AE3C6D423 /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; - 394428DD51DBEC8515A0F375EB4829A2 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; - 394F2BF663EB4251EC6807F78D96BDE8 /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; - 396B50B5C0FED4B0C704951B9EA47B3D /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; - 399EADAC576A4E8245442F7004E3ADA9 /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; - 3A0A945667F8E2E4F9359280060BC636 /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; - 3A1B246EDF9484A4FF2C433D2700194C /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; - 3A345A514554BAAF34B28CD7B7895370 /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; + 38FE259966F8B62DF622A59A1C66C09F /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; + 39316B5784F4787505092A5AABF9D6E8 /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; + 3972D1E8F23C8AE556AEE9397C793169 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; + 39D752ACDC276F3F261CF640DEB0D76E /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; + 39E37C371CC57E6870285F67E36D0188 /* EXCameraRollRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCameraRollRequester.h; path = EXPermissions/EXCameraRollRequester.h; sourceTree = ""; }; + 3A32005A36CE1F8C2942EB9F65F1ADBE /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; + 3A45098498A0156920784A11C426CE97 /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; 3A49939A60E602BB2BA3160182C8E331 /* FirebaseCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCore.h; path = Firebase/Core/Public/FirebaseCore.h; sourceTree = ""; }; - 3A531BC7CCF0FF4977D0CE6538C73C92 /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; + 3A673BEBFF3B62964CF34710C36A170A /* EXCameraPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCameraPermissionRequester.h; path = EXPermissions/EXCameraPermissionRequester.h; sourceTree = ""; }; 3A67C74E067248967893327F3DAD53D7 /* NSError+FIRInstanceID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSError+FIRInstanceID.h"; path = "Firebase/InstanceID/NSError+FIRInstanceID.h"; sourceTree = ""; }; - 3A76167228FFDD5F1C3955289F237535 /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; - 3AAE37A383752FEFC15D64258F983449 /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; - 3AC87FAB4A78559F1956157C8D0ABCF5 /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; - 3AF58F919F042029ACECE9E795ABF2AC /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; - 3B92520DBC953627DB2EBB8BDB7950D0 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; + 3ACBA43CB70F1C1A49F1F0C42F57A1BF /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevSettings.h; sourceTree = ""; }; + 3AD79BCCA92E9AB3EDF2E1E4D9F034D1 /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; + 3ADF1D066E498673A3A89085E9EBE2B1 /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; + 3B0EFD6B3FD550C0B0BC882C1F282595 /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; + 3B90BA515B451E4550833D6168AF5A1F /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; 3C24C1DB9F2C7EE07196D2C247A09366 /* GPBUtilities_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBUtilities_PackagePrivate.h; path = objectivec/GPBUtilities_PackagePrivate.h; sourceTree = ""; }; + 3C5C96ED1BBFBDDD5D873F41010FE12B /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = instrumentation.h; path = yoga/instrumentation.h; sourceTree = ""; }; 3C8C72EC2BF76E610A9317B92C3CE3B4 /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = QBImagePicker/es.lproj; sourceTree = ""; }; + 3CB3A2579BEE6D46433D09B51915261B /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; + 3CBF30BFB9F498ABE29D057F170D1B5B /* RCTFileRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTFileRequestHandler.m; path = Libraries/Network/RCTFileRequestHandler.m; sourceTree = ""; }; + 3CC11C07D3C40BD21656CB42D40AAFCE /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 3CC1EA5EF5AC122334A24592ADDB26BC /* MallocImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MallocImpl.cpp; path = folly/memory/detail/MallocImpl.cpp; sourceTree = ""; }; - 3CC558FA6F3C0410D9A56C57E5532ED8 /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; + 3CCD50F6E0B8EA59A93E50FA9623175C /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; + 3DB6F761DADAE5FE337146D9EA099097 /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; 3DBE5B5C519267A9659862AF6C8F3EC7 /* ieee.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ieee.h; path = "double-conversion/ieee.h"; sourceTree = ""; }; - 3DE6BCF0241D1EE17B8AFBC2CC08B780 /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; + 3DCDD2EC2DECA027E0BB0DF778B159FA /* libEXPermissions.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXPermissions.a; path = libEXPermissions.a; sourceTree = BUILT_PRODUCTS_DIR; }; 3E2D1F54C052F13ABE73A9D113CC6625 /* GPBDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBDictionary.m; path = objectivec/GPBDictionary.m; sourceTree = ""; }; - 3E59982793FF0CE9D95024628E1610EB /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; + 3E303A73DE2B66F24849E34488ED1740 /* libGTMSessionFetcher.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGTMSessionFetcher.a; path = libGTMSessionFetcher.a; sourceTree = BUILT_PRODUCTS_DIR; }; 3E5FF9B8F5625C54B2248B8CFBD8433E /* FIRInstanceIDLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDLogger.h; path = Firebase/InstanceID/FIRInstanceIDLogger.h; sourceTree = ""; }; - 3EA501060922284179CF969B933D566C /* RCTActionSheetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTActionSheetManager.m; path = Libraries/ActionSheetIOS/RCTActionSheetManager.m; sourceTree = ""; }; - 3EFA7173EAE7C3F9369BEBCC60E10790 /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; - 3F12AAB52B2A14B43783EBA2A36E3B84 /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; - 3F1DCD6456822476709EA335A8B9D96C /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; - 3F7A146ED1B773355256A8826A9FB518 /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; - 409B82CB6FE8DFA3CA5706F1BAF9BC07 /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; - 40C051AE529B15A67C6245DC1B6DA493 /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; + 3E7CE4F6732E81E120E22F37C484E7B7 /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = ""; }; + 3EC9E0452A7C8DC2B1682F1D192A5B7C /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; + 3F7AF9C51D51F92DD053537B8222568C /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; + 3F958909E05ADB9522CE8DB8B063638D /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; 4124992184BAF918EAD45DF0D83DA693 /* FIRComponentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentType.m; path = Firebase/Core/FIRComponentType.m; sourceTree = ""; }; 413420DD213E1ED35AB2EE5950DB489F /* DoubleConversion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DoubleConversion-dummy.m"; sourceTree = ""; }; - 41E79D7D76AFB95C79BF02FA89E048AD /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = Libraries/WebSocket/RCTWebSocketModule.h; sourceTree = ""; }; + 416BFF47D159104A3D9B6BD65F3C1768 /* RCTTiming.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTiming.m; sourceTree = ""; }; + 41BBF971DC07C2BA314CEE1FA9C9C4AD /* EXUserNotificationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXUserNotificationRequester.m; path = EXPermissions/EXUserNotificationRequester.m; sourceTree = ""; }; 4217C74187711229B5945ADEDB0A9DA0 /* GULNetworkLoggerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkLoggerProtocol.h; path = GoogleUtilities/Network/Private/GULNetworkLoggerProtocol.h; sourceTree = ""; }; - 42523AE707DB25D20C30880A76E1DACE /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTAnimationUtils.m; path = Libraries/NativeAnimation/RCTAnimationUtils.m; sourceTree = ""; }; 4256FD74190E181955C125070B01CCF3 /* QBImagePickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBImagePickerController.m; path = QBImagePicker/QBImagePickerController.m; sourceTree = ""; }; - 4280C368ED60D926AA8A55E3D8008357 /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; - 4294C0B16B2653DD86727DD33F3F6A78 /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = Libraries/Image/RCTImageStoreManager.h; sourceTree = ""; }; - 42A9ED66F9AF63F068FFDE2E12601903 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 42AECD598C631F17CAA85F19766E43B8 /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; - 42C5E32EA29BD064C76AB0E321229971 /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; + 4284423E14F27A868E6096BFF77BD979 /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = ""; }; + 4296C8715DD41AD779777C2746442A8F /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; 42D616CF93145F8AA0A8CCC0613DF94B /* GTMSessionUploadFetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionUploadFetcher.h; path = Source/GTMSessionUploadFetcher.h; sourceTree = ""; }; + 4365D311FEC1186268B4C219E9DC1428 /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; + 43D7893F7DF03E31C4826A8999398D92 /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; + 4423B01053400EB5AA18B2C1AEB6124B /* react-native-splash-screen.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-splash-screen.xcconfig"; sourceTree = ""; }; + 442616B03AE73CD48C782458395CC832 /* libGoogleUtilities.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleUtilities.a; path = libGoogleUtilities.a; sourceTree = BUILT_PRODUCTS_DIR; }; 444245D3CCBAB1A0DEEB6D89589ABEE7 /* cached-powers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "cached-powers.cc"; path = "double-conversion/cached-powers.cc"; sourceTree = ""; }; + 4474D15EBD0B5B44D48CD434EE57C233 /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; + 44A02EB7CE80D015110C7D9C22D352C1 /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; + 44FC00F92F046900056D657B6BA5E14B /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; 451416F601DDE30625DA62A16B92765C /* FIRInstanceIDCombinedHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCombinedHandler.m; path = Firebase/InstanceID/FIRInstanceIDCombinedHandler.m; sourceTree = ""; }; 4573011531F44A2BF83F4401B9AA859F /* FIRInstanceIDAPNSInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDAPNSInfo.h; path = Firebase/InstanceID/FIRInstanceIDAPNSInfo.h; sourceTree = ""; }; - 45E53F701A6F230FEE9D5D397A56C09D /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; - 4632215D706774736F7E61DDCBB652E2 /* RCTImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageView.m; path = Libraries/Image/RCTImageView.m; sourceTree = ""; }; + 45A093FD47582D8EEA90793CC27F1151 /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; + 464A2559EB18858BDE49869DCE996E08 /* RCTClipboard.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTClipboard.m; sourceTree = ""; }; 4690E70186C445A91474BBC3A31BEAB2 /* FIRComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponent.m; path = Firebase/Core/FIRComponent.m; sourceTree = ""; }; - 4697A7C14A62FA8D0290C1BDD256F482 /* RCTDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDeviceInfo.m; sourceTree = ""; }; - 46B7E6EAEA8451A2EE13C40D84C45DA0 /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; - 46C298A0D61DB7EB52E447B83C66B45E /* RNSplashScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSplashScreen.m; path = ios/RNSplashScreen.m; sourceTree = ""; }; + 469727E155075E19B0D70CEF4E8D08AD /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; + 46AD24FA010EC42CFB6A3D55A06557DB /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; + 46DBBDBDBCC61E52C87074C9725BA9BF /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 475559CCE2E8740BD22A0ED0D903315B /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; 475CDA23EE58A9149A0B188381E6E4B9 /* Struct.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Struct.pbobjc.m; path = objectivec/google/protobuf/Struct.pbobjc.m; sourceTree = ""; }; 47A6A31F9EB2B51ADD0931A873E89C5D /* RSKTouchView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKTouchView.m; path = RSKImageCropper/RSKTouchView.m; sourceTree = ""; }; - 48CB0FC80C72BD15544E2CFE47363EC9 /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; - 48CDD3D004E41FE4429E22AA6B706BBE /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; + 47D5B955345FDC85DBE2F5F2869E5E6C /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; + 4836E9E0A5928D89BDAE7412E9522FFB /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; + 4871A62C6A0D180A6A7E82430F5C539F /* EXAppLoaderProvider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAppLoaderProvider-prefix.pch"; sourceTree = ""; }; + 491FC82623A764D76BB40A72E6045CF5 /* RCTWebSocketExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketExecutor.m; path = Libraries/WebSocket/RCTWebSocketExecutor.m; sourceTree = ""; }; + 49203CB3A39CA1F41F48B859BA32E1D1 /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = ""; }; + 493F02BEA366DB107C886479F653D364 /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; 493FC8AD48875FF76E8792079DF4D17F /* GTMSessionFetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcher.h; path = Source/GTMSessionFetcher.h; sourceTree = ""; }; - 495AF3D800175BD4B68CB72DFAC170DF /* react-native-orientation-locker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.xcconfig"; sourceTree = ""; }; - 4972B541A5E6E8E29A1869AD5C1471F1 /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; - 49929B494689314869BE877D36C79F66 /* RCTWKWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWKWebViewManager.h; sourceTree = ""; }; - 4A1355EBE513DA236FA38187541A1D36 /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; + 49819F30CA01238F866F65F376ABF550 /* fishhook.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fishhook.c; path = Libraries/fishhook/fishhook.c; sourceTree = ""; }; + 498B56CF2366F3CAB9ACB1466E9766FD /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; + 49A652931CE64C000A07DD2240216CB4 /* EXCameraRollRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCameraRollRequester.m; path = EXPermissions/EXCameraRollRequester.m; sourceTree = ""; }; + 49B366D200988D1B946B71A2E40958F2 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; + 49D1DEB093902AA186353D40F3C3178D /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = ""; }; 4A392B2042022C20AA6278A6488F3450 /* GULUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULUserDefaults.h; path = GoogleUtilities/UserDefaults/Private/GULUserDefaults.h; sourceTree = ""; }; - 4A3D590BB5136E52176D77530465293E /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; - 4A4EB1F6C34C64107C63FBDC6626368C /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; + 4A543E28CBAB7E46E4DE19E550B53819 /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; 4A5BB19124FE2A8CCEE96A5348423FEA /* FIRAnalyticsConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsConfiguration.h; path = Firebase/Core/Public/FIRAnalyticsConfiguration.h; sourceTree = ""; }; - 4AD712C94A3ADC9DBEE1E9E06DAF35FF /* RCTNetInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetInfo.h; path = Libraries/Network/RCTNetInfo.h; sourceTree = ""; }; + 4AB85FB3207ED22B0B3F2690CBC77AA2 /* 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; }; + 4ADF5EA030B4AFAC1EE01CD606053934 /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; 4AE3A44AE964E532BF5CCB7C7ECBF108 /* Duration.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Duration.pbobjc.m; path = objectivec/google/protobuf/Duration.pbobjc.m; sourceTree = ""; }; - 4B174B7BE45B2B7C98F341EC109D0B6F /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; - 4B291487086EE82B7394180A30F34F1B /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; - 4B6803B09C3C15EBD80A58A170528FA7 /* RNSplashScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSplashScreen.h; path = ios/RNSplashScreen.h; sourceTree = ""; }; - 4B9153764CB727B54ADAB978344D5D90 /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyboardObserver.h; sourceTree = ""; }; + 4AED8DB3E621C8A7B8E0815DFC1B585C /* react-native-splash-screen-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-splash-screen-dummy.m"; sourceTree = ""; }; + 4AF3333EB373D28D0DD292A8F4E43971 /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; + 4BAD7B24802C17494631F787C3A832F1 /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; 4BCBE4FFA2B48385E101CAC42332AC11 /* FIRInstanceIDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDStore.m; path = Firebase/InstanceID/FIRInstanceIDStore.m; sourceTree = ""; }; + 4BFCB713A66F84C93A395759D75F03FA /* RCTAppState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAppState.m; sourceTree = ""; }; 4C2812A321DB28C5A37D494A1705FA3C /* FIRConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRConfiguration.m; path = Firebase/Core/FIRConfiguration.m; sourceTree = ""; }; - 4C3F849E4C5088D06BFE9F2E391FDA97 /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; - 4C7937B3E054E3756E352EE97537F7FF /* RCTAccessibilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAccessibilityManager.m; sourceTree = ""; }; + 4C5E1C8337137A34CC3F560FC460E765 /* RCTNetInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNetInfo.m; path = Libraries/Network/RCTNetInfo.m; sourceTree = ""; }; 4C8B860B45EC3D0A6958A4F91C0490A3 /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = src/glog/logging.h; sourceTree = ""; }; - 4CB662DA5E7432C7821547D0145E1F8B /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 4D145FC36FA866340E2B54EDEA751F16 /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; + 4CDD0F63AC79E800DC98A2459434B926 /* EXFileSystem.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.xcconfig; sourceTree = ""; }; 4D1B92FF422855E7F24CBC59BA2A31C4 /* GPBCodedOutputStream_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBCodedOutputStream_PackagePrivate.h; path = objectivec/GPBCodedOutputStream_PackagePrivate.h; sourceTree = ""; }; - 4D6D63C2D1947B5314013A9F285E9A69 /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; - 4D72526F49DB18BCD06DAA9AF5A04D9A /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; - 4D9AE1F5735B89A753A7A8098AC49330 /* libreact-native-splash-screen.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-splash-screen.a"; path = "libreact-native-splash-screen.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 4D96490599AA0027EECDEB35A711F9AC /* libyoga.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libyoga.a; path = libyoga.a; sourceTree = BUILT_PRODUCTS_DIR; }; 4DC3650807C96F5E7FB2BB5E3F1F571D /* RSKImageCropperStrings.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = RSKImageCropperStrings.bundle; path = RSKImageCropper/RSKImageCropperStrings.bundle; sourceTree = ""; }; 4DC7C3515580940D0C1C64597E302966 /* QBAlbumsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumsViewController.m; path = QBImagePicker/QBAlbumsViewController.m; sourceTree = ""; }; 4E1346157A8E9BD0479DB40C4BC2EA76 /* GPBUnknownField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBUnknownField.h; path = objectivec/GPBUnknownField.h; sourceTree = ""; }; - 4E2757FF8021BE2FC2EBAAA4A9C1C777 /* libyoga.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libyoga.a; path = libyoga.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 4E520CF9FB73AEE5FF2BF935BCA84731 /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; - 4E53FD7884463BAE09E36BD46399952A /* RCTI18nManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nManager.m; sourceTree = ""; }; + 4F0B571476341CBAD9B4FBF1C6A98E39 /* RNCUIWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCUIWebViewManager.m; path = ios/RNCUIWebViewManager.m; sourceTree = ""; }; + 4FC5AB30FCC9AFBD1D5D2CB9E0FBAACD /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; 50211D8651BDEECDCF337C2943949119 /* GPBDescriptor_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBDescriptor_PackagePrivate.h; path = objectivec/GPBDescriptor_PackagePrivate.h; sourceTree = ""; }; + 5060761558A343D17B92566062690FB7 /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = ""; }; + 50996A9329871FEEF87B0ACF745E4150 /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; 50BC3074BB06BC98F23931C70A9B5C19 /* GPBUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBUtilities.m; path = objectivec/GPBUtilities.m; sourceTree = ""; }; + 50C44A16D597C16312DDC203B64EA7C0 /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; + 512DFA1D944D1935E2F0A1C92E52041A /* RCTWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWebView.h; sourceTree = ""; }; 515A1F6C79F560E37E999D318248B68B /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = Firebase/Core/Private/FIRLogger.h; sourceTree = ""; }; - 516301F78F394A22B000158228B9A457 /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; + 515B11C3F564308F55A924CA29326F23 /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = Libraries/ActionSheetIOS/RCTActionSheetManager.h; sourceTree = ""; }; + 51A42928169BF25DD5E498742C89294D /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; + 51A480123ACF8DB07F3E7974F79FAD96 /* EXDownloadDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXDownloadDelegate.h; path = EXFileSystem/EXDownloadDelegate.h; sourceTree = ""; }; 51DB1D488B9CD90333D4917C16942248 /* ColdClass.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ColdClass.cpp; path = folly/lang/ColdClass.cpp; sourceTree = ""; }; 52413708A751A44C4BBEC6FA2ED9CCE8 /* FIRInstanceIDAuthKeyChain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDAuthKeyChain.h; path = Firebase/InstanceID/FIRInstanceIDAuthKeyChain.h; sourceTree = ""; }; 525C647EEF47536DBF52A18EA0147F7C /* FIRInstanceIDCheckinPreferences.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCheckinPreferences.m; path = Firebase/InstanceID/FIRInstanceIDCheckinPreferences.m; sourceTree = ""; }; - 5260785553FE1A8E4EC8EED434B58601 /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; - 5309AEE0F5431EC543070160597ADE5C /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; - 5312706937A32F9CF31880668E6CB34C /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; + 52DED0382D977A6024E4E77EBC971FD8 /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; + 53155E24D644CB7DD8AEEF28C0128C6D /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; 53563E1385145D00720C7953AD9E0E74 /* Crashlytics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Crashlytics.xcconfig; sourceTree = ""; }; - 5363EC9A46231D88DE63592159D4E167 /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; + 536C660002D786BD38B72C528C5072ED /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; + 53808EC7E8C925E9DFD55FC53A64DCCB /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 53B4B38137E5D56235AF99C48BCABB84 /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; + 5429D0E9E33F561A70968BE8CDDB8440 /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; + 5442AF23C9BA535E21289A46201A1ED2 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; 54627613061D55A797A2AFCFB0A864D7 /* GULLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerLevel.h; path = GoogleUtilities/Logger/Public/GULLoggerLevel.h; sourceTree = ""; }; - 54AB1F9A19A7EA3F67C2E69B5E342464 /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; - 5506ED24DA0C0ABCB9486F68AB52E022 /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; - 559BAFBAFE3A8EEECCC160B988BF99CA /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; - 56360009B0456FD26BACD30E15A84CEF /* libDoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libDoubleConversion.a; path = libDoubleConversion.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 564273866CA88CC8BD0C498524CB9D22 /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; + 54795F0EE2ACB3BD6BBA3928C0F2B087 /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; + 54ABF5F2B16EAA8A1545B71B5C961875 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; + 54BE99649705EC75D92947A72DD5E8DB /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; + 54EF61827A241A2701D6A293365FA06E /* RCTWKWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWKWebView.m; sourceTree = ""; }; + 56042BC31164476C8297B28CD58B6490 /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; + 56251F479828941CB3B4812B2DCB9493 /* RNSplashScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSplashScreen.m; path = ios/RNSplashScreen.m; sourceTree = ""; }; 565D524286473269CBBCCFB3B6EDD6AC /* GPBUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBUtilities.h; path = objectivec/GPBUtilities.h; sourceTree = ""; }; - 579182D372EBF52F807F254285F429A7 /* RCTWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWebView.h; sourceTree = ""; }; + 57694669B5885F8FCA598A98ABFDA905 /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; 579E21F0E94CEF5650570F6CF8841CC8 /* diy-fp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "diy-fp.h"; path = "double-conversion/diy-fp.h"; sourceTree = ""; }; - 57A1108F22DB53BDAA0BE96B7DDCCBD4 /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; - 57B0412F42867214D84351A061464444 /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; - 57E63DFDCD018321720C452EE0E7FA0D /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; + 57B0CC97ADB2F95F43B65F93AD683F49 /* React-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-prefix.pch"; sourceTree = ""; }; 5806880501A07C1ACB9A7138A81669B0 /* pb_decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_decode.h; sourceTree = ""; }; + 58B503D5DE0F7BDE9579A2BF7B3C7D22 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; + 58D3F22DB722F2A2672EE7A0EBC28FF8 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; 58EFA2443DE01F9B740204B2BDDAE0DE /* CLSReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSReport.h; path = iOS/Crashlytics.framework/Headers/CLSReport.h; sourceTree = ""; }; - 5941744194FE1D35F329AEB096D95B84 /* 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; }; 59580373A446659C07B9D6B12E8B769F /* FIRInstanceIDTokenInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenInfo.m; path = Firebase/InstanceID/FIRInstanceIDTokenInfo.m; sourceTree = ""; }; 599A4418AF75B9750AABACF579E38163 /* fast-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fast-dtoa.cc"; path = "double-conversion/fast-dtoa.cc"; sourceTree = ""; }; + 59A77632E0DCBF332BAF05D8F86D9A68 /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; 59AFCE36072473C2A6DFE33FD5ED1CB2 /* RSKInternalUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKInternalUtility.m; path = RSKImageCropper/RSKInternalUtility.m; sourceTree = ""; }; 59B18FAFDBF7C97CA820446A7A40E385 /* FIRInstanceID+Private.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstanceID+Private.m"; path = "Firebase/InstanceID/FIRInstanceID+Private.m"; sourceTree = ""; }; + 59E24BFED29842C0000C94AC01B2985C /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; 59EDFF0DAF963120B38FF8CB03EFD21D /* GULReachabilityChecker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULReachabilityChecker.m; path = GoogleUtilities/Reachability/GULReachabilityChecker.m; sourceTree = ""; }; 5A29582DC746F0777955025C3F67A60E /* Crashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Crashlytics.h; path = iOS/Crashlytics.framework/Headers/Crashlytics.h; sourceTree = ""; }; 5A601E6330B922C4911EB6709D982A87 /* boost-for-react-native.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "boost-for-react-native.xcconfig"; sourceTree = ""; }; 5A66D4BE8819AAEA103734F7D4F5519D /* QBImagePickerController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "QBImagePickerController-prefix.pch"; sourceTree = ""; }; - 5ACFB0EF1D24E37CA005A2812636360A /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RCTHTTPRequestHandler.mm; path = Libraries/Network/RCTHTTPRequestHandler.mm; sourceTree = ""; }; 5AD048465639525B81E23944B58005C8 /* Pods-RocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-RocketChatRN-acknowledgements.plist"; sourceTree = ""; }; - 5AEFCADEEBD5165AAA3FD3F30DA7F4E3 /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; - 5B444A17EA7693B11819F2C9258F71C4 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; - 5B4C2F4E3F95179CD28B9A7106F8B221 /* libGTMSessionFetcher.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGTMSessionFetcher.a; path = libGTMSessionFetcher.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 5B506EBED09D7451E6DB5E7FCA0353AC /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; - 5BDEF993C35C5C5E7F196C02190C34B1 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; + 5AF13F74F2E66FF6342AD10B3AACB21D /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; + 5B7AB0CB3B00DC655C7444FF210E3136 /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAccessibilityManager.h; sourceTree = ""; }; + 5BE1F3B72E441DFBD646870A79A1EA93 /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = ""; }; 5BE41C9DFDC4FD7C408776028F523ED8 /* FirebaseABTesting.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseABTesting.framework; path = Frameworks/FirebaseABTesting.framework; sourceTree = ""; }; - 5BE59919C4126563ACB9CB989AE8B3BF /* RCTWKWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWKWebView.m; sourceTree = ""; }; - 5C0116515A818D6FB8B481F8D9CAF25E /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; + 5C08ACA581147F4254DBA5DEE3B9955A /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; 5C091A0338C15E8B88682282FA526CA6 /* FIRInstanceIDStringEncoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDStringEncoding.h; path = Firebase/InstanceID/FIRInstanceIDStringEncoding.h; sourceTree = ""; }; - 5C709658FDF21BF1294A15EE00B225E2 /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; - 5CE7585AD01DB1875E747CD0EA893460 /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; - 5D8CA5A534F20BE7ECA374693A530C0C /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; + 5C54F46CAA5ABA063C27C4748BEC52F4 /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; + 5C92701E217466C469F7ECCAD9236C93 /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; + 5D79A409DB7CABE3D5E774A584F22D09 /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; + 5D8505D4CA9382A08DCE875CD60FB6FB /* RCTDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDeviceInfo.m; sourceTree = ""; }; + 5D8DBD237525CC37CA939174B48187DE /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; + 5DB64E108059078D3F4A6CE1EEEC289E /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nManager.h; sourceTree = ""; }; + 5DDCF3699AC20D084526BE5EF3EB48FC /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; 5E12617144A23133BF6F8F4556C822FE /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logging.cc; path = src/logging.cc; sourceTree = ""; }; 5E185919BB79C8C7935702959B1F792F /* FIRVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVersion.h; path = Firebase/Core/Private/FIRVersion.h; sourceTree = ""; }; + 5E2163F6897A6A082FB8A263F614ED30 /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; 5E27655892D05466617A8A07FDBD8687 /* FIRInstanceIDKeyPair.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDKeyPair.m; path = Firebase/InstanceID/FIRInstanceIDKeyPair.m; sourceTree = ""; }; 5E4F9A756C618643123B7CD818A7BB8E /* GULLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLogger.h; path = GoogleUtilities/Logger/Private/GULLogger.h; sourceTree = ""; }; - 60015539A1AC8BB1EB1797DFA53A3701 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; + 5E80A1A41EA8E50B288D989322175867 /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; + 5E95FC2388C4510F851514428A9D28ED /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; + 5EC52855F8B7DDDB7570E6FF6613B6CC /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; + 5F72A4AE55482C289F51DB1D69711C97 /* RCTStatusBarManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStatusBarManager.m; sourceTree = ""; }; + 5F8B62D33E49BE7AEE1D122152112716 /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 5FA18D746E9BF90413F6FCF201C60696 /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; + 5FC166449536B01AA14B5FC576CFC630 /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXPermissions/EXAudioRecordingPermissionRequester.m; sourceTree = ""; }; + 5FCE8E36871EC5631A2AA45186D27222 /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; + 60042A28AD88403718D41C4C668ED417 /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; 601F8DCD411FF95D5B4DB5F224ACF266 /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = src/demangle.cc; sourceTree = ""; }; - 60A29CCBA4AA34C8F1600DB967747055 /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; - 60D9D5E1E978BDC00DDC06405E0D0241 /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; 60FB01EC5A5AA441B4CA867A5A25DB8B /* GPBMessage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBMessage.h; path = objectivec/GPBMessage.h; sourceTree = ""; }; 60FE58C23DA01DE44721A1DB79EC1B0F /* GPBExtensionInternals.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBExtensionInternals.m; path = objectivec/GPBExtensionInternals.m; sourceTree = ""; }; - 60FF36A8EF7AE6063AB580B1405C5511 /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; - 61718E279833AB40E24F7884E1B97C19 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageCache.m; path = Libraries/Image/RCTImageCache.m; sourceTree = ""; }; + 610510E3BE9447826BF4B068E4C71C81 /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 61CE22C50D775F0923600623F3B4E3B7 /* SourceContext.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SourceContext.pbobjc.h; path = objectivec/google/protobuf/SourceContext.pbobjc.h; sourceTree = ""; }; 620FB2E72885D3DB06D010AAE96C5880 /* FIRInstanceIDAuthService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDAuthService.h; path = Firebase/InstanceID/FIRInstanceIDAuthService.h; sourceTree = ""; }; 622A888BCCAB419A51B31C52E811CF12 /* FIRComponentContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentContainer.m; path = Firebase/Core/FIRComponentContainer.m; sourceTree = ""; }; - 62B0A073F08D67EFDD33F8EC8AE2E50E /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; + 627B0BE5D7A9F12E77D45BEEA5ABAA12 /* RNSplashScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSplashScreen.h; path = ios/RNSplashScreen.h; sourceTree = ""; }; + 6282A9FA1399B4966EE0EC6FCA4F05DD /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; + 62F46A50BC1F0985EABC6DB040306E23 /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; 630D96CF42C5D421F8148108C056654D /* Duration.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Duration.pbobjc.h; path = objectivec/google/protobuf/Duration.pbobjc.h; sourceTree = ""; }; - 639A8A756E2673AD03AD87B87B1215D6 /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; - 639AB08F4B349C6E92E4C5800FA1F1DC /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; + 636E9E7C4545EEAF5E9A4B8F99F8C16B /* UMSensorsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.xcconfig; sourceTree = ""; }; + 637CAE97AF4E3BD9F5116ADB7395BEDA /* react-native-webview.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.xcconfig"; sourceTree = ""; }; + 637D8B1A89F8459DE510886A0DFCEDDA /* 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; }; + 63A741F47AEAFE816B0EA4DC6CE54366 /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; + 63AD99E2E51B7DDF3533A209F4686A3D /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; + 63C8128F9A3A5D250BFC71249E0FEC55 /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; + 63E8726393D906F3550C9EAF21B73214 /* react-native-orientation-locker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.xcconfig"; sourceTree = ""; }; + 64235F7064C8A6DDA07A3A3DF491D10D /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; 644949DB617A048149E047010C6D0980 /* FIRInstanceIDKeychain.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDKeychain.m; path = Firebase/InstanceID/FIRInstanceIDKeychain.m; sourceTree = ""; }; + 644FB971047ACD9C57BED65D7B181202 /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; 64830F597669F4220C883FD8271F733B /* Firebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Firebase.h; path = CoreOnly/Sources/Firebase.h; sourceTree = ""; }; 6499163217FEC226F460D5D8529782C6 /* Empty.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Empty.pbobjc.h; path = objectivec/google/protobuf/Empty.pbobjc.h; sourceTree = ""; }; - 64DE17D43A63754C6DE3D954802C94FD /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; + 64DE45EF6C0F85B930F6CB0E2DD334AD /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; 64EE348660F8A8DDAABFA36434FE1DCE /* Timestamp.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Timestamp.pbobjc.m; path = objectivec/google/protobuf/Timestamp.pbobjc.m; sourceTree = ""; }; - 65014966900122C0605440FB66B2052E /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; 6513B153A69122DA4C3567D902EF3824 /* FIRInstanceIDKeyPairStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDKeyPairStore.m; path = Firebase/InstanceID/FIRInstanceIDKeyPairStore.m; sourceTree = ""; }; - 65935DE2B6D45B09853ABB8E59F1D354 /* RCTFileRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTFileRequestHandler.m; path = Libraries/Network/RCTFileRequestHandler.m; sourceTree = ""; }; - 65DFDAD45501F5F47CEEF4DFC81EFBB8 /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; + 65BF5FCF91226EA2E347326A1C1EC619 /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; + 6651D14A463FBCCB3B207312B3279DFB /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = ""; }; 6697EA434D23502A2D809B6B7E6E3A4B /* QBImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBImagePickerController.h; path = QBImagePicker/QBImagePickerController.h; sourceTree = ""; }; 6734DE64ED0684F4ED7E862F0B473C09 /* GTMNSData+zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GTMNSData+zlib.h"; path = "Foundation/GTMNSData+zlib.h"; sourceTree = ""; }; - 675CC4567D34CC25C1EAB70894E5B2E5 /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; - 6775F807D5634E9C16A0E6098D285C15 /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDeviceInfo.h; sourceTree = ""; }; + 674A99CDB2F603B4C4854FB82F022D9C /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; 677CA4BB009608055FD2DE2322188AD1 /* GPBArray.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBArray.m; path = objectivec/GPBArray.m; sourceTree = ""; }; 679D1D88CD0BDF8F95100BFABEEEB36C /* FirebasePerformance.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebasePerformance.framework; path = Frameworks/FirebasePerformance.framework; sourceTree = ""; }; - 67B6C04B3A55FA243F6C35E757703453 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; + 67B77477FCC80A0EDB2262F5C9642FED /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; 68A1E84C5B4C1FA0364534DF5FA9CA2B /* FIRInstanceIDCheckinStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCheckinStore.m; path = Firebase/InstanceID/FIRInstanceIDCheckinStore.m; sourceTree = ""; }; - 68FD0607CE08500BB44B5823C38CDC44 /* 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; }; + 68D4508A6BF94D2B698C975F33941E30 /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 68E1278EF58AEE83AA308A392BB834DF /* 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; }; 6946B862376ED5B6185DFD59CE9BB4A5 /* fixed-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fixed-dtoa.h"; path = "double-conversion/fixed-dtoa.h"; sourceTree = ""; }; - 6999CFB6C5967EE5D414BAC83FBE03CE /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; + 698AA1047EBB81EFE8140F86663C2F53 /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; + 69C6C9E71F93F96CD7C21840D3EA5213 /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; + 69C9978E49D3AC77EC30C25C215F3BF3 /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 69E9189795301B078917D0DCC1A8CA75 /* FIRErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrors.h; path = Firebase/Core/Private/FIRErrors.h; sourceTree = ""; }; - 6AFCD601ABF7B40B468709362D7AABEE /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = ""; }; - 6B81C4E17E319FE171C64F206464ACA8 /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; - 6BC3E2435C96169FB9769DD04E07D376 /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAlertManager.h; sourceTree = ""; }; + 6A2594A10A4885901C0BFD072557F9F1 /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; + 6A6CA78B5DD72E0852B7CF800120B301 /* EXRemindersRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXRemindersRequester.h; path = EXPermissions/EXRemindersRequester.h; sourceTree = ""; }; + 6AE83181A5A19C15F4602AF27795DC64 /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; + 6B12BE84FCFCCA1BA4BFFFF60161C793 /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; + 6B7479632A9ED2D4BCC34A0757A70CFB /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; + 6B8EA235DF0806C854698CDB643852BA /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; 6BC6169FE9172EC3ECF6AD711B177B87 /* FIRInstanceIDKeyPairStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDKeyPairStore.h; path = Firebase/InstanceID/FIRInstanceIDKeyPairStore.h; sourceTree = ""; }; 6BEC5CB1F4874AAD0138959794C1CF02 /* QBImagePicker.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = QBImagePicker.storyboard; path = QBImagePicker/QBImagePicker.storyboard; sourceTree = ""; }; 6C0A208B50BC7DD0CB91ED9CAC3066BE /* FIRInstanceIDLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDLogger.m; path = Firebase/InstanceID/FIRInstanceIDLogger.m; sourceTree = ""; }; - 6C87924A9DA6E1AD8A21AA68BA97330B /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; + 6C105936026F0AA5402B7E9A82D19E2B /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; + 6CA6D2A9C2E6E9D04B92B2A07B36DB20 /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXPermissions/EXAudioRecordingPermissionRequester.h; sourceTree = ""; }; 6D048B65D5401F3B11C2CD7AD3F5FDE2 /* RSKTouchView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKTouchView.h; path = RSKImageCropper/RSKTouchView.h; sourceTree = ""; }; 6D1AC57504505A93DD8D0EA687056CBB /* FieldMask.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FieldMask.pbobjc.m; path = objectivec/google/protobuf/FieldMask.pbobjc.m; sourceTree = ""; }; + 6D2E0E8B2C2AF5062A4F72C4175E115E /* UMPermissionsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.xcconfig; sourceTree = ""; }; 6D4F1380084C5CF876DBC28B169C3B82 /* Folly.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Folly.xcconfig; sourceTree = ""; }; - 6DA5208649DBB873A3E30032D4681CC1 /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; + 6D60F17861DBC7F2C20EBB3116BBD819 /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; 6DB842E29EB9934D5B365DE7714ED23B /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseAnalytics.framework; path = Frameworks/FirebaseAnalytics.framework; sourceTree = ""; }; 6DC579C09B3BA22DD3F694833A665382 /* Crashlytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Crashlytics.framework; path = iOS/Crashlytics.framework; sourceTree = ""; }; - 6DD91ABCB7C35204BAA17AFE588FF8BC /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; 6DFC645B36E2820CBD47C45BF1DFEE72 /* FIRInstanceIDCheckinPreferences_Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinPreferences_Private.h; path = Firebase/InstanceID/FIRInstanceIDCheckinPreferences_Private.h; sourceTree = ""; }; - 6E305EC09D5D412748A399A60632E36D /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; - 6E3E97BF080403F44F65AE2E02AF57C3 /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTExceptionsManager.h; sourceTree = ""; }; - 6EB64A60949FC9B3E9CFAC05DED76C5A /* react-native-splash-screen.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-splash-screen.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 6EB8186377062FD05FD91EAC947E877C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 6F268E6885A8F21AFF92065107509166 /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; - 6F60FD23BB00312BCDEFFC999D443E21 /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; + 6E9370B84BD65621682005D092D66A71 /* libQBImagePickerController.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libQBImagePickerController.a; path = libQBImagePickerController.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6E9E5AFF9F1158A263F627B523DD4F95 /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; + 6EDC27CE76D0AFFEB5E8A7740485B9A1 /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; + 6FED2DB30E28990CA19A21EC6ECFC98C /* libglog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libglog.a; path = libglog.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 7056FADDECF9CEB1C5671DFB9DF21A92 /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; 706A49ED0395C47363714A6B97AE0F47 /* FIRDependency.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDependency.m; path = Firebase/Core/FIRDependency.m; sourceTree = ""; }; - 709498DBCC6196365BD2208B3028A858 /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; 711C6598936FBFA8F477E439F6E6A956 /* GPBDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBDescriptor.h; path = objectivec/GPBDescriptor.h; sourceTree = ""; }; - 71D509A08DB898868793846A45629FFA /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; - 71DC16B20ADE8005F5F20D1F64844597 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 71DD0FEC5BFD872501997C0FF7FF073D /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; - 72040EF500C630FB526C13293B6036D7 /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; 7228F1A5DD1E7449CFFAA650E17D8BF7 /* GTMSessionFetcher-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GTMSessionFetcher-dummy.m"; sourceTree = ""; }; - 732E544ACD6FE923DAA5E78E02F1E202 /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; + 726013CBCC8B92105ACDC3E7F188312A /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; + 726497E1CF69BDBEDEF63C2394991D11 /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 72A54D2765C05FE41BD92EBB53029C7C /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; 7498C22D9DF923F2EB5402E6FB46A266 /* GULReachabilityChecker+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULReachabilityChecker+Internal.h"; path = "GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h"; sourceTree = ""; }; - 756ACE90B6EF13570602DFBD7D8AE1AE /* libFolly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFolly.a; path = libFolly.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 7660A55CB80BDE20D9C0317022BCF2CC /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; - 7662F13E288A068B7A314AB2C0D620EB /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; - 76C141C6E462C287A85420DE860AB4A5 /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; - 76C1E066642A7A0926E6516B46C95FFF /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; + 753E68C7779BA0195DE26FB89A29D3D5 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = Libraries/Image/RCTImageLoader.h; sourceTree = ""; }; + 759085FEB57952F8DF50500B125783A5 /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNativeAnimatedNodesManager.m; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; + 75D3E47A6703E7FF33ACA2DA921DD638 /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; + 7680771530292A6366559AC446B9DB6D /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; + 769637C3CDD6ED41E79E54661D3C2C69 /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; + 76D0B6AA74CB1B3EDD775E61107F1B0F /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; 76EBFD3CD23982CD8310269BCF2453CF /* GoogleToolboxForMac-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleToolboxForMac-dummy.m"; sourceTree = ""; }; - 77BF8A9CA57F1073A320EAEF3CFCCB85 /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; - 7833F0EBCA5D86F0DD62CF485FDFFC05 /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; - 78F8C438C9C6494B12B343EBE68ABD24 /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; + 76F9A6BC8E6D8EC5DAE564E5ADEA597F /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; + 7734802D1DBB71408ABB75695389CACD /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; + 776FB4379E98275FB1CF46EEE557C80A /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; + 7805A6A97BD5FDA83CB66967D68F0273 /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; + 7854C18EB7D74E8B222292E1C29BC90F /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; + 78E7253F767B7FADF737B07003AAEA3C /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = ""; }; + 78F4CDD536D09120994332BB0C54A4DC /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; + 7905B60B82DB16D1649441A133F0B8C1 /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; + 79A3AA7303075D4CEFF344518B5D27E9 /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = ""; }; 7A29F957A43035734255D442CB7511BF /* CLSAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSAttributes.h; path = iOS/Crashlytics.framework/Headers/CLSAttributes.h; sourceTree = ""; }; - 7A9D18559A07075C9E65E3E402A5C88D /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPlatform.h; sourceTree = ""; }; + 7A6E8AC2A07F78B204FE70462E74DDE5 /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; + 7A70B72FA26EBA9767AD40302A931EE7 /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; 7ACD875EB7DA766798B3BC381F195E89 /* QBVideoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIconView.h; path = QBImagePicker/QBVideoIconView.h; sourceTree = ""; }; 7BA7175A9908886E248699428C067D56 /* FIRInstanceIDAuthService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDAuthService.m; path = Firebase/InstanceID/FIRInstanceIDAuthService.m; sourceTree = ""; }; - 7BEB8315BB042A168BBE0ACA06086092 /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; 7BF13B1EC347270A141AF1842CDAF405 /* FIRInstanceIDBackupExcludedPlist.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDBackupExcludedPlist.m; path = Firebase/InstanceID/FIRInstanceIDBackupExcludedPlist.m; sourceTree = ""; }; 7C2E814399C509F6046B91DD6C7410FB /* GoogleAppMeasurement.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleAppMeasurement.framework; path = Frameworks/GoogleAppMeasurement.framework; sourceTree = ""; }; - 7C3540047463FC700E369C518510468D /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; - 7C6D7910FEF5E3363C8BCF6764FEC7F1 /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; + 7C43D04338C2361DCEB56EDA7E273D55 /* RCTWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWebViewManager.m; sourceTree = ""; }; + 7C4A5C4BC95836171989EC12B6623F4E /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; 7C9F66BD2F5994688215F7C214C82892 /* GULUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULUserDefaults.m; path = GoogleUtilities/UserDefaults/GULUserDefaults.m; sourceTree = ""; }; + 7CA3AE206F5C109F60096430C6555D9F /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; 7CBB70653DCBD6DD993B57C905751C64 /* Pods-RocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-RocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; - 7D1765AB3C29325E0A549F7FA48939BE /* RNCUIWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCUIWebViewManager.h; path = ios/RNCUIWebViewManager.h; sourceTree = ""; }; - 7DA1A080C1670377B7C3F90B446E7512 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 7E7D5E9AB7D14742F47AC44922BD15C5 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; - 7E8C28C893A1C5B31EC39D6625CEF0AC /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; + 7DB2ABC68A5843D3062CFB79E0DA3750 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageCache.m; path = Libraries/Image/RCTImageCache.m; sourceTree = ""; }; + 7DFFEB43A1110EE2509463E56455D824 /* libEXConstants.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXConstants.a; path = libEXConstants.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 7E7D063C91BD1DD4F6558094C1251DEF /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; + 7EA85B9EE28BF14E7D97230CBCE2F04E /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = ""; }; 7ECB7FF032D4794DA9840A5670C932BB /* NSError+FIRInstanceID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSError+FIRInstanceID.m"; path = "Firebase/InstanceID/NSError+FIRInstanceID.m"; sourceTree = ""; }; 7ECE1CF94802F266870C32A042C6A6AE /* FirebaseCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCore-dummy.m"; sourceTree = ""; }; + 7EEC4947EDFBE36B3650A3E5FB6A5B52 /* RCTKeyboardObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyboardObserver.m; sourceTree = ""; }; + 7EF62CE0861A9ED7A94283157FF002AC /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; 7EFD7D606C5FCF2524B1CA130FFB8982 /* GPBUnknownField_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBUnknownField_PackagePrivate.h; path = objectivec/GPBUnknownField_PackagePrivate.h; sourceTree = ""; }; - 7F0F03D8DCB1A9C1F15408223E08DF62 /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; - 7F3122CB71D61B1D541A9723CE024E1F /* yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "yoga-dummy.m"; sourceTree = ""; }; + 7F03506161E4CDAC7F99821B2E37F610 /* EXUserNotificationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXUserNotificationRequester.h; path = EXPermissions/EXUserNotificationRequester.h; sourceTree = ""; }; + 7F37BF099F6C29795631BDE83D57D583 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 7F60A815345257201EB2DD6A85AE4AE3 /* GTMLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMLogger.m; path = Foundation/GTMLogger.m; sourceTree = ""; }; + 7F6968ECD9F95509ED4A8CB43CBBFCD8 /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; 7FEB15F0E803D8293239AB02DA1B66EA /* GULNSData+zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULNSData+zlib.h"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.h"; sourceTree = ""; }; - 802F4044CE222BF16E1FC6CB84AF165A /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; - 8062C941EC8C4E98617883010925AF7C /* YGMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGMarker.cpp; path = yoga/YGMarker.cpp; sourceTree = ""; }; + 80697BC6BBB4E3A1F17668897EA69F92 /* EXDownloadDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXDownloadDelegate.m; path = EXFileSystem/EXDownloadDelegate.m; sourceTree = ""; }; 808D6DDACE2479D44956ECE70452EEDB /* FirebaseRemoteConfig.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseRemoteConfig.xcconfig; sourceTree = ""; }; - 80938737EC82A149170F242C5B889FC0 /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; + 80B886AB2E9143FB180384C7EDDAA401 /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; 80F583A588A7BFDA1F7CB40F133E0521 /* GTMLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMLogger.h; path = Foundation/GTMLogger.h; sourceTree = ""; }; - 8176AA8C6D2DD64BB3198F842BE4F65A /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; - 81D09FC952E2900D349B6C091BBB48D9 /* libFirebaseInstanceID.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseInstanceID.a; path = libFirebaseInstanceID.a; sourceTree = BUILT_PRODUCTS_DIR; }; 822E127F41D73E1A442BAE48920F7F3E /* FIRInstanceID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceID.h; path = Firebase/InstanceID/Public/FIRInstanceID.h; sourceTree = ""; }; 824CA65A50D94CA1CAE58408CB4B035F /* FirebaseABTesting.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseABTesting.xcconfig; sourceTree = ""; }; - 82526C2DCA763425E2601227769528DE /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; + 827904353D3734D52899954551594443 /* EXAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppLoaderProvider.h; path = EXAppLoaderProvider/EXAppLoaderProvider.h; sourceTree = ""; }; + 82CE3BE9C2A98810A0BA9083339B03EC /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; 82EBFF5DB156A96271B0169DA4006590 /* libAdIdAccessLibrary.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libAdIdAccessLibrary.a; path = Libraries/libAdIdAccessLibrary.a; sourceTree = ""; }; - 832B8E1A6E2F64F8E79302941C84EC8E /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; + 82FD8EDEE80E043B579CD9B534EB36D8 /* RCTNativeAnimatedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNativeAnimatedModule.m; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.m; sourceTree = ""; }; 833461056D9A489B4099E8A0F59BBFE7 /* GTMSessionFetcher-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GTMSessionFetcher-prefix.pch"; sourceTree = ""; }; + 8390800F60FBA1A886099DC55CFBAC50 /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; 83A553FB3363877DF058636D631A348A /* GPBUnknownField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBUnknownField.m; path = objectivec/GPBUnknownField.m; sourceTree = ""; }; - 83C4FDF340E9674860657ABE2A678B46 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTClipboard.h; sourceTree = ""; }; - 83DDE40E4A6C095F4F0FDC63A568ED24 /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; - 842C3FF7F4A33E32FD5155B0230088B3 /* RCTVibration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVibration.m; path = Libraries/Vibration/RCTVibration.m; sourceTree = ""; }; - 843565E86A42E493C0FABBFD575BDB21 /* RCTImageStoreManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageStoreManager.m; path = Libraries/Image/RCTImageStoreManager.m; sourceTree = ""; }; + 83E9CEB7D866DF2A85B921177C2029E5 /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = ""; }; + 83FDEF70282B569E0AD6717AE25BEDB0 /* RCTExceptionsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTExceptionsManager.m; sourceTree = ""; }; + 8408AD1D1943C833A6B9BBA92F7588E2 /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = ""; }; 845132CA9CF8FF398F41CE4EF0B6E878 /* CLSLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSLogging.h; path = iOS/Crashlytics.framework/Headers/CLSLogging.h; sourceTree = ""; }; 845C431A9E25DE99DB18E6F00FBDCBF8 /* GPBUnknownFieldSet_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBUnknownFieldSet_PackagePrivate.h; path = objectivec/GPBUnknownFieldSet_PackagePrivate.h; sourceTree = ""; }; - 846B0BC1DCFA4CE75C9A46E4DD21840F /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; - 84FAD81B0144E0F84CE5EC15F8DD6811 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 8548536630D340BCB1F355235223C4C4 /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; + 84673A9D171E25B61A18916CBDE5E0A7 /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; + 8475D80146EC391279E272851DB08C5C /* RCTPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPlatform.m; sourceTree = ""; }; + 8515A630B049593EC8300D7F23056A0A /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; + 853F0AA59EC46DDAB5C2D3047930FDAD /* EXConstants.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.xcconfig; sourceTree = ""; }; 8562482F04AF663EA3F27B4C0C5EAFB1 /* FIRInstanceID+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstanceID+Private.h"; path = "Firebase/InstanceID/FIRInstanceID+Private.h"; sourceTree = ""; }; - 85745FD507AED2D1B9D3002C98D5A6B6 /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; - 85902633CC54A01210B7F3ED9AD2AD5C /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; 85CB4225592A21E0AD70BE53C1742166 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = "double-conversion/utils.h"; sourceTree = ""; }; 85F0D2659222CC95642879C71B79F283 /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.h; sourceTree = ""; }; + 861280C2B3CF8C63E9DC8B90BDA09B71 /* RCTSourceCode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSourceCode.m; sourceTree = ""; }; 86144205600214BECA2C93CEDC2A76D7 /* QBCheckmarkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBCheckmarkView.h; path = QBImagePicker/QBCheckmarkView.h; sourceTree = ""; }; + 861A76F20C898312EB1E59975DFA19A8 /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; + 86509703295F22DF8DF2C71F2A7F79F9 /* RNCUIWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCUIWebViewManager.h; path = ios/RNCUIWebViewManager.h; sourceTree = ""; }; + 865DA5142F4FE11385E81F0A9A053245 /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = ""; }; + 86914CB8434B122698ED5D4DD65E55EC /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTiming.h; sourceTree = ""; }; + 86A4EA410A107C9E573E9163DC17F7C5 /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; + 86E23EB547BEDDB3C543905A655998E0 /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; 86FB658177A76D66DFF67A1F1B6430D6 /* FIRInstanceIDTokenFetchOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenFetchOperation.m; path = Firebase/InstanceID/FIRInstanceIDTokenFetchOperation.m; sourceTree = ""; }; - 8766D58086E61F45AD40DD1A14876CB7 /* RCTDataRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTDataRequestHandler.m; path = Libraries/Network/RCTDataRequestHandler.m; sourceTree = ""; }; + 875CE55CF06282B95D8CDF0CD9D1C9F8 /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = ios/RNCWKProcessPoolManager.m; sourceTree = ""; }; 88173FEAE6AA0334663679ABEB47A34D /* pb_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_encode.h; sourceTree = ""; }; - 88329F93E6419B54BC2AC291C7A23F69 /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; - 88962D292A9AFFB073AF205CCE07B1D8 /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; - 88A0B7F93E25602A3433BE4D084D56A1 /* RCTNetInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNetInfo.m; path = Libraries/Network/RCTNetInfo.m; sourceTree = ""; }; - 88ABD257F2B1603EFB1A5D2DE450E668 /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; - 89180A0D89ECDC0972DAC62514E2572A /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; - 8AA5C1AD15D45DBC4FEA32704115EA3D /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; - 8AC0FDDD94ACAF13997A378DAEE01532 /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; - 8AC8BAF14CB666BF4E4306D74439092F /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; + 8883E203DD23C2228AC3CD2526F59AD6 /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; + 890768481D4BB4205103013DE4B3640C /* YGMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMarker.h; path = yoga/YGMarker.h; sourceTree = ""; }; + 8930EA1871A91959F0E5C92D9DF064D2 /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTTextAttributes.m; path = Libraries/Text/RCTTextAttributes.m; sourceTree = ""; }; + 89624AC61EBFC2952EC0030B0BB2EFC2 /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; + 8984DDA5B5F2AD5814655EEDA282E8BD /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; + 8990471CD2E35107E0CC868C6180D057 /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; + 89EE1FAAF4DCF5544AB933003EE1A536 /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; + 8A033047767B88539F3E8AF2816A1AD6 /* RCTWebSocketModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketModule.m; path = Libraries/WebSocket/RCTWebSocketModule.m; sourceTree = ""; }; + 8A8B63C3C3E9B008F60DB8D49B691793 /* UMConstantsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.xcconfig; sourceTree = ""; }; 8AF2990E98853FB180EF62E257CA5D5D /* FIRBundleUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRBundleUtil.h; path = Firebase/Core/Private/FIRBundleUtil.h; sourceTree = ""; }; 8AF2CE3186BE637555516FB742354EB9 /* GPBExtensionRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBExtensionRegistry.h; path = objectivec/GPBExtensionRegistry.h; sourceTree = ""; }; - 8B6D9FC52E185D3493B40AB6B84A444F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 8B2084456026E29FED9ACAAC4E6EF5B8 /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; 8B8A65EF6D756E78D1E16ACF41C31AEB /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = QBImagePicker/ja.lproj; sourceTree = ""; }; + 8B8F0579A9CF59FFC4F5F3CC25D6A8C2 /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; 8B96A3E403D29A41E063CF1EB4EA6B2D /* FIRInstanceIDURLQueryItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDURLQueryItem.m; path = Firebase/InstanceID/FIRInstanceIDURLQueryItem.m; sourceTree = ""; }; + 8B9B3EC77A21A5D0EED4C221CD41A02D /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; + 8BCF8B3BD0DED1FA86AE3ACC6668BCEF /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; + 8BF24D990749E34D68683398AAF7356B /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; 8C0384F4A1B46D20CEA298035E7C5855 /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize.cc; path = src/symbolize.cc; sourceTree = ""; }; 8C12D44C3342E3DCF923AFC75D90DFC1 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = QBImagePicker/en.lproj; sourceTree = ""; }; - 8C8FFE0DBED1557E36AC1665664FD90B /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; - 8D7F615EA22B2EDD990FD020A8F087DA /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; - 8DD6043FA44409640ED64BBB5F5D3B4F /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = Libraries/Image/RCTImageEditingManager.h; sourceTree = ""; }; - 8E0D575A7564B76C5C6283AE37A01B7B /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; - 8E31F662C8F96AA582CFCC08E6B734DD /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; + 8C1E45D949FD20EBD8D335042E186B31 /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; + 8C9C71EF4A7738982BF86FA08C9B46E9 /* EXAppLoaderProvider.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAppLoaderProvider.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8D4AB4C334CB707C56A095EFBAB9F9EA /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; + 8D9DD6BF4BA8607A46520220B791717F /* yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8DE93CAE8DACC1F333BC7400E2F633F6 /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RCTBlobManager.mm; path = Libraries/Blob/RCTBlobManager.mm; sourceTree = ""; }; + 8E051206ABB075F6063950E50411FFE4 /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; + 8E16ADD60A0F450EBE3C4DC585815576 /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = ""; }; 8E48F6ED55D527B20EADC7AFA4795485 /* cached-powers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cached-powers.h"; path = "double-conversion/cached-powers.h"; sourceTree = ""; }; 8E62079D73ED4FA523DE774809C97A9F /* RSKImageScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKImageScrollView.m; path = RSKImageCropper/RSKImageScrollView.m; sourceTree = ""; }; 8E64579CEF306EFF1F501D02D17A75B8 /* FIRInstanceIDKeyPair.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDKeyPair.h; path = Firebase/InstanceID/FIRInstanceIDKeyPair.h; sourceTree = ""; }; 8E840F68F5A28B3739B3B51B8661A51C /* GPBCodedOutputStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBCodedOutputStream.h; path = objectivec/GPBCodedOutputStream.h; sourceTree = ""; }; - 8E978770765163316D42C84E58E53625 /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; 8EAABB04C2CF955ECC9E123EE5FB00E5 /* json.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json.cpp; path = folly/json.cpp; sourceTree = ""; }; - 8EBCD344B51ED552C4F099F4C5B9A5FE /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; - 8F5408D24CE01EBCD750F595D4CB75F2 /* RCTAsyncLocalStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAsyncLocalStorage.m; sourceTree = ""; }; - 8F6AE941EB53F28371BE6142E0C79641 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 8FEA6FA7E997C456667ABDF364054316 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; - 90C00B4F2EE07875CCAA480D8DA60642 /* RCTRedBox.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBox.m; sourceTree = ""; }; - 91A35AD1F7E5AB5426953BBB211E62FD /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; - 91B82FBADC13C0319F80CC629FFB10E1 /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; + 8FB5AABC3E6A30B71EFA1A6B0ECBC64D /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; + 8FC389D054A6997C92405D2AC6F438F0 /* RNScreens.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.xcconfig; sourceTree = ""; }; + 90017BDF5F3E8258C920A782FE651D9C /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; + 91D6B80003A5706ACFDB76031BFCFFEC /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; + 91F39668AF756560749F9DE2E9F4CFB0 /* libRNImageCropPicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNImageCropPicker.a; path = libRNImageCropPicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; 91FFC3ACA796AF71C4AB51C4D5637080 /* GTMSessionFetcherLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcherLogging.h; path = Source/GTMSessionFetcherLogging.h; sourceTree = ""; }; 92539DBA7C237CC37CC174B30BE17026 /* QBVideoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIconView.m; path = QBImagePicker/QBVideoIconView.m; sourceTree = ""; }; - 92758D17E5BBA349A51A2DCB4BBDBEF5 /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; + 927C6F78FA4B889D65F347F1717D8FF9 /* libGoogleToolboxForMac.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleToolboxForMac.a; path = libGoogleToolboxForMac.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 92AA2D9022858B9F372E49F12B5399D3 /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; + 92C413D2D469A1E69513BAE2B8AA46A8 /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; 92D0C869550966421DB4CB3F899284E3 /* QBAlbumsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumsViewController.h; path = QBImagePicker/QBAlbumsViewController.h; sourceTree = ""; }; - 92EA56C94D4D81CB6F8E2DC19B0144AF /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; - 92F7EE09869EE82AEF4C8BBF75990045 /* react-native-splash-screen.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-splash-screen.xcconfig"; sourceTree = ""; }; + 92EDC33D7727A27A07067AF93A154505 /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; 931E1E88664BF29C0559B61CDF1BD5BA /* RSKImageCropper.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RSKImageCropper.xcconfig; sourceTree = ""; }; - 93416D7D0668795471B3617499D61693 /* libRNImageCropPicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNImageCropPicker.a; path = libRNImageCropPicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 9420F602F4192D15D8FA1069CC31E68F /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; - 94A6FA416A7085E787E8E7F4E4A43A6C /* RCTWKWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWKWebView.h; sourceTree = ""; }; + 933C11092D1BCB41F043B75A28B9C392 /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; + 9509580F090F5D588689A614E382A989 /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; + 9593AC47A53CEBCB45FCCB6B798CC003 /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; + 959D3D5ED656E8189AA0BA11B714B932 /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = Libraries/Image/RCTImageEditingManager.h; sourceTree = ""; }; 95C15A4BF3BF113D8E6F2239D5AFA0D3 /* GoogleToolboxForMac.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleToolboxForMac.xcconfig; sourceTree = ""; }; - 95C5175F642E3D1EE1E95C61F934D79D /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 9616301F880082043C0C18BB7E928691 /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; 961E5CFB6EF6E98C98144578CDA78057 /* GTMSessionFetcherService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionFetcherService.m; path = Source/GTMSessionFetcherService.m; sourceTree = ""; }; 9632C230C1B82662D3DAB3FAF6426F38 /* GPBWellKnownTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBWellKnownTypes.h; path = objectivec/GPBWellKnownTypes.h; sourceTree = ""; }; - 9689BF2F45F68F2EA5605017D2D9FDEE /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; - 96A259CA1DAC0597321390526E85E986 /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; - 971F9752A09CE23AA8C45D71EE907196 /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; + 963F4E117AFD59E635255D08AFCC1269 /* 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; }; 974368B8E9D0826E48E7F274531DCB6B /* glog-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "glog-prefix.pch"; sourceTree = ""; }; - 97533031D920B024584DF79D921B4EEF /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; 975D4AA90560D485466B4A51B23DE27F /* FIRInstanceIDDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDDefines.h; path = Firebase/InstanceID/FIRInstanceIDDefines.h; sourceTree = ""; }; - 97869FB3CA0DCFB0FD76418677CA0467 /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; + 97B391EFB99B208776049CE4F698A6EE /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; + 97EF9E601C86950652C2E2679BB15036 /* RCTSettingsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSettingsManager.m; path = Libraries/Settings/RCTSettingsManager.m; sourceTree = ""; }; + 98597F8A04524E32537B05C16DA9F737 /* RCTImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageViewManager.m; path = Libraries/Image/RCTImageViewManager.m; sourceTree = ""; }; + 9872B60E591CEA17C94DC08622C9AB69 /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; 98A65BC0BF8190887897FA8466E7C946 /* FIRInstanceIDTokenManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenManager.h; path = Firebase/InstanceID/FIRInstanceIDTokenManager.h; sourceTree = ""; }; - 9915834E233E19E5AE79248C9DEB5CFE /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; + 99D25A80342253BDD1D06841437F18E7 /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; + 99F03A190FE8C0B6B52D4E6DF67D34B4 /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; + 9A0A14401AFDBA15904379B395E424AF /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageBlurUtils.m; path = Libraries/Image/RCTImageBlurUtils.m; sourceTree = ""; }; + 9A857E144D09F66372318D1BEEC6A7F3 /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; 9AB317F0CFE633918FE469302716CA49 /* Assume.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Assume.cpp; path = folly/lang/Assume.cpp; sourceTree = ""; }; + 9ABC2DFA968A5D007F4E79098D6D7061 /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; 9B6EB8ABBF4DBB75EEAE28A420846B0D /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = src/glog/raw_logging.h; sourceTree = ""; }; - 9B7D8EB6DE4A88212952A63A64F3F6B7 /* RNCWKWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKWebViewManager.h; path = ios/RNCWKWebViewManager.h; sourceTree = ""; }; - 9C9703086F9474B7AF28244A6A1FA38C /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; - 9CA136F385C2D0C0B763BA969DDC9469 /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; - 9CF1F7C4EAA5D166BEF179B226BE8A33 /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; + 9B9A5C55086D34836B48AFA0CA71B9E4 /* RCTI18nManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nManager.m; sourceTree = ""; }; + 9C72A72218B45C82168CC078F45FBA31 /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; + 9C762CA4B6D919BA67DC6E63E8DD501C /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; + 9C7DAAF43C50099B3C7817838C20219C /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; + 9CBA80707BE987E6F15EB97A130FA46A /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; + 9D3E20FDB85B0DEE0046C9D4D938B4D1 /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; 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; }; 9D9623D4DB3EC29B6AD964E55373B73D /* FIRInstanceIDKeychain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDKeychain.h; path = Firebase/InstanceID/FIRInstanceIDKeychain.h; sourceTree = ""; }; - 9DCEB2A0F51BCB15DF22F9D5E25D9320 /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; 9DDBA0C893A828F996D54E54B9E0B132 /* GTMSessionFetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionFetcher.m; path = Source/GTMSessionFetcher.m; sourceTree = ""; }; - 9DF93E70A2B4F1C3F8149CEDB037F8B0 /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; + 9E704678D93EDB36E91F878769E0DAEA /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 9E7C063D5627A21993710F970491FE2F /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; + 9E8E65A7260F353FC344F1F63B1AF4B8 /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; 9E93B22E06F3F818C0549A563FA597AC /* Format.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Format.cpp; path = folly/Format.cpp; sourceTree = ""; }; - 9EC78B540F6A393F0015F5A6E08B12C9 /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; 9ECC8E411E019FCD2AF6653ECBB8AEEC /* GULLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULLogger.m; path = GoogleUtilities/Logger/GULLogger.m; sourceTree = ""; }; - 9F1EA804D6913AE580E3FBFCEBA6618C /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; 9F2B2C4D4A5F2B2E0F49A001AFFFA329 /* FIRInstanceIDUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDUtilities.m; path = Firebase/InstanceID/FIRInstanceIDUtilities.m; sourceTree = ""; }; + 9FC2FCFD1DA601CD1C5AB6EFD428FE0E /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; + 9FC7C49B5EC24D755DAB9E7A7FAC4BD2 /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9FF181FB6116A9CA2DBFC3D40F5EC124 /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = ""; }; A00EC29B08CF617E218E21BB30A22296 /* Fabric.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Fabric.xcconfig; sourceTree = ""; }; + A0171836FA7529CDB139795543E259CF /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; A044E0132DBBFC186CC1967069B89DDA /* nanopb.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.xcconfig; sourceTree = ""; }; - A05B3B53971D89846CBF9E89E50C6122 /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; A0682B4FACC89766A12837374BA1E199 /* GPBExtensionRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBExtensionRegistry.m; path = objectivec/GPBExtensionRegistry.m; sourceTree = ""; }; + A0AFB1D34B4D21BEDE901C5F68BE99AA /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; A0FC4A4263889C7BB58FCA1914D25763 /* GPBMessage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBMessage.m; path = objectivec/GPBMessage.m; sourceTree = ""; }; - A108628A31B8479324DFAEC6E8F61FA6 /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; + A11AA2E3D919A6A6A302F41200C8D436 /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; + A14A6093EFD30BB027DD8CCF002590BD /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; + A16725C9C69BFABB641B5E69D2D2F1F9 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + A17A483EC0782C41753346F48CC8F846 /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; + A1B8F617F6F6398F507E734B0A6D7B1A /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; + A1C54CFB4BC87BD14B1E46FB850CF663 /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; A1C878EFBC94ECAB6800F32C740907CE /* Empty.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Empty.pbobjc.m; path = objectivec/google/protobuf/Empty.pbobjc.m; sourceTree = ""; }; + A1DAFF1CB49725B5C5664208484F7575 /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; + A1E44785E33C80F42A08C18B6461644E /* libreact-native-splash-screen.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-splash-screen.a"; path = "libreact-native-splash-screen.a"; sourceTree = BUILT_PRODUCTS_DIR; }; A1FF690A9214A1760165C26D7E1E7966 /* GoogleUtilities-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleUtilities-prefix.pch"; sourceTree = ""; }; A20CADD4552AE7665DC8A5AC2905BE9B /* FIRIMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRIMessageCode.h; path = Firebase/InstanceID/FIRIMessageCode.h; sourceTree = ""; }; - A21939864FD5B3530665F716DF17D327 /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; A2412265E936E16EF8CAFEA80AC61815 /* GULLoggerCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerCodes.h; path = GoogleUtilities/Common/GULLoggerCodes.h; sourceTree = ""; }; - A246883750E9A67D31C67E4876965109 /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; - A2759BD8D718D95515C38FA2B1ECA63C /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; + A25E946B1A5EC1622D8EF647D8116506 /* EXLocationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocationRequester.h; path = EXPermissions/EXLocationRequester.h; sourceTree = ""; }; A2B5536C4DF71588F097DDAB97B554F5 /* bignum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bignum.h; path = "double-conversion/bignum.h"; sourceTree = ""; }; - A31939181FABC5EDC141004A4FE08FF2 /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; + A2D240154C82D5836FD6D6B448742EB5 /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; + A2F1F6E8D03F94929CAA7EED68972C71 /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; + A3080545228A95E4469A6F7DC9CEECF3 /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReact.a; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; }; A340F0B85A7A004E4716C810327DCCF2 /* FIRAnalyticsConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAnalyticsConfiguration.m; path = Firebase/Core/FIRAnalyticsConfiguration.m; sourceTree = ""; }; - A3E624CA874BB24584DE94947410F9B9 /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; + A3B8971C13BE096BD4B029E1ED7B8D18 /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; + A3DF10A90A8AFB815D52BE7790564C94 /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = Libraries/WebSocket/RCTWebSocketExecutor.h; sourceTree = ""; }; + A3ECC76CBD02C2CF86DF71E8A9CB5811 /* RCTRedBox.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBox.m; sourceTree = ""; }; A41B7BFEABEB2A6449351B5C578A54D3 /* FIRInstanceIDCheckinPreferences+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstanceIDCheckinPreferences+Internal.m"; path = "Firebase/InstanceID/FIRInstanceIDCheckinPreferences+Internal.m"; sourceTree = ""; }; - A43D9F7E97531854A744062EEE491E7F /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; - A452DDB9FD10DDAB60D3F04FA2DD6BAF /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; - A4C4E18A3498F28846447A0E2C406B18 /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; + A420CE93E288815D2EA63F05607EDD84 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + A489FE30B53D57A32E6E18B2FB051F08 /* EXSystemBrightnessRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXSystemBrightnessRequester.m; path = EXPermissions/EXSystemBrightnessRequester.m; sourceTree = ""; }; + A4C0A5E6EA49890413C2EA9B91E26CF8 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; A4D300827816D1923359DA1557AB9D0D /* FIRAnalyticsConnector.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FIRAnalyticsConnector.framework; path = Frameworks/FIRAnalyticsConnector.framework; sourceTree = ""; }; - A4E337581C3EFF579376133751882AD0 /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; A4F2AA49E1687DFB015A34423BE87536 /* RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageCropper.h; path = RSKImageCropper/RSKImageCropper.h; sourceTree = ""; }; + A5220460B9E0C8EC0EE71478F8DEA1B2 /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; + A5412F615041F9382574E76648FCA7AC /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageUtils.m; path = Libraries/Image/RCTImageUtils.m; sourceTree = ""; }; + A541BAD8E7E67A7548179FAFA3A18FED /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; A56F7E48750D68E7167D657A3975D705 /* GULReachabilityChecker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityChecker.h; path = GoogleUtilities/Reachability/Private/GULReachabilityChecker.h; sourceTree = ""; }; + A5ED5025A1B864099D223F29D34FA949 /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; + A60F8928E55BB954CA87F79125F524D8 /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; A61E25AA5729C8205A791AC4A5C1BA76 /* SourceContext.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SourceContext.pbobjc.m; path = objectivec/google/protobuf/SourceContext.pbobjc.m; sourceTree = ""; }; + A6494DF46041AB0F501D46A6D0F9F323 /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; + A67810017C226A90912C399D17D6F3F8 /* EXAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppLoaderInterface.h; sourceTree = ""; }; A67A93040C93F21781D539C991CCEE83 /* pb_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_encode.c; sourceTree = ""; }; + A6A138D6667BD4A9D04D2E36F1AEBCEC /* libRNScreens.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNScreens.a; path = libRNScreens.a; sourceTree = BUILT_PRODUCTS_DIR; }; + A6A62E84F3E5F9AF4A3F1E9E0C488173 /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; A6AF7CBCB46B2ECD4D4D365D894F5455 /* FIRInstanceIDBackupExcludedPlist.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDBackupExcludedPlist.h; path = Firebase/InstanceID/FIRInstanceIDBackupExcludedPlist.h; sourceTree = ""; }; + A6D5AB497DB09574121258BD741DCE44 /* RCTImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageView.m; path = Libraries/Image/RCTImageView.m; sourceTree = ""; }; A6E9647C4980516FAEF729C99A4557DF /* FIRInstanceID+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstanceID+Testing.h"; path = "Firebase/InstanceID/FIRInstanceID+Testing.h"; sourceTree = ""; }; - A6EFB033B9C1FA21E2029E9D29D92F4C /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; - A7519B970EE61F43835C92AE2F9B5C71 /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; + A7453F981D19DA81AD4F168DD9F75D4C /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RCTNetworking.mm; path = Libraries/Network/RCTNetworking.mm; sourceTree = ""; }; + A775E87004A6309552AFBB7103377784 /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; + A7B78D23D17C806D9968287D113B87CD /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; A7EBD2199C28CAF29EAE45BF9FAF9209 /* Pods-RocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RocketChatRN-resources.sh"; sourceTree = ""; }; A7FB755B6494E4CBB67B357467B03FBB /* FIRLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRLogger.m; path = Firebase/Core/FIRLogger.m; sourceTree = ""; }; - A806266B59579741AC7963B2FBFECB97 /* RCTAlertManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAlertManager.m; sourceTree = ""; }; - A82DD3844C4A552F3FF128E2A7A93145 /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; - A852BD2371CC7B0A381314B27FCEF09A /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - A862C948B544E7139FF0EC0CC66C3811 /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A812188F61A3540CFEEF68F3A03BEA99 /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; + A869DF656102841DE5FC7A155C9DEF86 /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; + A88ED29C4AF8C15E2FB0F5DBA7EC3575 /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTExceptionsManager.h; sourceTree = ""; }; A89317E6AEB35292207359B477B968AD /* DoubleConversion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DoubleConversion-prefix.pch"; sourceTree = ""; }; - A89D794D717196B5AF2862CC5CF8309C /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; - A8BD45FC504CE22F0CDFE8BA1638CFAA /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; - A90C8DF4D84A81BBC40C893FF10DB5A2 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; A9209D5A37DA753BC42A9DD8365F66BF /* FIRInstanceIDVersionUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDVersionUtilities.m; path = Firebase/InstanceID/FIRInstanceIDVersionUtilities.m; sourceTree = ""; }; - A99F7986D0F96BA226868846D462E69C /* 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; }; - A9C9647041EE11DDCEE94AE44A3D2044 /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; + A9362FDC2C11BC5A7DCEEE60E57E97F0 /* libRNDeviceInfo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDeviceInfo.a; path = libRNDeviceInfo.a; sourceTree = BUILT_PRODUCTS_DIR; }; + A94865D128AFB2121A462881D305DF27 /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A98AAEA3C59249FD17A9A8561E1EB090 /* QBImagePicker.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = QBImagePicker.bundle; path = "QBImagePickerController-QBImagePicker.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; AA015B42B94D08FF3C4C36EA989F13DE /* FIRInstanceIDTokenInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenInfo.h; path = Firebase/InstanceID/FIRInstanceIDTokenInfo.h; sourceTree = ""; }; - AA780F3BDB3F84B14129F31E0319A9C0 /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageBlurUtils.m; path = Libraries/Image/RCTImageBlurUtils.m; sourceTree = ""; }; - AABB17C20430BD6318C12265B4578B93 /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; - AAC9BA903D7ED9EAB3E25E84983F4AF9 /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; + AA2CF3B2F1588C1DB7295D9F42569C3D /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; + AABE5795C8CFD060112F0AF07E40FD00 /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; + AADE2AC2C234CDD2A6570367ABDCDB82 /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; + AB174847F5DF1433055028211D911C98 /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; + AB1CD2CBBAEFDE60A270962351881C23 /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; + AB54E8A35C474CB06B95C6EC95587B0B /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; AB5E8E6109691A6353CB4DD1B46E0BA2 /* GULAppEnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppEnvironmentUtil.m; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.m; sourceTree = ""; }; + AB684485905C5356E0F555DECD9A36E5 /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; + ABB81D84C308F077BE43A07F0E451DC8 /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; + ABBA3F4633CFF211335B3001AD6842B0 /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAppState.h; sourceTree = ""; }; ABD254E522C84D25A9CACB00D98DED09 /* FIRLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoggerLevel.h; path = Firebase/Core/Public/FIRLoggerLevel.h; sourceTree = ""; }; - AC335269B70E9348EEF88C2C5FF92C05 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; AC7124E4822DB66558352E10DD54CBFA /* GTMSessionFetcher.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GTMSessionFetcher.xcconfig; sourceTree = ""; }; - AC722EAC71B535A1F4041C2E6A53A369 /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; AC827C8C29D1F41334B1DB02F51E1472 /* GULOriginalIMPConvenienceMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULOriginalIMPConvenienceMacros.h; path = GoogleUtilities/MethodSwizzler/Private/GULOriginalIMPConvenienceMacros.h; sourceTree = ""; }; - AC8434B866014A6EFB365E99B4784657 /* yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = yoga.xcconfig; sourceTree = ""; }; - AD13383F285B841DD8C7CC1CB6631D5D /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; - AD282D65E52C1D53152FFC7571A92AEF /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; - AD454D317818A36E921D2785E421BBB6 /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; - AD79AE7BA462FC2F5BE8E08437A62DCA /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; - ADC028AA5985D4FFBBC05DF915043A20 /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; + ACB20375414EC0E7663C9E6433ACC179 /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; + ACCEB0B1E6EA0C01E1B76B360B6B186D /* React-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-dummy.m"; sourceTree = ""; }; + AD38BACBCDE0C87546CEC1DA964E9C4F /* EXCalendarRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCalendarRequester.h; path = EXPermissions/EXCalendarRequester.h; sourceTree = ""; }; + ADB9D45D21B1B6F8DDF6B96BE1954BD1 /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; + ADC79C61F76473222399FCDB45D139BE /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; + ADD07E70D6E7D8B979279C2A9A64CC74 /* EXContactsRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXContactsRequester.h; path = EXPermissions/EXContactsRequester.h; sourceTree = ""; }; ADD49CF465CC1C1013069EDC541177B8 /* double-conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "double-conversion.h"; path = "double-conversion/double-conversion.h"; sourceTree = ""; }; - AE03559C371F1BFBFBF509BC8D9CBFCE /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; - AE426B2446CAC54A089CC5CC8D32FE73 /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; AE4BEC52BB9C31042CC4495A10E43DB1 /* FIRInstanceIDTokenOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenOperation.m; path = Firebase/InstanceID/FIRInstanceIDTokenOperation.m; sourceTree = ""; }; - AEEEE929E8E64B51C416205F1CDC2C92 /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; - AF36203CEB5253762739AF9551301637 /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; + AEBB15080CF9F6A85B133DBE235F82CD /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; + AEC429822D444BD52DB663F05C2026BB /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; + AFBE8E4364487DB286141F973FBFDC4C /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; + AFD5D59A2CEEA5755040FDCF03184CB8 /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; + B03A39B9EB5100925384D28FC7D387A9 /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; + B061CC568BD4491B46CDE494F966C658 /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; + B06A8810673DECD6FFE160AF6D8024E9 /* RCTDataRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTDataRequestHandler.m; path = Libraries/Network/RCTDataRequestHandler.m; sourceTree = ""; }; B0EBF1B3694309DFDBB34914A5D348FE /* FIRAnalyticsConfiguration+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRAnalyticsConfiguration+Internal.h"; path = "Firebase/Core/Private/FIRAnalyticsConfiguration+Internal.h"; sourceTree = ""; }; + B14901E39FDB13489A437EEC07959233 /* EXAppLoaderProvider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppLoaderProvider.xcconfig; sourceTree = ""; }; + B18166883EDCF1ADC8C1AA9F74A27D59 /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; B18D92F9CCA81F237800EF33FA92CB4D /* FIRInstanceIDCheckinPreferences+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstanceIDCheckinPreferences+Internal.h"; path = "Firebase/InstanceID/FIRInstanceIDCheckinPreferences+Internal.h"; sourceTree = ""; }; B18FD72A3EB5A96181A5E65A20158C48 /* FIRErrorCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrorCode.h; path = Firebase/Core/Private/FIRErrorCode.h; sourceTree = ""; }; - B19B41788B14BDF80A2D05A4E9B3E91B /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; + B1BBBEAB63B18E68BE21C18D6DE3890D /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; B20021D31A6BFA31F1E5630A69EA4CA4 /* GoogleToolboxForMac-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleToolboxForMac-prefix.pch"; sourceTree = ""; }; B2CCC1A2B854A5AE761220034F5EFBF7 /* FirebaseAnalytics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.xcconfig; sourceTree = ""; }; - B37DC4F25BE8296E9E979BA00BBDE220 /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; B3FAFB7BCCD5C53538A4E9ED0729FF9D /* GTMSessionUploadFetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionUploadFetcher.m; path = Source/GTMSessionUploadFetcher.m; sourceTree = ""; }; + B406D0536C0F94FE58D880726B336EBA /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; + B41A54F634DAD80956CC13ADE0E55364 /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; B465E86E382F51387AC798D90E619E49 /* GULMutableDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULMutableDictionary.m; path = GoogleUtilities/Network/GULMutableDictionary.m; sourceTree = ""; }; B48203EA174ED2282FC881C38A2BA481 /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = QBImagePicker/de.lproj; sourceTree = ""; }; + B4B78C3D5579EF0029157E0361A173E2 /* RNCWKWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKWebView.h; path = ios/RNCWKWebView.h; sourceTree = ""; }; B4EDA879A5FBC25007AEDD3699E0135E /* RSKImageCropViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKImageCropViewController.m; path = RSKImageCropper/RSKImageCropViewController.m; sourceTree = ""; }; B54AEDB05E5080BC1BBE0209C846D048 /* FIRInstanceIDAuthKeyChain.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDAuthKeyChain.m; path = Firebase/InstanceID/FIRInstanceIDAuthKeyChain.m; sourceTree = ""; }; + B578DF328A96228F19A957411F5615C6 /* RNCUIWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCUIWebView.m; path = ios/RNCUIWebView.m; sourceTree = ""; }; + B59300921F101D78E90F40754963144A /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; + B59C809BF2F7DBD59CE4CA83A46F529F /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; + B5BA2F2350838CA4E5B1CF57940E2E50 /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; B6B6FD9F05867E267A730BD9C007D221 /* GTMNSData+zlib.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GTMNSData+zlib.m"; path = "Foundation/GTMNSData+zlib.m"; sourceTree = ""; }; B6BD6BC1B1EA23C048BA0ED9D296238E /* FIRInstanceIDTokenDeleteOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenDeleteOperation.m; path = Firebase/InstanceID/FIRInstanceIDTokenDeleteOperation.m; sourceTree = ""; }; B7076D6BE9B38FC1611B4AF166C11FB5 /* GULNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetwork.h; path = GoogleUtilities/Network/Private/GULNetwork.h; sourceTree = ""; }; B70DF0D054083CCB1DE9AC9B8D3926B0 /* FIRErrors.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRErrors.m; path = Firebase/Core/FIRErrors.m; sourceTree = ""; }; - B7239BAAA5781F25CC6387D9FF62585E /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; - B76A6FE8AC6F9DBEAE28E16B4BED4BA1 /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; - B7CD70A4A27BBF635DC35F118B8304C2 /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; + B7876320ADC94AF2FD72D465EF390BE8 /* EXLocationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocationRequester.m; path = EXPermissions/EXLocationRequester.m; sourceTree = ""; }; + B826F41705F98105BAB5D991C1A9966A /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; B843F05D718A4E6A823BF7A3D02FB40D /* Unicode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Unicode.cpp; path = folly/Unicode.cpp; sourceTree = ""; }; - B8607F62E25E7C7F2A2405892F4903AC /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; + B882468DC9FF279843DB717C6102D65C /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; B8CE294D987D45655A14860086BE1365 /* GoogleAppMeasurement.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.xcconfig; sourceTree = ""; }; - B8E5708BD21BC585731D0521213DD568 /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; + B8FFFD78BF442326333A21BA8336F645 /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; + B920E0FD2B1E4B495B998EF9D7351A90 /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; B951C090165B8D26D9E040D670A5F2D9 /* GULSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSwizzler.m; path = GoogleUtilities/MethodSwizzler/GULSwizzler.m; sourceTree = ""; }; - B965F57D08AF2B023EB742B37C542A14 /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; B96E6BF56CDF4F193C79676B3893C26C /* RSKImageCropper-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RSKImageCropper-prefix.pch"; sourceTree = ""; }; - B974B72AE5003E968B46CF852FF010BA /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; - B9784AE529FB7BDFEA2E1DE579913A86 /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; - B99DCD4D7C697BD9B0313DAE26B9C926 /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = Libraries/WebSocket/RCTWebSocketExecutor.h; sourceTree = ""; }; - B9AFBBA2148B599882A3B08288790B0F /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; - B9C01DF6B4624AFC7178B572DEFD3DD3 /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; - BA32827D3B434487C45675B4A4A53FA0 /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; - BA53310A7B00B120FCF2F5B70A54DB45 /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; + B97116CCBA86C551A00CB079E6E7FE4A /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; + B9A640995D2FCDE9D952CD523363442D /* react-native-splash-screen-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-splash-screen-prefix.pch"; sourceTree = ""; }; + BA333E50386708952F772F513703C9B9 /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; BA73B2715BDBED36501431ADECCB9C33 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = Firebase/Core/Private/FIRDependency.h; sourceTree = ""; }; - BA933BD42C03E34FE684F7A8ECBD0416 /* RCTSettingsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSettingsManager.m; path = Libraries/Settings/RCTSettingsManager.m; sourceTree = ""; }; BAB0B55F0D83C13F4A93E9693F1E3CC0 /* FIRInstanceIDTokenOperation+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstanceIDTokenOperation+Private.h"; path = "Firebase/InstanceID/FIRInstanceIDTokenOperation+Private.h"; sourceTree = ""; }; - BAB1E0DB32F48B96A09B8FD4ED4A7EE5 /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; BABA188C1E6539FAC9CE54B5C817AF80 /* GPBCodedOutputStream.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBCodedOutputStream.m; path = objectivec/GPBCodedOutputStream.m; sourceTree = ""; }; - BAE630AF22C431D47F6644AAFFBC9604 /* RNCUIWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCUIWebViewManager.m; path = ios/RNCUIWebViewManager.m; sourceTree = ""; }; BB1BBCD3F64FF8BA9250E80D83F2FCB0 /* Conv.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Conv.cpp; path = folly/Conv.cpp; sourceTree = ""; }; + BB2DA4A8DD5348D6D59C643D7E6E702E /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; + BB3766A8CE178857C32BCB7E8B3D700F /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; + BB46189EBA5CE273C36DEB82232586A9 /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; BB9118D470BB9F2108A60D3ADF6C1EC3 /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = "double-conversion/strtod.h"; sourceTree = ""; }; + BBABE164CD9DB956C55005F85AAF2638 /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; BBDDC56455CE2A8EEB6FD459EDBD9EC5 /* GULSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSwizzler.h; path = GoogleUtilities/MethodSwizzler/Private/GULSwizzler.h; sourceTree = ""; }; - BBE305AD8A805D7060BD76BBB88DAB8C /* RCTTiming.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTiming.m; sourceTree = ""; }; - BC0069A3DE7B1E8EDB4663923C026F22 /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; + BC234E5A948968B681B115244EB16361 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + BC5760D35C9D6F3A44AAF25728469960 /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = ""; }; + BC6B84CA2534E44B22B79205ABE8BFE0 /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; BC93B4AE1BC99FC3489FB009672CEBC9 /* F14Table.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = F14Table.cpp; path = folly/container/detail/F14Table.cpp; sourceTree = ""; }; - BC98DA9E2630E7FAF61DF1CA6B6943BA /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; - BCE4CC278D8752E28C938077E63BBF50 /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; BD302C365DF1C82AA1668E93CD114EE4 /* ScopeGuard.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScopeGuard.cpp; path = folly/ScopeGuard.cpp; sourceTree = ""; }; BDE529E1EF6279CDF6CAD08BB2113F69 /* FIRAppAssociationRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppAssociationRegistration.h; path = Firebase/Core/Private/FIRAppAssociationRegistration.h; sourceTree = ""; }; - BDF07FC39E6601F7B934695CCD5B2E98 /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; + BDFDEC02884FE2DD0C758F1FD7AB7CC5 /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; + BE25698D891B932BB310CDD41DC4A0BF /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageShadowView.m; path = Libraries/Image/RCTImageShadowView.m; sourceTree = ""; }; BE50045174443690244903BDE53B9ED7 /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = src/glog/log_severity.h; sourceTree = ""; }; - BF4B1164D921761DE81288E44DFD0D8C /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; - BFC8035F8D26A6AB204E18F8968C10AE /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; + BE59DE4874B673F401750B92E8A6B768 /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; + BE93ACF06AC52AF4F4B253F370FCF8DD /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = ""; }; + BEA2592B226389F6BF38C361D715F7E4 /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; + BEA3100CBB34ABC8F16CC56C9BFD9F09 /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; + C00518E6C71A4912627625A9828C6EEC /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFPSGraph.h; sourceTree = ""; }; C028BB3DFE4D8493D4B9D24B9C3BFDDE /* FIRInstanceIDConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDConstants.m; path = Firebase/InstanceID/FIRInstanceIDConstants.m; sourceTree = ""; }; - C0333F929149DEC00D53D8D406DDE2A0 /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; - C1AE84829B84E3A53C3B84E1E851FA67 /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; + C05FA4694856A6436746407D5088E5F1 /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; + C073E6DF4FABD065524DAD8DF959D848 /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; + C0A545E4692C9AC24FE272C1060B8764 /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; + C12663B0A1BE3DC7E46B0E3B3F1CAC67 /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; C2549B1AC6EA7BD6F62C4E7941527711 /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = ""; }; C26FDE4600EFD11466856933697391CE /* nanopb-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "nanopb-dummy.m"; sourceTree = ""; }; - C294AAB0627EC2B8E662554D8402A277 /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; + C2925AD1DD83BDB658CD62D0443AD4FF /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; + C2C3B80B5C73E0856C34B4F9F6429AC1 /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; C352EE6E151EDC8523F4F13C165280E6 /* QBAssetsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetsViewController.h; path = QBImagePicker/QBAssetsViewController.h; sourceTree = ""; }; - C36FE24603CB81F04EEFF84979C707D3 /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; - C3CD048C174D3BD8686205CF0A73D44D /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; + C35DBDEDBB81FA3C61ADD8DDEFDF38C6 /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; + C39561B2924B88B60DEDA640062C08F6 /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = ios/RNCWKProcessPoolManager.h; sourceTree = ""; }; + C3AEE27A7C1180115661F3E0C4A9807E /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; + C3CAD29B485D97440856B22EED5D8689 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; C3D903C6F31578BB1496E10CC7660C28 /* FIRInstanceIDCheckinPreferences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinPreferences.h; path = Firebase/InstanceID/FIRInstanceIDCheckinPreferences.h; sourceTree = ""; }; - C40B4C89CFF78F20BF36885C73F904EE /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; - C477AECE714E42783E4722B303315F52 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; - C4ACBAE7040628BE0DDBF266D8AA2E3E /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; - C580D2AE368630058266B505EE2FCCAC /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; - C5B8D57D932F378F840C7B63ACDEA0DB /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; - C63C1E16ED3B5E40B1E60FA07FD5D036 /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevSettings.h; sourceTree = ""; }; - C64F870A05E1CB2F4E3295F665574EDD /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; - C65AC77721782754042C1E3C414C0861 /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; + C41A76E063EBC01EB3D96A4E1349BEBE /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + C4300B81B6D4A22BA472C9FEDFCFEC69 /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = ""; }; + C4BBC1753BB27682B145E3F0DFCA1627 /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; + C500591933180F4B64553EB9D54F0885 /* RCTImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageLoader.m; path = Libraries/Image/RCTImageLoader.m; sourceTree = ""; }; + C5FC56FC56C88A6C6F68FA3D69002A06 /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = ""; }; + C64AB32016870BDDB6B3F775E33EAFD6 /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; + C69B9FBCE99A12392A2C9854A9B82B1E /* libUMCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMCore.a; path = libUMCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C73159CB46392481F5E310B186799CEF /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; + C73CA22FC7D7F4D351C8A6B8EEF38F56 /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; + C74472574CEDDBD4B1DB4EC48F36F06C /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; C74F06CA3396E64F308DC487B0BD1373 /* UIApplication+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIApplication+RSKImageCropper.h"; path = "RSKImageCropper/UIApplication+RSKImageCropper.h"; sourceTree = ""; }; - C7A3DC78E45B6BDD173EAD696BDC0DBD /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; + C77C573A2DD346BA9DDAD9B267631E81 /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; + C7B63CE840909FCBB17155958D8928D5 /* UMReactNativeAdapter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.xcconfig; sourceTree = ""; }; + C7B99B95441DF8A95F699409C99CD4BC /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; C835B8E4E53C0605BC7F8BA70CCB892F /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = Firebase/Core/Private/FIRComponentType.h; sourceTree = ""; }; - C8458474D7DB655F7B6BBDE13EE52180 /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; - C8F6BAA71A294E7D35B8D45FE7C5ACA4 /* RCTPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPlatform.m; sourceTree = ""; }; - C901593FA1AF181CD872F135F2E38F82 /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; - C98EE7FD4EBC1A863B9E9DCFB5C7D0DE /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; - C9BABF0A639CA5B0614A3137E1D1C6B3 /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; + C8A489091C577F0FAD08E39B051506BF /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; + C9BBB08B18987CBFE0BCFA1596980CF6 /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; C9E29F269A06919AA1FD1E466BCF137C /* GoogleIDFASupport.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleIDFASupport.xcconfig; sourceTree = ""; }; - CA3CF5BEBB14D776A34700242D0055FE /* RCTClipboard.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTClipboard.m; sourceTree = ""; }; - CA7DEBB32346871ACAA2B6DBA04F1CBE /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; - CB0363440EAACEB8FC038D5E3688E767 /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; + CA1FF2E7FC3E8A101A8626919C4EBD17 /* RCTVibration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVibration.m; path = Libraries/Vibration/RCTVibration.m; sourceTree = ""; }; + CA4456B1E1B2F58C08FC5F9D80DE0E29 /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = Libraries/Image/RCTImageStoreManager.h; sourceTree = ""; }; + CA6B202915B4D395579B1952B3BF2110 /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; + CA8E21178CBB46D8947489916F8E11C9 /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; + CAF143E1E7ED92D08E3C3432190E7A9E /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; CB151BF6B6F22A525E316E9CC21FBF6C /* Pods-RocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.release.xcconfig"; sourceTree = ""; }; - CB4D11EBBA7921D0613F7CB87D156438 /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; - CB5B5B6C7D1A078C6FA74EFA5BD28636 /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; CB8724C8D4D696AD4C067B9326224A01 /* FIRInstanceIDUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDUtilities.h; path = Firebase/InstanceID/FIRInstanceIDUtilities.h; sourceTree = ""; }; - CB9D6E45415A2A72D49853A6C38D74F0 /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; + CBE5417FF500ACD4CC4316930BF7FCC0 /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = ""; }; CC02B9C0F1CEDC2E11D97AAFA570B60F /* FIRInstanceIDTokenStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenStore.m; path = Firebase/InstanceID/FIRInstanceIDTokenStore.m; sourceTree = ""; }; + CC79492F10C68D733950852842E2074E /* UMImageLoaderInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.xcconfig; sourceTree = ""; }; + CC8860461260D68400B7B8CA31F56CF9 /* libFirebaseInstanceID.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseInstanceID.a; path = libFirebaseInstanceID.a; sourceTree = BUILT_PRODUCTS_DIR; }; CC9DFE33B02231AD63A6E8D6916F6E68 /* FIRInstanceIDVersionUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDVersionUtilities.h; path = Firebase/InstanceID/FIRInstanceIDVersionUtilities.h; sourceTree = ""; }; - CCCDA5F46F2F7586F62132765BFD28F2 /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTiming.h; sourceTree = ""; }; - CDA013F46CC956A8CFA760A4012ADECF /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; + CCAAE8B347C2D621F490FBE4518C20FC /* EXAppLoaderProvider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAppLoaderProvider-dummy.m"; sourceTree = ""; }; CDE4FA8468D09611489BAA01EE305FB9 /* FieldMask.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FieldMask.pbobjc.h; path = objectivec/google/protobuf/FieldMask.pbobjc.h; sourceTree = ""; }; + CDFEBAFBBF57A1A67A017605C9C3A8E0 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; + CE4E3BA81F913734B943B0D79FD94C10 /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; CE8C6D11CF7E5AF31E2AE0306111F7F1 /* FIRInstanceIDConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDConstants.h; path = Firebase/InstanceID/FIRInstanceIDConstants.h; sourceTree = ""; }; + CE94DB90F3F027BA25F6443E48EF5AFD /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; CEC87000B140231CF19A20D1E01F05BE /* Fabric.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Fabric.framework; path = iOS/Fabric.framework; sourceTree = ""; }; CF2AE1EC0D98FF4B93D51D644A2C7ABF /* Timestamp.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Timestamp.pbobjc.h; path = objectivec/google/protobuf/Timestamp.pbobjc.h; sourceTree = ""; }; - CF3E4054780F65CFE5176ADF472D2710 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - D053EAC28B31536499CB2F1195351D88 /* React-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-prefix.pch"; sourceTree = ""; }; - D057DBCC4996617F1AE42C3AA200BE73 /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; + CF4EF6F5BD53B68956DEDF03719836B1 /* RCTNetworkTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNetworkTask.m; path = Libraries/Network/RCTNetworkTask.m; sourceTree = ""; }; + CF67D3FE39FA412FCC6C41BA6D9C89D1 /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; + CFB16878581A4B3157231362D33F0A91 /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; + CFB5FE9EA8E692B894E4412C93E17CAD /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; + D01284F7E12F47F4E20C402D5BF5E354 /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; + D041BAFA4EFFB3C2CB0CCE6501CF7C5E /* EXAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppRecordInterface.h; sourceTree = ""; }; D08A5D686D77F6A0E33952D2AD2EA06C /* GPBCodedInputStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBCodedInputStream.h; path = objectivec/GPBCodedInputStream.h; sourceTree = ""; }; - D10DCAC9A5B6E3F4ABBCC381201E4C60 /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; - D143C57019EAA61585EDB9AA33F2BF85 /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; + D129D697F4FC4E936F7FA519459A2E7A /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; + D1389CC8317EF3ABA0909B12DC6330CB /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; D16AF918A382DA5D5F9D4257DDECA4C6 /* GULNSData+zlib.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GULNSData+zlib.m"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.m"; sourceTree = ""; }; + D1964C730505D58B3A5B8D82FEF01797 /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; D19E2F79B0006C6B374700D05DB3D121 /* FirebaseInstanceID-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseInstanceID-dummy.m"; sourceTree = ""; }; - D1B2A9C0BA53D97B5E93E7E303F76EA5 /* 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; }; + D1C2282D9D0863052F8948EAF4084FDB /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; D1D409B472D80F2EB4C71563990FC72D /* pb_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_common.h; sourceTree = ""; }; - D283417C5EFC3F68C8C7F37AFCD06311 /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; - D2E5E959768C3B5743A5DC730AF52215 /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; + D28151816F39FDAB286C1B086A6D5441 /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; + D30371668EC500B8F2C42216B72C416E /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; D31213551926432FA2202EC56108DB24 /* bignum-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "bignum-dtoa.cc"; path = "double-conversion/bignum-dtoa.cc"; sourceTree = ""; }; - D313798036D13FA8D9191D0E355CC2AB /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; D318286797895EE8DE84CE55BFFE541F /* GPBUnknownFieldSet.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBUnknownFieldSet.m; path = objectivec/GPBUnknownFieldSet.m; sourceTree = ""; }; - D32303C572C6448B447144C125C1BD66 /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; D3697C3A80F55A1372F7514127AAE01A /* glog.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = glog.xcconfig; sourceTree = ""; }; + D3784D01BC906127A80BF239C65CC032 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; D37C4A1FC44FCFDA1CA04CE747500EC8 /* FIRInstanceIDTokenManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenManager.m; path = Firebase/InstanceID/FIRInstanceIDTokenManager.m; sourceTree = ""; }; D38A9993CEE1E3C4E749510217E641A6 /* QBImagePickerController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "QBImagePickerController-dummy.m"; sourceTree = ""; }; + D3AE10F5623CCEB6D48B913E269F417A /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = ""; }; D3BF9F21DC67AEF716304B2F5468563F /* CGGeometry+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CGGeometry+RSKImageCropper.h"; path = "RSKImageCropper/CGGeometry+RSKImageCropper.h"; sourceTree = ""; }; D3D856CFC6310D66AC7461C87AFE11D4 /* GPBDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBDescriptor.m; path = objectivec/GPBDescriptor.m; sourceTree = ""; }; D3D924AF6D72DD9606771699E3E1312A /* double-conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "double-conversion.cc"; path = "double-conversion/double-conversion.cc"; sourceTree = ""; }; D3DBBC941A09E991D876BEC8E8857BC8 /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "QBImagePicker/zh-Hans.lproj"; sourceTree = ""; }; - D43303790384C3503AE4C648FE92A719 /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; - D461093CFA26AEC4CCC4CDE780696857 /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; D4640D3CB0EE847C77BD022CCBE88A4D /* dynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = dynamic.cpp; path = folly/dynamic.cpp; sourceTree = ""; }; - D4C5EEE50A5951E21B340E4F9133D4BC /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; + D4B7C2DF546FD58C9CB0C47CBBACEE56 /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; D4D269F2C9249EB3191A02DBF3D4391C /* FIRInstanceIDKeyPairUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDKeyPairUtilities.h; path = Firebase/InstanceID/FIRInstanceIDKeyPairUtilities.h; sourceTree = ""; }; - D4F8069389F02DDA8E79FD25A302ED28 /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; D5405FEBAC392B770AD99B5AC7687E55 /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = src/raw_logging.cc; sourceTree = ""; }; + D58294BC4749BD8D97E9233A847499D4 /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; D5C124EA6E1C40165CF089F6400F47EF /* UIImage+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+RSKImageCropper.m"; path = "RSKImageCropper/UIImage+RSKImageCropper.m"; sourceTree = ""; }; D5E3DCD7AD1C184DF5044B42DDE421E4 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = Firebase/Core/Private/FIRComponentContainer.h; sourceTree = ""; }; + D5EB47023428BD1409A7AB659F7D00D4 /* yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "yoga-prefix.pch"; sourceTree = ""; }; D64988EA80D874BD49F788383ACA30DC /* FIRInstanceIDCheckinStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinStore.h; path = Firebase/InstanceID/FIRInstanceIDCheckinStore.h; sourceTree = ""; }; - D65C86424592597E866022B14EC016BA /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; - D6A31C7A90816AB318C7AFE34C309BB4 /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; - D6A656960D32278A8A019CFB56A1B509 /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; - D6BF93B827ABA467D63993F6147C2B88 /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; + D65AD727225BB92275B31AE45AD57991 /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; + D6CB1FB65698C9122CBB88BD58A086AE /* RCTPerfMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerfMonitor.m; sourceTree = ""; }; D6CE75889A37BBAFA6619B2E2D0A9152 /* GoogleUtilities.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.xcconfig; sourceTree = ""; }; - D6F3DDD9683FE9CCBB17BC144A3DA4BA /* fishhook.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fishhook.c; path = Libraries/fishhook/fishhook.c; sourceTree = ""; }; + D6F669B30089DD5744D83D5C9F8F4F0C /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; D7001F9CBB5C587EE6303E5F0CB948FE /* QBAssetsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetsViewController.m; path = QBImagePicker/QBAssetsViewController.m; sourceTree = ""; }; - D768036BAB75B2CD87E942691547D629 /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; + D7ABA60C4B83F154A7A8AB92D1BF680D /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; D7D23CD108787BFAAD18B7070B91E9C1 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = Firebase/Core/Private/FIRAppInternal.h; sourceTree = ""; }; - D828D9BBB1FBDC571D8A67EC847DBC1F /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; - D848CB283987180B51BDAA4CD2329DBE /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; - D8C2FBD9146DD6CBA2261912D7829F2A /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; - D8EC6633AAAC503B85A25ED51C364052 /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; + D869731AB7C204E5D46212EB8B2F7FB7 /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; + D8D594BCF7B74F8307E4DC5D83532E2D /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D8E559026E95A80EFF31A0DFF6AE8367 /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; D9154A2A59EE836C6B4C8ABE26903A93 /* FirebaseInstanceID.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstanceID.xcconfig; sourceTree = ""; }; - D98B97642A09C230205472A822F79417 /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; - D9CB9224E6BF6EE164995B592C775D55 /* RCTExceptionsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTExceptionsManager.m; sourceTree = ""; }; - DA1C2EBCB3B2954FE868E7E781A920E4 /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = Libraries/ActionSheetIOS/RCTActionSheetManager.h; sourceTree = ""; }; + D96DFC2DCCAF308B72584E5077455DBC /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; DA25CB04EA64550643955E87AD36DBB1 /* FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptions.h; path = Firebase/Core/Public/FIROptions.h; sourceTree = ""; }; - DAA8B42F52E23DE8B4AB068E101E8594 /* react-native-splash-screen-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-splash-screen-dummy.m"; sourceTree = ""; }; - DAB4A986AEBCB76228BB567F8E0A7E82 /* RCTFileReaderModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTFileReaderModule.m; path = Libraries/Blob/RCTFileReaderModule.m; sourceTree = ""; }; - DAC958D6CFDEF9A46B6BBD5E19CC0E30 /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; + DAA51CCDD348AF8EE253F900114CC529 /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; + DAAAF86758CE77A4332BE80E77253DBD /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAlertManager.h; sourceTree = ""; }; + DAE1F79C74E621124BCDC16841975A31 /* UMFaceDetectorInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.xcconfig; sourceTree = ""; }; + DB11C6CB8C8A9F3F26683157F0C0735E /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; DB26A8DCF5A6E3B4A1BC4152C6D9DC6C /* Pods-RocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-RocketChatRN-dummy.m"; sourceTree = ""; }; - DBFB2DA0BD39B37F21F1E501AA2FF9A7 /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; - DC843BEA7141F1F2C9247CF1C926B684 /* libPods-RocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-RocketChatRN.a"; path = "libPods-RocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + DC41172584293FF41624A8E94F6076C1 /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; + DC63BE37C34E3A10328328127AF3A460 /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; DCC7600BC172CA9427C27FD82BF17552 /* GULReachabilityMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityMessageCode.h; path = GoogleUtilities/Reachability/Private/GULReachabilityMessageCode.h; sourceTree = ""; }; - DCDBE7B0BA4228C239E0C6328B2C837D /* libProtobuf.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libProtobuf.a; path = libProtobuf.a; sourceTree = BUILT_PRODUCTS_DIR; }; - DDE9DFC270AB6616C642D86C0922EDCE /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - DE081F37A56015E583D223D0A2279CA7 /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; - DE36DF4600FFCFF6729ACD8B59820986 /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; - DE63B5C7644E2ED1684E5EEB6F796636 /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; - DEF2307586C18123880159036642662B /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBox.h; sourceTree = ""; }; - DF0F4D415D88D059359F90BA6F2572FE /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; - DF2F42684B1AD0ABA9124AE8C8B9A05C /* RCTPerfMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerfMonitor.m; sourceTree = ""; }; + DE17D18B053F863B8E357A039D814EA2 /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; + DE7A154907DB1502F8F25B861AE7BD5B /* libEXWebBrowser.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXWebBrowser.a; path = libEXWebBrowser.a; sourceTree = BUILT_PRODUCTS_DIR; }; + DE8C98CF405C4C0758506C67672E008B /* libEXAppLoaderProvider.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAppLoaderProvider.a; path = libEXAppLoaderProvider.a; sourceTree = BUILT_PRODUCTS_DIR; }; + DEAC3E5812144C0F05C0C2B4D979858D /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; + DEBBAC37E2DAEEA04D8C77922B710CF9 /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = ""; }; + DED28974750A0A63EB727476B932E093 /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; + DF88A3B194CB1E3B0C6900ED0D61EF12 /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; DFB3B3A22A1D883E021456672D098678 /* fast-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fast-dtoa.h"; path = "double-conversion/fast-dtoa.h"; sourceTree = ""; }; - E00479C15A1CABA837683F951CCE0595 /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAppState.h; sourceTree = ""; }; - E049E51AE444A3530A98034BF1B85316 /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = ios/RNCWKProcessPoolManager.m; sourceTree = ""; }; E0C49F12A12309D11B852442959A76BB /* Folly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Folly-dummy.m"; sourceTree = ""; }; - E0CF2B48E590396E282D7161D3C9379E /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; - E154487BD68447A3EF40C21DC201A797 /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; - E15DE3EA5E2FE9DD8335D19B7AC88073 /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; - E2FDF8DB82C73832EF85F03A5906F9CF /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = Libraries/Image/RCTImageLoader.h; sourceTree = ""; }; + E12E26659245FEED13E31803DD2E17AF /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + E1DBA6D1653935E0FC410C3112298272 /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; + E2301E3E067F41038D461AB5C3D3F3E1 /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = ""; }; + E28442A13BCB5F5FB8EB8D623697E822 /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; + E30D961A588DE5533FD3B6EC76F61BD5 /* RCTNetInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetInfo.h; path = Libraries/Network/RCTNetInfo.h; sourceTree = ""; }; E329F4B752BE9BD5C2E6CFB772539144 /* Api.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Api.pbobjc.m; path = objectivec/google/protobuf/Api.pbobjc.m; sourceTree = ""; }; - E3D8096252576422FD26A14FCC5E908A /* RCTWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWebViewManager.h; sourceTree = ""; }; - E3DC3CF71845576341A6E0809080DD52 /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; - E41AF7A25F44F1D9E93F2BDCA481CCDA /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; - E48D1F25E8F78E45B8E361102AC61DAE /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; - E49E44A687AA45641CF5EE35E3C85502 /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; + E35D6ECFD04E59A0EC2C82AEB03CAB16 /* EXRemindersRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXRemindersRequester.m; path = EXPermissions/EXRemindersRequester.m; sourceTree = ""; }; + E37C8977F315F56A1E44BD41F80EAF03 /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = ""; }; + E3FE423446DF26ED783090990CC825CF /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; + E42599857597C8739BB54BAE4BFB8387 /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; E4C48284CABF83F748FB75471EE6008D /* FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROptions.m; path = Firebase/Core/FIROptions.m; sourceTree = ""; }; - E4DBB4CADAF0B70D23528A3721BBEE4E /* RCTLinkingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTLinkingManager.m; path = Libraries/LinkingIOS/RCTLinkingManager.m; sourceTree = ""; }; + E4D943692016C76A0D7B5542C4DB238B /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; E587B3F2F5ACE664165F9212BAC58A0B /* FIRInstanceIDCheckinService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCheckinService.m; path = Firebase/InstanceID/FIRInstanceIDCheckinService.m; sourceTree = ""; }; - E65F90858B3643E1784B9F313669F8A0 /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; - E6BC64EE27F8F049CB7F57E6E67A5A0E /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; - E70260B3154ECDF9FB4CEF28C18E0B32 /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; - E7226EC579E6665ED0958A186F6D8477 /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; - E733BBE63869E6D6C3E02F5FCC6C08C5 /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; - E7A421C37AE4D392D374DB082E43BD1F /* RCTAppState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAppState.m; sourceTree = ""; }; + E61453F5743127BBF1F9140BAAD1ED6E /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; + E62D7A42AA3890EF3E4131AFA55625FA /* RCTWKWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWKWebViewManager.m; sourceTree = ""; }; + E63221B943F21177C58504D60A4334F2 /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; + E678E9A6E05FA8A1D562848738CCAB65 /* RCTWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWebView.m; sourceTree = ""; }; + E6938C70455BAA3AD144F9AECC6254C8 /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; + E6C98F6F9BC2F9206AD7A680BAD355AD /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAsyncLocalStorage.h; sourceTree = ""; }; + E74C9EF0EB05832465DCF49353B70156 /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; + E7700F2B3EEAA30BAF96A4E63585E42A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; E7D881ED2B5743223827914D984E15E1 /* GTMSessionFetcherLogging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionFetcherLogging.m; path = Source/GTMSessionFetcherLogging.m; sourceTree = ""; }; + E7DC652C99F34B0169C3E22F3C5E73B3 /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; E7EBE525A09050866014CB02AF5B19BB /* GPBRootObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBRootObject.h; path = objectivec/GPBRootObject.h; sourceTree = ""; }; E80614B9501CBE2DC0DFD0CB76C51905 /* GPBMessage_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBMessage_PackagePrivate.h; path = objectivec/GPBMessage_PackagePrivate.h; sourceTree = ""; }; - E85B84F9A24CE732533ADB3229456ADD /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; - E8AEFB1150634D9928D55650AD9D9BB2 /* RNScreens.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.xcconfig; sourceTree = ""; }; + E82BE337A354978B74C79C4E00788FF3 /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E836B9D5E042659CC79F15991827BE2C /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; E8DE43DFD7CC3A804076BF1825A63034 /* QBCheckmarkView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBCheckmarkView.m; path = QBImagePicker/QBCheckmarkView.m; sourceTree = ""; }; - E8E09B4609979A988C12C36DA8C321E0 /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+Text.m"; path = "Libraries/Text/RCTConvert+Text.m"; sourceTree = ""; }; - E916B8D39F1C0F99D37EDE527B703D6F /* RCTGIFImageDecoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTGIFImageDecoder.m; path = Libraries/Image/RCTGIFImageDecoder.m; sourceTree = ""; }; E91CA0CA3AD2A04005A71157B2C32FB7 /* Type.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Type.pbobjc.m; path = objectivec/google/protobuf/Type.pbobjc.m; sourceTree = ""; }; E99B0D64B717D3685A2D48961E286C54 /* GULAppDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULAppDelegateSwizzler.h; sourceTree = ""; }; - E9B082EF0E1514D82F9E2CBB21AE028A /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; + E9ADF33DA29A6AA2734EBBD67E0670B2 /* RCTAsyncLocalStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAsyncLocalStorage.m; sourceTree = ""; }; + E9AE052459B4C798ACAB6AAB4C2F0CB0 /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; EA452AF7C2948DFAEDF5BF8E102BDAA3 /* FIRInstanceIDTokenOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenOperation.h; path = Firebase/InstanceID/FIRInstanceIDTokenOperation.h; sourceTree = ""; }; - EAFFAADBAD13DB39F5342D650A70E31F /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; + EABAF6EB1C318DF0BD0B9D326B801865 /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; + EAEA879C60C21AD215ED46751F2B87C8 /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; EB054FF8A5D97A01475935D8C8EF580E /* QBImagePickerController.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = QBImagePickerController.xcconfig; sourceTree = ""; }; - EB277D57FCDDE14153AD6F54129AED98 /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNativeAnimatedNodesManager.m; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; EB42AB4A769B8206971D52BD7228724B /* FIRComponentContainerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainerInternal.h; path = Firebase/Core/Private/FIRComponentContainerInternal.h; sourceTree = ""; }; EB42C933792B47AC97EF02831256A945 /* Api.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Api.pbobjc.h; path = objectivec/google/protobuf/Api.pbobjc.h; sourceTree = ""; }; EB463BA7EB74852828A7F95F2E718754 /* Protobuf-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Protobuf-prefix.pch"; sourceTree = ""; }; EB6981EF8981D724C17B40BCE18F4DF1 /* GULNetworkMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkMessageCode.h; path = GoogleUtilities/Network/Private/GULNetworkMessageCode.h; sourceTree = ""; }; - EB787F02AE83842B501819373DEA5948 /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; - EBCE8C1DFF8C92EB029DB05833E4DE3F /* libnanopb.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libnanopb.a; path = libnanopb.a; sourceTree = BUILT_PRODUCTS_DIR; }; + EBAEF195BAF8E47463EFD322D8A4391F /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; + EBC136A0127DCBB01532CD80C213127B /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; EBE07153C75AA5C1C38348F1B3A27364 /* DoubleConversion.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DoubleConversion.xcconfig; sourceTree = ""; }; - EC1422D8BFC01458269C9EE753E02562 /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; + EBEBED41A2E41009340763C145A1CF89 /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; + EC46FEF7E1E3DC4BFFA9E3F3D91A752E /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; + EC686A1BED1F8845F06C785355A46D41 /* EXCalendarRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCalendarRequester.m; path = EXPermissions/EXCalendarRequester.m; sourceTree = ""; }; + EC6AAB2748F1E3C806E8DF0D0D1DE9D9 /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; ECAA1BE70470727702FE925831A02A0D /* FIRInstanceIDAPNSInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDAPNSInfo.m; path = Firebase/InstanceID/FIRInstanceIDAPNSInfo.m; sourceTree = ""; }; + ECAEC0F673061C7B0E0FF5CD1049BFCB /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; ECDE53F648C58F537F5674A4108DEB3E /* GPBWireFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBWireFormat.m; path = objectivec/GPBWireFormat.m; sourceTree = ""; }; - ECFFF5BA98FCDC1EA3FA4B40D0A62907 /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; - ED01240CEDA4D44C8E87EB427365F8E9 /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; - ED24076EFD19363062C1E77F70B019E5 /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; + ECE4F4D21720856B096509BCFE189EA7 /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; + ED128CC2B3AC5580D37A488205DE051B /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; + ED2CEEBE8A7DAD77DE37D2CF2E0FB36D /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDeviceInfo.h; sourceTree = ""; }; ED3F83DE07B36FFE21FC3707F2802DDF /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = String.cpp; path = folly/String.cpp; sourceTree = ""; }; - ED54E8B532616BB44457AAA63A9A06A2 /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; + ED59F5162360E96762A58AC8E6D2DFC7 /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; ED6B7E5A61EF834B72AD4268D2B5F4D1 /* FIRConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfiguration.h; path = Firebase/Core/Public/FIRConfiguration.h; sourceTree = ""; }; - ED8913A45980A3CCA476A3541A08266A /* RCTSourceCode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSourceCode.m; sourceTree = ""; }; - EDAC16C68211A916FA1DD4EC74036686 /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; - EDC6C42AC2A099891874279AF54D1656 /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; - EDF5186F7DE1B1750FB632531AB002B3 /* yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "yoga-prefix.pch"; sourceTree = ""; }; + EDB5A32FBD68C6FD19FF4684D6E1559D /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; EE0E0D2257A57CE5396CC60C20291BA9 /* GULNetworkURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkURLSession.h; path = GoogleUtilities/Network/Private/GULNetworkURLSession.h; sourceTree = ""; }; - EF731E843B8AAA06A07BDD4BACC499E5 /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; - EFCF15154A569D3A9AC0EBBC211E2B81 /* RCTKeyboardObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyboardObserver.m; sourceTree = ""; }; - F010E6E5881FBE23609DD4ACDD72DFBA /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; - F0111606774D1C4DDD02357C9E0B40A9 /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; - F0245B3B6B3633CDFAD42BCD327D7E36 /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; - F04568720272569EDD3414171A5D8BA9 /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; - F04DC6681D51CF6931D83DBDD773265B /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; + EEE364AFCA1D002A79C6FCF0A15EDB16 /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + EF226F8FDD7DFDD3DC9FE85F4F3501EC /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; + EF46C6122B7EF67685CB01F7FE53D08A /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; + F03EC47BE3796BA3D41D4CA4C0C177BB /* RNCWKWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKWebViewManager.m; path = ios/RNCWKWebViewManager.m; sourceTree = ""; }; + F0414E07D2180EAA5C7BAF6DF35F4A85 /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; F070DB8778F84DDDEFFBD0B665025401 /* QBAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetCell.m; path = QBImagePicker/QBAssetCell.m; sourceTree = ""; }; - F09543430670E7368FA56F8A2A844301 /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; - F12D34A89A831A7C9E5C7A21808BAA85 /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; - F1306D2356A305018B757A6A8FC5F31E /* libGoogleUtilities.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleUtilities.a; path = libGoogleUtilities.a; sourceTree = BUILT_PRODUCTS_DIR; }; + F117947FDCBF46D936DE38C848DD9260 /* UMCameraInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.xcconfig; sourceTree = ""; }; + F128D70778FFE6C1A7DD1B2E828B2630 /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; + F1300F4AA87D82F34E5932F3BBBE994F /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; + F1318E29E57550F95C16288E33321257 /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; F13C9827FFA6E7331D6E301FE4773240 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = Firebase/Core/Private/FIRComponent.h; sourceTree = ""; }; - F152DD164DB7ACEA422FCEB079E29CB7 /* yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - F18FB55E09E814D1A517E847819448AC /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; + F18AEA147687945A46A8F74C1DA453F6 /* UMFontInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.xcconfig; sourceTree = ""; }; + F1D1BD83D0629BB42853BD96E5F622D3 /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + F2464CEBD0BB0B1B2E8D01172B2A6AEB /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; F253D6BB700AA13956A26AA399F054C7 /* json_pointer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json_pointer.cpp; path = folly/json_pointer.cpp; sourceTree = ""; }; - F25FE0B186708D639872D3A8C84A0E72 /* libRNDeviceInfo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDeviceInfo.a; path = libRNDeviceInfo.a; sourceTree = BUILT_PRODUCTS_DIR; }; - F29AD233D31543D46BC2E1FBDFA10318 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; + F267446490FA8DA114D5B34CBB45CC9E /* EXPermissions.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.xcconfig; sourceTree = ""; }; F2D27DF69275FBA4A8A9B94D0AE1274C /* Fabric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fabric.h; path = iOS/Fabric.framework/Headers/Fabric.h; sourceTree = ""; }; - F35BBFE781FBD647E07DECE1EE929527 /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; - F3A1FAE6B577DEA5E0B3C3808908D7C3 /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; + F367BC27BA2A66341EF660D893BA570E /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; F3BCBFAD374F9A20E01958A9D04855DC /* UIApplication+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIApplication+RSKImageCropper.m"; path = "RSKImageCropper/UIApplication+RSKImageCropper.m"; sourceTree = ""; }; F3FE69CB45C28524B38B3FC95BAC3A6F /* Folly-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Folly-prefix.pch"; sourceTree = ""; }; + F405BA0A77DBC875CDBF1DE465955575 /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; F4153F9951FDA4E14A9C00C9F769089B /* Answers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Answers.h; path = iOS/Crashlytics.framework/Headers/Answers.h; sourceTree = ""; }; + F417B170DBA376E3F8123294805C3500 /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; F43A98E4B0508D3EFD4EF6CA74449A52 /* FABAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FABAttributes.h; path = iOS/Fabric.framework/Headers/FABAttributes.h; sourceTree = ""; }; + F45318079269BCB6F14889848E908FDB /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; F4769E4FD51434A8166BF6744B6DECCB /* Type.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Type.pbobjc.h; path = objectivec/google/protobuf/Type.pbobjc.h; sourceTree = ""; }; + F478B9F2F003934BD0914FCC399D6E6A /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; + F47F11CB8F49F621904FC2C453A75AD8 /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; + F47FD00B86E08397AF388C8CEC6DE603 /* RCTLinkingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTLinkingManager.m; path = Libraries/LinkingIOS/RCTLinkingManager.m; sourceTree = ""; }; F4A3E35C402DA8FA4C4B62F2269FFC1C /* FIRInstanceIDStringEncoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDStringEncoding.m; path = Firebase/InstanceID/FIRInstanceIDStringEncoding.m; sourceTree = ""; }; + F4A3ED0BDCE07EA6565A8FB6D3BD0BF3 /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; + F4A8168DAC690690D0BD3EB1F6886214 /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPlatform.h; sourceTree = ""; }; + F4FF83C7AA9D5B82D1B25F4C66E6A3A2 /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; F5242D0FBCBD7A1D99CEB88585EA682A /* GULNetworkConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkConstants.h; path = GoogleUtilities/Network/Private/GULNetworkConstants.h; sourceTree = ""; }; - F5624D3D91EA987DC544E2C89144B590 /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; - F568E078B3A119DA64CE4AE6D89B9249 /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = ios/RNCWKProcessPoolManager.h; sourceTree = ""; }; + F536C0153EAF12550102BECF638671A0 /* RCTWKWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWKWebView.h; sourceTree = ""; }; + F53ED85FE470B5137FCF5F956B3A65DA /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; + F550274E78EAC3866BE2D581199E62FC /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; + F57479556D5C216C32A904C334E1813B /* EXCameraPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCameraPermissionRequester.m; path = EXPermissions/EXCameraPermissionRequester.m; sourceTree = ""; }; F5C9D78CFBB7872339127A65C944A51D /* ANSCompatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ANSCompatibility.h; path = iOS/Crashlytics.framework/Headers/ANSCompatibility.h; sourceTree = ""; }; - F5F669E193716891AD3C232265713373 /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; - F60429AEE8059FEE3EBCD6841CC9A091 /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; - F7578AE71D7129B33E7A7F5BE670CC01 /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSourceCode.h; sourceTree = ""; }; - F7CF05F229BC12275FB5F34A6076829C /* RCTWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWebViewManager.m; sourceTree = ""; }; - F812F670169AC00AA67550FF954C1AA5 /* libglog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libglog.a; path = libglog.a; sourceTree = BUILT_PRODUCTS_DIR; }; + F5D481696FE6F88C1964745E614E3A2A /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + F5F7CBB6AA3A51D2A2ED33417655E9BF /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; + F688E90AA09BCD1670AC3241EA0D2F50 /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; + F6DB59C58191061510504045500E3D53 /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; + F70EFB53C1A3C4F2E124FD62E4DFD39B /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; + F770AA00FDA1157ABD73202E6ABCC63A /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; F861D6FCD688186A198304576ADBC85F /* FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRApp.m; path = Firebase/Core/FIRApp.m; sourceTree = ""; }; - F921627B276D965207CE3AC377B1C935 /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; + F8B5CD91CC86AD7935C9D1BF1ACB5ED0 /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; F92900861A1536FC2C06F634018F7F6A /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/Demangle.cpp; sourceTree = ""; }; + F943E8994A4AA646EFA11DFF0111583D /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; F96F86515F70B8C017E7FC355A2B7CDB /* FirebaseCoreDiagnostics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseCoreDiagnostics.framework; path = Frameworks/FirebaseCoreDiagnostics.framework; sourceTree = ""; }; - F9BB4C06C5A95A98F8C4A4FBE17EB73A /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; - F9CBDD68A12BD51928FC8116D5FBBECF /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; - FA83EF3AF04726EB99FB0E8B9CAF4D75 /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; - FAF21C5645961ED781830F7D77161C14 /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; + F98EFF39BD889E2736CA6AFDAE564689 /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; + F9A64EA9703E81E844B51079DC2BB5A3 /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; + F9AAEF6AE205FC806A3A4469C020CD31 /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; + F9E4D05D1997E992F023353980916821 /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; + F9FADB4348D144BBD4A6F5B47D846147 /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; + FA054D52137B0B75A05322E9EFC3F225 /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; + FA106E336C806F0000A4B2AA344706A8 /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; + FAA08C2F69D54CD44FF52C311DC88A78 /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; + FABB33964506732F9F905D8D25522A7A /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; + FABE7A4D0F7AAB8B1351F965306DE4CC /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; + FAE559B67EE568E4F3255616EB1CBC31 /* RCTGIFImageDecoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTGIFImageDecoder.m; path = Libraries/Image/RCTGIFImageDecoder.m; sourceTree = ""; }; + FAEEDA9655E7D3869F460FCF00D3471A /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; + FB72E7B88105CA3A03C3DECB2EA1E8F3 /* RCTLocalAssetImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTLocalAssetImageLoader.m; path = Libraries/Image/RCTLocalAssetImageLoader.m; sourceTree = ""; }; FB8F83C766BDABDF47DC628A400C9E8D /* GPBRootObject_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBRootObject_PackagePrivate.h; path = objectivec/GPBRootObject_PackagePrivate.h; sourceTree = ""; }; + FB96B41871B71855586A169F12F29BC3 /* RCTAccessibilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAccessibilityManager.m; sourceTree = ""; }; + FC06EC95FFDB06577489168A110CC63B /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RCTHTTPRequestHandler.mm; path = Libraries/Network/RCTHTTPRequestHandler.mm; sourceTree = ""; }; + FC3B30836EDAC398396B777A009CE255 /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; FC508D515D80F54B5CB658FC4FE3802A /* 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 = ""; }; - FCA04EDEFF5408E0CED874344E0657AC /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; + FC7136BEFBD7DF190B1DCA1F9BD11E12 /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; + FCA8325578A3ADCBD85ACA8AF477EC2A /* EXWebBrowser.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.xcconfig; sourceTree = ""; }; + FCB8884193A9A6206442C2F29F4CCD01 /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+Text.m"; path = "Libraries/Text/RCTConvert+Text.m"; sourceTree = ""; }; + FCCB7AC756E3595B2C1ED67FC5FC21EC /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; + FCDD6B4854B4B394A846C9CCAD8828A5 /* react-native-splash-screen.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-splash-screen.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + FCE468C4DE3FD5EA1CDEB47601C106B9 /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; + FCF67B474FD6C82910218CA6951D04E6 /* RNDeviceInfo.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.xcconfig; sourceTree = ""; }; FD1FC6E5021013DE598D3FECD7E43103 /* GPBWellKnownTypes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBWellKnownTypes.m; path = objectivec/GPBWellKnownTypes.m; sourceTree = ""; }; - FD33D4E6771698D781298E14B3764D61 /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; - FD3C03B9C3CFFF0F451AC452275FADB5 /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; - FD933856424E177FA26B743F083E9232 /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; - FDEEDFC03C02A5ECC34DBB0C5EA3F9F2 /* RNCWKWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKWebView.m; path = ios/RNCWKWebView.m; sourceTree = ""; }; + FDE5A7FA3137D90041CAB25A8FABAC69 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTClipboard.h; sourceTree = ""; }; FE0AD6A2B458F3446F9F710454023AD2 /* GPBRootObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBRootObject.m; path = objectivec/GPBRootObject.m; sourceTree = ""; }; FE503EE8D17258B72EFA6478A1EE7BB2 /* RSKImageCropper-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RSKImageCropper-dummy.m"; sourceTree = ""; }; FE56DCBF8D844549273B298E9EF13AC6 /* GPBProtocolBuffers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBProtocolBuffers.h; path = objectivec/GPBProtocolBuffers.h; sourceTree = ""; }; - FF0B4AFE49BB7BE8467BF6D0769C978A /* RNCWKWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKWebView.h; path = ios/RNCWKWebView.h; sourceTree = ""; }; + FE8F35C8E33EA725E63131C4AA800404 /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; + FEDD1E83251AD676665505AE66FA1363 /* libUMReactNativeAdapter.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMReactNativeAdapter.a; path = libUMReactNativeAdapter.a; sourceTree = BUILT_PRODUCTS_DIR; }; FF36BF4F706AA77F33A0FAC553A39934 /* Pods-RocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.debug.xcconfig"; sourceTree = ""; }; FF53A904DED58A3B128E71C3BB3400C2 /* GULAppDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m; sourceTree = ""; }; + FF7E9A0B4A1BF87864349533DD6892DD /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; + FFFA26A42C9B9AB64628203684027FA4 /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = ""; }; FFFA6C4730580F08F48B1B15E8603BB6 /* FIRInstanceIDTokenFetchOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenFetchOperation.h; path = Firebase/InstanceID/FIRInstanceIDTokenFetchOperation.h; sourceTree = ""; }; /* End PBXFileReference section */ @@ -1924,42 +2471,56 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 3C4071F796A1C911C4575655E5E45A7E /* Frameworks */ = { + 339D5D46010D05E610E1912AFD315B2E /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 499358744E23E3BB9A6D577E08429E35 /* Frameworks */ = { + 3D91F4427CFAB28C8220E7543E9FA17A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 4BAB1002C6D6052C44FDE3C7DF74E4CD /* Frameworks */ = { + 61756F3B6B9110FB5A6EF1095BF8F721 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 5626B633CEF0325A7888938A267EE670 /* Frameworks */ = { + 6C58A1F7BDA36B38D3645962231F6AB7 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 5B5F7E4253487A74DC4F41AD9839149A /* Frameworks */ = { + 70DCC08B264C6FCAAF9029986DC4F583 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 744662973C07B817D1F8EA61A58E572F /* Frameworks */ = { + 7224938DD64D1396B6BC3411B87C1C8B /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 7466858F5C50BA8748A5D8979ACE99DC /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 86975FA8969769E1025A58E3FEA10506 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1987,6 +2548,20 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 9B7BAE422AC73858EC415DBE4DED2D12 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 9C1143E77695FB4B58AA5D992DD06087 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 9D0797DF1C3A79CCD8F04FB6609B1262 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -1994,14 +2569,21 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - A78F94EB0834E1411AC72555012713F8 /* Frameworks */ = { + A0BB2299D242091C03A7D385CEDBD690 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - AB74BF1F133412BEF711912C4F919FAB /* Frameworks */ = { + A98C1DDF01F647B049C7B615B4035938 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + AAC00804D9BA05ECFC849A994BF46BEA /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2015,7 +2597,28 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - C57BF9A87AA5CED417C9EC2F01666DA4 /* Frameworks */ = { + CEED69BFDF6A885185DB264BF3D59019 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + D21A196416D7CF6175BF7D6E3B6D5F14 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + D4B39AE5D04F20EE30BE08212B82FF1B /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + D62EEE79C31BA3C79FC8C5364E60CB2F /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2029,13 +2632,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - EA35EC09C240F5FBCD2ECDC77F52B183 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; EB657344CB82D47E9B579FE9A9546903 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -2043,7 +2639,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - EF51ECB655B2FFA505BC14FF632C438E /* Frameworks */ = { + EC3F1E53CF0CD26EF63ACE35EEDCDC87 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2053,6 +2649,24 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ + 007092336DF98BE8AA39CBBA170A572A /* Services */ = { + isa = PBXGroup; + children = ( + 3DB6F761DADAE5FE337146D9EA099097 /* UMLogManager.h */, + DAA51CCDD348AF8EE253F900114CC529 /* UMLogManager.m */, + ); + name = Services; + path = UMCore/Services; + sourceTree = ""; + }; + 0199E76DE9694C26EC4EDFD9A3A8580D /* Pod */ = { + isa = PBXGroup; + children = ( + 726497E1CF69BDBEDEF63C2394991D11 /* UMFontInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; 0382A503BA90CA7904830F3A958469BC /* decode */ = { isa = PBXGroup; children = ( @@ -2060,22 +2674,24 @@ name = decode; sourceTree = ""; }; - 040E6A68E1F499F8F2707AEA61A55EB4 /* Profiler */ = { + 0385D03577766501573445CA9DD702B5 /* UIUtils */ = { isa = PBXGroup; children = ( - 0A85E6F59A948F204CF367FDFE2CA620 /* RCTFPSGraph.h */, - 8AC8BAF14CB666BF4E4306D74439092F /* RCTFPSGraph.m */, - A89D794D717196B5AF2862CC5CF8309C /* RCTMacros.h */, - DF2F42684B1AD0ABA9124AE8C8B9A05C /* RCTPerfMonitor.m */, - 16BCFBC3734A2AF318FA9557B7C6B1FB /* RCTProfile.h */, - F09543430670E7368FA56F8A2A844301 /* RCTProfile.m */, - 46B7E6EAEA8451A2EE13C40D84C45DA0 /* RCTProfileTrampoline-arm.S */, - 4A1355EBE513DA236FA38187541A1D36 /* RCTProfileTrampoline-arm64.S */, - 42C5E32EA29BD064C76AB0E321229971 /* RCTProfileTrampoline-i386.S */, - 8E31F662C8F96AA582CFCC08E6B734DD /* RCTProfileTrampoline-x86_64.S */, + 7805A6A97BD5FDA83CB66967D68F0273 /* RCTUIUtils.h */, + 5AF13F74F2E66FF6342AD10B3AACB21D /* RCTUIUtils.m */, ); - name = Profiler; - path = React/Profiler; + name = UIUtils; + path = React/UIUtils; + sourceTree = ""; + }; + 04254E93A41B45A459B730ED7C127B7F /* Interfaces */ = { + isa = PBXGroup; + children = ( + A67810017C226A90912C399D17D6F3F8 /* EXAppLoaderInterface.h */, + D041BAFA4EFFB3C2CB0CCE6501CF7C5E /* EXAppRecordInterface.h */, + ); + name = Interfaces; + path = EXAppLoaderProvider/Interfaces; sourceTree = ""; }; 05C01A9434CFBBF6615DA61F203FED12 /* Support Files */ = { @@ -2087,13 +2703,14 @@ path = "../Target Support Files/GoogleIDFASupport"; sourceTree = ""; }; - 089F0A4320C2306EBEEC62EBCD44A62A /* RCTVibration */ = { + 07DF13CFB4BF6073CE61C55F2918B954 /* Pod */ = { isa = PBXGroup; children = ( - F921627B276D965207CE3AC377B1C935 /* RCTVibration.h */, - 842C3FF7F4A33E32FD5155B0230088B3 /* RCTVibration.m */, + BC234E5A948968B681B115244EB16361 /* LICENSE */, + 4AB85FB3207ED22B0B3F2690CBC77AA2 /* react-native-orientation-locker.podspec */, + 3025872C57975345DD682A0815A3A8C2 /* README.md */, ); - name = RCTVibration; + name = Pod; sourceTree = ""; }; 0A7E0F530CEEA581B16197A5A636FC13 /* NSData+zlib */ = { @@ -2105,14 +2722,27 @@ name = "NSData+zlib"; sourceTree = ""; }; - 0C3D2781A3C57BF0A6FC657AA6ADE9D5 /* Pod */ = { + 0A91067BAA720680B76AD2F65158AA7E /* Support Files */ = { isa = PBXGroup; children = ( - 8B6D9FC52E185D3493B40AB6B84A444F /* LICENSE */, - 84FAD81B0144E0F84CE5EC15F8DD6811 /* README.md */, - 36F723BCE5C99CBFCD3A31CA8E2F7EFD /* RNImageCropPicker.podspec */, + 263A175F8122E3AEB637230C1BCB3C11 /* RNImageCropPicker.xcconfig */, + 358C204261A6299B250B302CCB9D8F00 /* RNImageCropPicker-dummy.m */, + 5C92701E217466C469F7ECCAD9236C93 /* RNImageCropPicker-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; + sourceTree = ""; + }; + 0D6C94A142EB4A122788E553FD52B9A2 /* RawText */ = { + isa = PBXGroup; + children = ( + EF46C6122B7EF67685CB01F7FE53D08A /* RCTRawTextShadowView.h */, + 3288AB56C2B6DF64F639479527578664 /* RCTRawTextShadowView.m */, + ABB81D84C308F077BE43A07F0E451DC8 /* RCTRawTextViewManager.h */, + 1BB2ECB4FABB3B421E594759B37943AA /* RCTRawTextViewManager.m */, + ); + name = RawText; + path = Libraries/Text/RawText; sourceTree = ""; }; 0DFDA18E3B59B2B158CD057D79830762 /* encode */ = { @@ -2122,21 +2752,12 @@ name = encode; sourceTree = ""; }; - 118B10AA8F71DF888E9C479C0B070603 /* RCTText */ = { + 0FA2F1762435D2BAADDDC895FBEDA070 /* Pod */ = { isa = PBXGroup; children = ( - 6DD91ABCB7C35204BAA17AFE588FF8BC /* RCTConvert+Text.h */, - E8E09B4609979A988C12C36DA8C321E0 /* RCTConvert+Text.m */, - 60A29CCBA4AA34C8F1600DB967747055 /* RCTTextAttributes.h */, - 016C6F191BE51C14AD6DF11D7E2F02FF /* RCTTextAttributes.m */, - E70260B3154ECDF9FB4CEF28C18E0B32 /* RCTTextTransform.h */, - 4C013A8427E622F8F8282688513565BF /* BaseText */, - E8963B324BBD81ED67B5BAE1887556FC /* RawText */, - 3606BF9E3320F507E78CF8F8792959D1 /* Text */, - A417CC621B6A07F1F657CBC9CF09B205 /* TextInput */, - 7EBC605B171996AE1140C27CE9198B09 /* VirtualText */, + BB46189EBA5CE273C36DEB82232586A9 /* UMTaskManagerInterface.podspec */, ); - name = RCTText; + name = Pod; sourceTree = ""; }; 1236BC3FA18CAE87BFF0ED4ED0934871 /* FirebaseAnalytics */ = { @@ -2149,38 +2770,100 @@ path = FirebaseAnalytics; sourceTree = ""; }; - 12E9E552113B4DDA57850B7223C441CE /* Development Pods */ = { + 126E523D5B439B193E63AB1F8B7CD487 /* RCTWebSocket */ = { isa = PBXGroup; children = ( - F7E4478A3D73CA9997129C28318825D9 /* React */, - 9CA1223FD8E18A651765FC44459880A8 /* react-native-orientation-locker */, - 79B65F4FA3F8390E16037EB1C2858E0A /* react-native-splash-screen */, - F212ADC6E1F80328E11CE9F7C8865D53 /* react-native-webview */, - 86946E5AC1E0157049CE97B82B68B014 /* RNDeviceInfo */, - CE8C511883686541A2279D0B4DF812D1 /* RNImageCropPicker */, - EEDF86A990B8AC8C2F3AE60596E03905 /* RNScreens */, - 628CED234E4C529D5D1A72E5E33A97B8 /* yoga */, + 7854C18EB7D74E8B222292E1C29BC90F /* RCTReconnectingWebSocket.h */, + BBABE164CD9DB956C55005F85AAF2638 /* RCTReconnectingWebSocket.m */, + 5D79A409DB7CABE3D5E774A584F22D09 /* RCTSRWebSocket.h */, + AFBE8E4364487DB286141F973FBFDC4C /* RCTSRWebSocket.m */, + A3DF10A90A8AFB815D52BE7790564C94 /* RCTWebSocketExecutor.h */, + 491FC82623A764D76BB40A72E6045CF5 /* RCTWebSocketExecutor.m */, + 2EBB2BDA890D07CFBC2886C4FADDA866 /* RCTWebSocketModule.h */, + 8A033047767B88539F3E8AF2816A1AD6 /* RCTWebSocketModule.m */, ); - name = "Development Pods"; + name = RCTWebSocket; sourceTree = ""; }; - 13EAEB44593CDB5457A551C55B827178 /* Support Files */ = { + 1299FD706C5DA16A997AE126B4CF605A /* SurfaceHostingView */ = { isa = PBXGroup; children = ( - 167F23E91459E9C1B4C7525DC2B73D56 /* RNImageCropPicker.xcconfig */, - 88ABD257F2B1603EFB1A5D2DE450E668 /* RNImageCropPicker-dummy.m */, - 60D9D5E1E978BDC00DDC06405E0D0241 /* RNImageCropPicker-prefix.pch */, + 6B12BE84FCFCCA1BA4BFFFF60161C793 /* RCTSurfaceHostingProxyRootView.h */, + 0174BD30EE6EDA477799464266E56646 /* RCTSurfaceHostingProxyRootView.mm */, + 6EDC27CE76D0AFFEB5E8A7740485B9A1 /* RCTSurfaceHostingView.h */, + 33EF75EAD0C793E0FE0A110FECE41F23 /* RCTSurfaceHostingView.mm */, + 5FCE8E36871EC5631A2AA45186D27222 /* RCTSurfaceSizeMeasureMode.h */, + 49B366D200988D1B946B71A2E40958F2 /* RCTSurfaceSizeMeasureMode.mm */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; + name = SurfaceHostingView; + path = SurfaceHostingView; sourceTree = ""; }; - 15C31AC941B6488CFDFD0FE2327603DF /* Pod */ = { + 12F7666D0781CD424D3E4501B710D9FF /* Nodes */ = { isa = PBXGroup; children = ( - DDE9DFC270AB6616C642D86C0922EDCE /* LICENSE */, - A852BD2371CC7B0A381314B27FCEF09A /* React.podspec */, - CF3E4054780F65CFE5176ADF472D2710 /* README.md */, + 28968048C63F0024535F476874B5A936 /* RCTAdditionAnimatedNode.h */, + F70EFB53C1A3C4F2E124FD62E4DFD39B /* RCTAdditionAnimatedNode.m */, + 644FB971047ACD9C57BED65D7B181202 /* RCTAnimatedNode.h */, + 65BF5FCF91226EA2E347326A1C1EC619 /* RCTAnimatedNode.m */, + F4FF83C7AA9D5B82D1B25F4C66E6A3A2 /* RCTDiffClampAnimatedNode.h */, + 31696CA6F4D83FAF1D87F672AE28C91F /* RCTDiffClampAnimatedNode.m */, + D4B7C2DF546FD58C9CB0C47CBBACEE56 /* RCTDivisionAnimatedNode.h */, + 59A77632E0DCBF332BAF05D8F86D9A68 /* RCTDivisionAnimatedNode.m */, + CE4E3BA81F913734B943B0D79FD94C10 /* RCTInterpolationAnimatedNode.h */, + 9593AC47A53CEBCB45FCCB6B798CC003 /* RCTInterpolationAnimatedNode.m */, + 7A70B72FA26EBA9767AD40302A931EE7 /* RCTModuloAnimatedNode.h */, + 154F0DB721A72A8D300972A561C284DC /* RCTModuloAnimatedNode.m */, + D8E559026E95A80EFF31A0DFF6AE8367 /* RCTMultiplicationAnimatedNode.h */, + 39316B5784F4787505092A5AABF9D6E8 /* RCTMultiplicationAnimatedNode.m */, + 86E23EB547BEDDB3C543905A655998E0 /* RCTPropsAnimatedNode.h */, + 105D57161F7A658346160DDC0C80C16E /* RCTPropsAnimatedNode.m */, + B59300921F101D78E90F40754963144A /* RCTStyleAnimatedNode.h */, + FA106E336C806F0000A4B2AA344706A8 /* RCTStyleAnimatedNode.m */, + DB11C6CB8C8A9F3F26683157F0C0735E /* RCTSubtractionAnimatedNode.h */, + 54BE99649705EC75D92947A72DD5E8DB /* RCTSubtractionAnimatedNode.m */, + C12663B0A1BE3DC7E46B0E3B3F1CAC67 /* RCTTrackingAnimatedNode.h */, + FCCB7AC756E3595B2C1ED67FC5FC21EC /* RCTTrackingAnimatedNode.m */, + A5220460B9E0C8EC0EE71478F8DEA1B2 /* RCTTransformAnimatedNode.h */, + 5E2163F6897A6A082FB8A263F614ED30 /* RCTTransformAnimatedNode.m */, + 27F8230010CC6119B0EE0FF8FEDF9763 /* RCTValueAnimatedNode.h */, + 9FC2FCFD1DA601CD1C5AB6EFD428FE0E /* RCTValueAnimatedNode.m */, + ); + name = Nodes; + path = Libraries/NativeAnimation/Nodes; + sourceTree = ""; + }; + 15989E229E6F374FA4447D239139ECDA /* UMFontInterface */ = { + isa = PBXGroup; + children = ( + 865DA5142F4FE11385E81F0A9A053245 /* UMFontManagerInterface.h */, + 89EE1FAAF4DCF5544AB933003EE1A536 /* UMFontProcessorInterface.h */, + E74C9EF0EB05832465DCF49353B70156 /* UMFontScalerInterface.h */, + C5FC56FC56C88A6C6F68FA3D69002A06 /* UMFontScalersManagerInterface.h */, + 0199E76DE9694C26EC4EDFD9A3A8580D /* Pod */, + 622F83CA119491FFA6C397473B2225E0 /* Support Files */, + ); + name = UMFontInterface; + path = "../../node_modules/unimodules-font-interface/ios"; + sourceTree = ""; + }; + 1699E12DB0F4F618EA56F0869D6F2D02 /* EXAppLoaderProvider */ = { + isa = PBXGroup; + children = ( + 827904353D3734D52899954551594443 /* EXAppLoaderProvider.h */, + 16B677B7081A3DC51B1488436F9B0241 /* EXAppLoaderProvider.m */, + 04254E93A41B45A459B730ED7C127B7F /* Interfaces */, + EF090E153A8A8DD675FAA00E0FFB6E5C /* Pod */, + 3CF1546EA1D84428D8793887A78483AA /* Support Files */, + ); + name = EXAppLoaderProvider; + path = "../../node_modules/expo-app-loader-provider/ios"; + sourceTree = ""; + }; + 16A1873FDAAF8A899E3D38767D3A8794 /* Pod */ = { + isa = PBXGroup; + children = ( + F1D1BD83D0629BB42853BD96E5F622D3 /* UMSensorsInterface.podspec */, ); name = Pod; sourceTree = ""; @@ -2210,6 +2893,26 @@ path = "../Target Support Files/FirebaseInstanceID"; sourceTree = ""; }; + 1CBE48D4CC44A71839CC0462ED0C42E5 /* Pod */ = { + isa = PBXGroup; + children = ( + E12E26659245FEED13E31803DD2E17AF /* LICENSE */, + 283F06081AF37E12487ECF73C1D45982 /* README.md */, + 53808EC7E8C925E9DFD55FC53A64DCCB /* RNScreens.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 1DD2FDD06B8D6B13D05412EEEF122D81 /* Pod */ = { + isa = PBXGroup; + children = ( + 16206E2127D10BB1D6D046CE0C797F8A /* LICENSE */, + 9FC7C49B5EC24D755DAB9E7A7FAC4BD2 /* React.podspec */, + C3CAD29B485D97440856B22EED5D8689 /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; 1E49913644AAD602982BAD865F406891 /* FirebaseABTesting */ = { isa = PBXGroup; children = ( @@ -2220,6 +2923,26 @@ path = FirebaseABTesting; sourceTree = ""; }; + 20C22A01910EDC65B2103E089BA70476 /* react-native-webview */ = { + isa = PBXGroup; + children = ( + 08D861E40D5AC82A4B5C559FCBD3EBE9 /* RNCUIWebView.h */, + B578DF328A96228F19A957411F5615C6 /* RNCUIWebView.m */, + 86509703295F22DF8DF2C71F2A7F79F9 /* RNCUIWebViewManager.h */, + 4F0B571476341CBAD9B4FBF1C6A98E39 /* RNCUIWebViewManager.m */, + C39561B2924B88B60DEDA640062C08F6 /* RNCWKProcessPoolManager.h */, + 875CE55CF06282B95D8CDF0CD9D1C9F8 /* RNCWKProcessPoolManager.m */, + B4B78C3D5579EF0029157E0361A173E2 /* RNCWKWebView.h */, + 23B56F3012E8E2C96BA634327B6D24E9 /* RNCWKWebView.m */, + 31F57D68FC16B6E7772AEA2799F8BCCA /* RNCWKWebViewManager.h */, + F03EC47BE3796BA3D41D4CA4C0C177BB /* RNCWKWebViewManager.m */, + 8C1BE8C8C4BCAA0C6FEB85A891F1C532 /* Pod */, + 63846C8AE5993AC177A05C27AFC5D017 /* Support Files */, + ); + name = "react-native-webview"; + path = "../../node_modules/react-native-webview"; + sourceTree = ""; + }; 2141029150C2FA187180BCCCB97AC3C0 /* Folly */ = { isa = PBXGroup; children = ( @@ -2244,6 +2967,60 @@ path = Folly; sourceTree = ""; }; + 215E697559E62CE040E8B8B18DC7EF34 /* Support Files */ = { + isa = PBXGroup; + children = ( + F117947FDCBF46D936DE38C848DD9260 /* UMCameraInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; + sourceTree = ""; + }; + 2177D64F265D1ACE2948210E57EDD00F /* UMFaceDetectorInterface */ = { + isa = PBXGroup; + children = ( + 3B90BA515B451E4550833D6168AF5A1F /* UMFaceDetectorManager.h */, + 3A45098498A0156920784A11C426CE97 /* UMFaceDetectorManagerProvider.h */, + F86A1F5B6EF4ED82640AB95BBB203330 /* Pod */, + 4A910CC833753AA10082936493290741 /* Support Files */, + ); + name = UMFaceDetectorInterface; + path = "../../node_modules/unimodules-face-detector-interface/ios"; + sourceTree = ""; + }; + 22C73B48D424801EF746509898302989 /* UMCore */ = { + isa = PBXGroup; + children = ( + BC5760D35C9D6F3A44AAF25728469960 /* UMAppDelegateWrapper.h */, + 9D3E20FDB85B0DEE0046C9D4D938B4D1 /* UMAppDelegateWrapper.m */, + 099FB3E4E24A8F22C58E2F084CD4784C /* UMDefines.h */, + 6D60F17861DBC7F2C20EBB3116BBD819 /* UMExportedModule.h */, + FC3B30836EDAC398396B777A009CE255 /* UMExportedModule.m */, + 37BAEBE1865DF8700BAF305E701AFB87 /* UMSingletonModule.h */, + FF7E9A0B4A1BF87864349533DD6892DD /* UMSingletonModule.m */, + 6651D14A463FBCCB3B207312B3279DFB /* UMUtilities.h */, + D01284F7E12F47F4E20C402D5BF5E354 /* UMUtilities.m */, + 23652696D4ED5CB7239C129C83DBB0D2 /* UMViewManager.h */, + 2BC1B641074F5EAF33B6FD1326641579 /* UMViewManager.m */, + 66DC85B028D5179AB464D374042B1120 /* Pod */, + 75A87438E051AFE029F313BD59A1C559 /* Protocols */, + 007092336DF98BE8AA39CBBA170A572A /* Services */, + E7323B671BBBA34D1594828574019461 /* Support Files */, + 4A040E9DA6A87AEDA1D8BA1E92CF8E98 /* UMModuleRegistry */, + BAACE191AA659377651C080864B246CD /* UMModuleRegistryProvider */, + ); + name = UMCore; + path = "../../node_modules/@unimodules/core/ios"; + sourceTree = ""; + }; + 23A22E4FE39002360055E4D8B4470371 /* Pod */ = { + isa = PBXGroup; + children = ( + A94865D128AFB2121A462881D305DF27 /* UMCameraInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; 23D7B61A49F5B4D25481DF496596E233 /* Frameworks */ = { isa = PBXGroup; children = ( @@ -2252,19 +3029,48 @@ name = Frameworks; sourceTree = ""; }; - 2B8BF381EA4CD9B8C11AA8C7E3B7E2F7 /* RCTAnimation */ = { + 23EF3B094C6CB5BEE84227E0AE87443B /* Drivers */ = { isa = PBXGroup; children = ( - 65014966900122C0605440FB66B2052E /* RCTAnimationUtils.h */, - 42523AE707DB25D20C30880A76E1DACE /* RCTAnimationUtils.m */, - 31988722B051F3E6DC99C321028C88D2 /* RCTNativeAnimatedModule.h */, - 2904B07AEDCD591530EE3FE6876076CD /* RCTNativeAnimatedModule.m */, - F9BB4C06C5A95A98F8C4A4FBE17EB73A /* RCTNativeAnimatedNodesManager.h */, - EB277D57FCDDE14153AD6F54129AED98 /* RCTNativeAnimatedNodesManager.m */, - 4BF64C403EDFF4FE2EA3753AD5B5ABD2 /* Drivers */, - 74C363A5AD6E1417EEF37C5489F5B76B /* Nodes */, + 27A4E0032F202338C1360730C41D29B2 /* RCTAnimationDriver.h */, + 5C54F46CAA5ABA063C27C4748BEC52F4 /* RCTDecayAnimation.h */, + EDB5A32FBD68C6FD19FF4684D6E1559D /* RCTDecayAnimation.m */, + 72A54D2765C05FE41BD92EBB53029C7C /* RCTEventAnimation.h */, + 1503B7A4EB456C5193A33AB980695084 /* RCTEventAnimation.m */, + 1D3B3126CE0C8F773C1AC4FB5169ED59 /* RCTFrameAnimation.h */, + 9E7C063D5627A21993710F970491FE2F /* RCTFrameAnimation.m */, + 69C6C9E71F93F96CD7C21840D3EA5213 /* RCTSpringAnimation.h */, + 19C75DF1B093279DAEEAA1D92673633C /* RCTSpringAnimation.m */, ); - name = RCTAnimation; + name = Drivers; + path = Libraries/NativeAnimation/Drivers; + sourceTree = ""; + }; + 2747A1D64DD6A56FB5C47A6A54DEFA8F /* Pod */ = { + isa = PBXGroup; + children = ( + D8D594BCF7B74F8307E4DC5D83532E2D /* EXWebBrowser.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 27CA84F3BED1059711CF71BF5FE00F85 /* RCTNetwork */ = { + isa = PBXGroup; + children = ( + 07B3426C5AF3D1948C481251F313AE3A /* RCTDataRequestHandler.h */, + B06A8810673DECD6FFE160AF6D8024E9 /* RCTDataRequestHandler.m */, + 8E051206ABB075F6063950E50411FFE4 /* RCTFileRequestHandler.h */, + 3CBF30BFB9F498ABE29D057F170D1B5B /* RCTFileRequestHandler.m */, + CE94DB90F3F027BA25F6443E48EF5AFD /* RCTHTTPRequestHandler.h */, + FC06EC95FFDB06577489168A110CC63B /* RCTHTTPRequestHandler.mm */, + E30D961A588DE5533FD3B6EC76F61BD5 /* RCTNetInfo.h */, + 4C5E1C8337137A34CC3F560FC460E765 /* RCTNetInfo.m */, + 1BEF09F9D90B35B1A3DFE48144EE516E /* RCTNetworking.h */, + A7453F981D19DA81AD4F168DD9F75D4C /* RCTNetworking.mm */, + 2252B557FDFE6EB0317C8748FA0EF84A /* RCTNetworkTask.h */, + CF4EF6F5BD53B68956DEDF03719836B1 /* RCTNetworkTask.m */, + ); + name = RCTNetwork; sourceTree = ""; }; 2BD9E0D96E3A87D9AF2D1911D3C55E10 /* Support Files */ = { @@ -2278,33 +3084,23 @@ path = "../Target Support Files/Folly"; sourceTree = ""; }; - 2CA33BD7FFDE88790D6DBF5305DB1BA8 /* Products */ = { + 305BAB4967A054F9BC45E97BD07446F6 /* Support Files */ = { isa = PBXGroup; children = ( - 56360009B0456FD26BACD30E15A84CEF /* libDoubleConversion.a */, - 03A09AA251F031FF69A29DE97D080BF2 /* libFirebaseCore.a */, - 81D09FC952E2900D349B6C091BBB48D9 /* libFirebaseInstanceID.a */, - 756ACE90B6EF13570602DFBD7D8AE1AE /* libFolly.a */, - F812F670169AC00AA67550FF954C1AA5 /* libglog.a */, - 0D5DF052A23CB44F008C82005B2B7C3D /* libGoogleToolboxForMac.a */, - F1306D2356A305018B757A6A8FC5F31E /* libGoogleUtilities.a */, - 5B4C2F4E3F95179CD28B9A7106F8B221 /* libGTMSessionFetcher.a */, - EBCE8C1DFF8C92EB029DB05833E4DE3F /* libnanopb.a */, - DC843BEA7141F1F2C9247CF1C926B684 /* libPods-RocketChatRN.a */, - DCDBE7B0BA4228C239E0C6328B2C837D /* libProtobuf.a */, - 215921D9CE6F36E7F6E845A38B13740B /* libQBImagePickerController.a */, - 27AEE0C33CBDF4FAF22C15057410EE12 /* libReact.a */, - D1B2A9C0BA53D97B5E93E7E303F76EA5 /* libreact-native-orientation-locker.a */, - 4D9AE1F5735B89A753A7A8098AC49330 /* libreact-native-splash-screen.a */, - A99F7986D0F96BA226868846D462E69C /* libreact-native-webview.a */, - F25FE0B186708D639872D3A8C84A0E72 /* libRNDeviceInfo.a */, - 93416D7D0668795471B3617499D61693 /* libRNImageCropPicker.a */, - 01DC8D519261EBAA259B879B90D6A7C5 /* libRNScreens.a */, - 1A760F53C16EFEE83DF51B39C1A8859E /* libRSKImageCropper.a */, - 4E2757FF8021BE2FC2EBAAA4A9C1C777 /* libyoga.a */, - 2B297F30D487A4852E7A2ED2EDEE6EE7 /* QBImagePicker.bundle */, + 6D2E0E8B2C2AF5062A4F72C4175E115E /* UMPermissionsInterface.xcconfig */, ); - name = Products; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; + sourceTree = ""; + }; + 306719FA6EFB2EFE064A03F5A8A716DE /* Pod */ = { + isa = PBXGroup; + children = ( + 9E704678D93EDB36E91F878769E0DAEA /* LICENSE */, + FCDD6B4854B4B394A846C9CCAD8828A5 /* react-native-splash-screen.podspec */, + A16725C9C69BFABB641B5E69D2D2F1F9 /* README.md */, + ); + name = Pod; sourceTree = ""; }; 31B663C5361B9A0EEB26334960644935 /* Network */ = { @@ -2334,20 +3130,16 @@ path = Firebase; sourceTree = ""; }; - 3606BF9E3320F507E78CF8F8792959D1 /* Text */ = { + 38FDCEBA3F17619C9F1A5DFC627C32D0 /* BaseText */ = { isa = PBXGroup; children = ( - C65AC77721782754042C1E3C414C0861 /* NSTextStorage+FontScaling.h */, - 71D509A08DB898868793846A45629FFA /* NSTextStorage+FontScaling.m */, - 3AAE37A383752FEFC15D64258F983449 /* RCTTextShadowView.h */, - A4E337581C3EFF579376133751882AD0 /* RCTTextShadowView.m */, - 9DCEB2A0F51BCB15DF22F9D5E25D9320 /* RCTTextView.h */, - 9C9703086F9474B7AF28244A6A1FA38C /* RCTTextView.m */, - 559BAFBAFE3A8EEECCC160B988BF99CA /* RCTTextViewManager.h */, - EAFFAADBAD13DB39F5342D650A70E31F /* RCTTextViewManager.m */, + A869DF656102841DE5FC7A155C9DEF86 /* RCTBaseTextShadowView.h */, + 3972D1E8F23C8AE556AEE9397C793169 /* RCTBaseTextShadowView.m */, + 82CE3BE9C2A98810A0BA9083339B03EC /* RCTBaseTextViewManager.h */, + AB1CD2CBBAEFDE60A270962351881C23 /* RCTBaseTextViewManager.m */, ); - name = Text; - path = Libraries/Text/Text; + name = BaseText; + path = Libraries/Text/BaseText; sourceTree = ""; }; 392E4784A690A07630EAD5B1548E949F /* Frameworks */ = { @@ -2358,66 +3150,146 @@ name = Frameworks; sourceTree = ""; }; - 3BB396EF3B57F75ECBCF296BCAEEABAF /* Pod */ = { + 3A63C5105EB5F1806C789C2758BFCB22 /* React */ = { isa = PBXGroup; children = ( - AC335269B70E9348EEF88C2C5FF92C05 /* LICENSE */, - 5941744194FE1D35F329AEB096D95B84 /* react-native-orientation-locker.podspec */, - 1EF928B260E2D9400137F326DF55CDF2 /* README.md */, + A18CB7A96EE59337C543EB0BC71B9076 /* Core */, + E94E602693CB8A6DE0A5BC818F90D970 /* fishhook */, + 1DD2FDD06B8D6B13D05412EEEF122D81 /* Pod */, + 632221406813CB654F91762138DB5799 /* RCTActionSheet */, + 439F9F48A3ACBB69EFB35A223F313851 /* RCTAnimation */, + 866359E16F6D1EF07746F1F35F2585A0 /* RCTBlob */, + 3F37124B59B60D6DF6A636F786F73E87 /* RCTImage */, + 9D5BCB0335A0357200FBA2FE7AF351A6 /* RCTLinkingIOS */, + 27CA84F3BED1059711CF71BF5FE00F85 /* RCTNetwork */, + 5E62B79861DC4F49842088599C3E5DF2 /* RCTSettings */, + D803B400F116114BEB1E08698BF37E70 /* RCTText */, + 8D1A7FBB31096639E825D88F74713058 /* RCTVibration */, + 126E523D5B439B193E63AB1F8B7CD487 /* RCTWebSocket */, + A60554627D3487BD1B99D9E4686DB3B9 /* Support Files */, + ); + name = React; + path = "../../node_modules/react-native"; + sourceTree = ""; + }; + 3BFCCADC3117D4FD05DF57E0E8A50B77 /* Pod */ = { + isa = PBXGroup; + children = ( + 1739B33D1D2821BDDA401667850768A5 /* UMPermissionsInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 417B32BA9DF17A9E52F36E7EDF5596E0 /* Modules */ = { + 3CF1546EA1D84428D8793887A78483AA /* Support Files */ = { isa = PBXGroup; children = ( - 14D2F14F5C50E989487A162297616FDE /* RCTAccessibilityManager.h */, - 4C7937B3E054E3756E352EE97537F7FF /* RCTAccessibilityManager.m */, - 6BC3E2435C96169FB9769DD04E07D376 /* RCTAlertManager.h */, - A806266B59579741AC7963B2FBFECB97 /* RCTAlertManager.m */, - E00479C15A1CABA837683F951CCE0595 /* RCTAppState.h */, - E7A421C37AE4D392D374DB082E43BD1F /* RCTAppState.m */, - 0C0C4F372C3EF1599232EAD98E083EFC /* RCTAsyncLocalStorage.h */, - 8F5408D24CE01EBCD750F595D4CB75F2 /* RCTAsyncLocalStorage.m */, - 83C4FDF340E9674860657ABE2A678B46 /* RCTClipboard.h */, - CA3CF5BEBB14D776A34700242D0055FE /* RCTClipboard.m */, - 6775F807D5634E9C16A0E6098D285C15 /* RCTDeviceInfo.h */, - 4697A7C14A62FA8D0290C1BDD256F482 /* RCTDeviceInfo.m */, - C63C1E16ED3B5E40B1E60FA07FD5D036 /* RCTDevSettings.h */, - EF731E843B8AAA06A07BDD4BACC499E5 /* RCTDevSettings.mm */, - AE426B2446CAC54A089CC5CC8D32FE73 /* RCTEventEmitter.h */, - E49E44A687AA45641CF5EE35E3C85502 /* RCTEventEmitter.m */, - 6E3E97BF080403F44F65AE2E02AF57C3 /* RCTExceptionsManager.h */, - D9CB9224E6BF6EE164995B592C775D55 /* RCTExceptionsManager.m */, - 1E42FC5C7A5540BD7B96542AAC3BC145 /* RCTI18nManager.h */, - 4E53FD7884463BAE09E36BD46399952A /* RCTI18nManager.m */, - A246883750E9A67D31C67E4876965109 /* RCTI18nUtil.h */, - F5624D3D91EA987DC544E2C89144B590 /* RCTI18nUtil.m */, - 4B9153764CB727B54ADAB978344D5D90 /* RCTKeyboardObserver.h */, - EFCF15154A569D3A9AC0EBBC211E2B81 /* RCTKeyboardObserver.m */, - BC98DA9E2630E7FAF61DF1CA6B6943BA /* RCTLayoutAnimation.h */, - 516301F78F394A22B000158228B9A457 /* RCTLayoutAnimation.m */, - E48D1F25E8F78E45B8E361102AC61DAE /* RCTLayoutAnimationGroup.h */, - AD454D317818A36E921D2785E421BBB6 /* RCTLayoutAnimationGroup.m */, - DEF2307586C18123880159036642662B /* RCTRedBox.h */, - 90C00B4F2EE07875CCAA480D8DA60642 /* RCTRedBox.m */, - ADC028AA5985D4FFBBC05DF915043A20 /* RCTRedBoxExtraDataViewController.h */, - 57E63DFDCD018321720C452EE0E7FA0D /* RCTRedBoxExtraDataViewController.m */, - F7578AE71D7129B33E7A7F5BE670CC01 /* RCTSourceCode.h */, - ED8913A45980A3CCA476A3541A08266A /* RCTSourceCode.m */, - 21223916590270E5BC6B2E021664B69B /* RCTStatusBarManager.h */, - 321F5A18D019E3A656CAC03FD4959573 /* RCTStatusBarManager.m */, - CCCDA5F46F2F7586F62132765BFD28F2 /* RCTTiming.h */, - BBE305AD8A805D7060BD76BBB88DAB8C /* RCTTiming.m */, - BFC8035F8D26A6AB204E18F8968C10AE /* RCTUIManager.h */, - E41AF7A25F44F1D9E93F2BDCA481CCDA /* RCTUIManager.m */, - DE081F37A56015E583D223D0A2279CA7 /* RCTUIManagerObserverCoordinator.h */, - 331BCB92AAB21000A74A9DCC0612D06D /* RCTUIManagerObserverCoordinator.mm */, - ED24076EFD19363062C1E77F70B019E5 /* RCTUIManagerUtils.h */, - 7833F0EBCA5D86F0DD62CF485FDFFC05 /* RCTUIManagerUtils.m */, + B14901E39FDB13489A437EEC07959233 /* EXAppLoaderProvider.xcconfig */, + CCAAE8B347C2D621F490FBE4518C20FC /* EXAppLoaderProvider-dummy.m */, + 4871A62C6A0D180A6A7E82430F5C539F /* EXAppLoaderProvider-prefix.pch */, ); - name = Modules; - path = React/Modules; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXAppLoaderProvider"; + sourceTree = ""; + }; + 3E9186E7808BEA968C3F284EFA8D3B11 /* Pod */ = { + isa = PBXGroup; + children = ( + A60F8928E55BB954CA87F79125F524D8 /* UMImageLoaderInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 3F01BD455D6E2426308E6AC856BBFF03 /* Products */ = { + isa = PBXGroup; + children = ( + 37E1694CE2D0160C2911EFCAA4EA68CA /* libDoubleConversion.a */, + DE8C98CF405C4C0758506C67672E008B /* libEXAppLoaderProvider.a */, + 7DFFEB43A1110EE2509463E56455D824 /* libEXConstants.a */, + 1991FC9EB059A762813E3CE3DA38C063 /* libEXFileSystem.a */, + 3DCDD2EC2DECA027E0BB0DF778B159FA /* libEXPermissions.a */, + DE7A154907DB1502F8F25B861AE7BD5B /* libEXWebBrowser.a */, + 13412E2D6339383A001F3D53F5A728DF /* libFirebaseCore.a */, + CC8860461260D68400B7B8CA31F56CF9 /* libFirebaseInstanceID.a */, + 2DD37E892C05DC12C0BA26819F7EFDDC /* libFolly.a */, + 6FED2DB30E28990CA19A21EC6ECFC98C /* libglog.a */, + 927C6F78FA4B889D65F347F1717D8FF9 /* libGoogleToolboxForMac.a */, + 442616B03AE73CD48C782458395CC832 /* libGoogleUtilities.a */, + 3E303A73DE2B66F24849E34488ED1740 /* libGTMSessionFetcher.a */, + 0AD7E622812B0B3D1A3D979F059CDB6B /* libnanopb.a */, + 319F339DE8D540C13ECE3977931E76D5 /* libPods-RocketChatRN.a */, + 0344906936C32DC0CF0EAF792358185B /* libProtobuf.a */, + 6E9370B84BD65621682005D092D66A71 /* libQBImagePickerController.a */, + A3080545228A95E4469A6F7DC9CEECF3 /* libReact.a */, + 68E1278EF58AEE83AA308A392BB834DF /* libreact-native-orientation-locker.a */, + A1E44785E33C80F42A08C18B6461644E /* libreact-native-splash-screen.a */, + 637D8B1A89F8459DE510886A0DFCEDDA /* libreact-native-webview.a */, + A9362FDC2C11BC5A7DCEEE60E57E97F0 /* libRNDeviceInfo.a */, + 91F39668AF756560749F9DE2E9F4CFB0 /* libRNImageCropPicker.a */, + A6A138D6667BD4A9D04D2E36F1AEBCEC /* libRNScreens.a */, + 0C13C1759134EC6D8C8CE62B45116B0B /* libRSKImageCropper.a */, + C69B9FBCE99A12392A2C9854A9B82B1E /* libUMCore.a */, + FEDD1E83251AD676665505AE66FA1363 /* libUMReactNativeAdapter.a */, + 4D96490599AA0027EECDEB35A711F9AC /* libyoga.a */, + A98AAEA3C59249FD17A9A8561E1EB090 /* QBImagePicker.bundle */, + ); + name = Products; + sourceTree = ""; + }; + 3F37124B59B60D6DF6A636F786F73E87 /* RCTImage */ = { + isa = PBXGroup; + children = ( + 9CBA80707BE987E6F15EB97A130FA46A /* RCTGIFImageDecoder.h */, + FAE559B67EE568E4F3255616EB1CBC31 /* RCTGIFImageDecoder.m */, + EBC136A0127DCBB01532CD80C213127B /* RCTImageBlurUtils.h */, + 9A0A14401AFDBA15904379B395E424AF /* RCTImageBlurUtils.m */, + 5C08ACA581147F4254DBA5DEE3B9955A /* RCTImageCache.h */, + 7DB2ABC68A5843D3062CFB79E0DA3750 /* RCTImageCache.m */, + 959D3D5ED656E8189AA0BA11B714B932 /* RCTImageEditingManager.h */, + 36B6D7D92D3F3B29DA454B082FED626A /* RCTImageEditingManager.m */, + 753E68C7779BA0195DE26FB89A29D3D5 /* RCTImageLoader.h */, + C500591933180F4B64553EB9D54F0885 /* RCTImageLoader.m */, + D3784D01BC906127A80BF239C65CC032 /* RCTImageShadowView.h */, + BE25698D891B932BB310CDD41DC4A0BF /* RCTImageShadowView.m */, + CA4456B1E1B2F58C08FC5F9D80DE0E29 /* RCTImageStoreManager.h */, + 0D2F5CFC6288907B38A9AAA97FAB06C6 /* RCTImageStoreManager.m */, + E63221B943F21177C58504D60A4334F2 /* RCTImageUtils.h */, + A5412F615041F9382574E76648FCA7AC /* RCTImageUtils.m */, + F4A3ED0BDCE07EA6565A8FB6D3BD0BF3 /* RCTImageView.h */, + A6D5AB497DB09574121258BD741DCE44 /* RCTImageView.m */, + 5D8DBD237525CC37CA939174B48187DE /* RCTImageViewManager.h */, + 98597F8A04524E32537B05C16DA9F737 /* RCTImageViewManager.m */, + 15A8C8844C114B6B90E595F0FB665913 /* RCTLocalAssetImageLoader.h */, + FB72E7B88105CA3A03C3DECB2EA1E8F3 /* RCTLocalAssetImageLoader.m */, + C4BBC1753BB27682B145E3F0DFCA1627 /* RCTResizeMode.h */, + 3897856CEA3EB47EAE7C5EC2AF5AF11E /* RCTResizeMode.m */, + ); + name = RCTImage; + sourceTree = ""; + }; + 40EBAD1FD98726E7F08344C5C48AA016 /* Support Files */ = { + isa = PBXGroup; + children = ( + 2B78865D53A81FB2F6E1D3C6A4E1FDE8 /* yoga.xcconfig */, + 27AED10E7415E8EAC54A176445B00B2B /* yoga-dummy.m */, + D5EB47023428BD1409A7AB659F7D00D4 /* yoga-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/yoga"; + sourceTree = ""; + }; + 439F9F48A3ACBB69EFB35A223F313851 /* RCTAnimation */ = { + isa = PBXGroup; + children = ( + 1F7E0D826B79739EA3503DA4FF3A345A /* RCTAnimationUtils.h */, + 1272924F1716C2CEAB7E63FE004B1EDB /* RCTAnimationUtils.m */, + 498B56CF2366F3CAB9ACB1466E9766FD /* RCTNativeAnimatedModule.h */, + 82FD8EDEE80E043B579CD9B534EB36D8 /* RCTNativeAnimatedModule.m */, + 24DEE93B29381E1054AA3580912C3160 /* RCTNativeAnimatedNodesManager.h */, + 759085FEB57952F8DF50500B125783A5 /* RCTNativeAnimatedNodesManager.m */, + 23EF3B094C6CB5BEE84227E0AE87443B /* Drivers */, + 12F7666D0781CD424D3E4501B710D9FF /* Nodes */, + ); + name = RCTAnimation; sourceTree = ""; }; 444D3A51C52BDCF503FA7733BB2A4739 /* nanopb */ = { @@ -2511,68 +3383,81 @@ path = FirebaseInstanceID; sourceTree = ""; }; - 4AE700EE7AE2E3265C70BFBFB9CFDB52 /* RCTActionSheet */ = { + 4A040E9DA6A87AEDA1D8BA1E92CF8E98 /* UMModuleRegistry */ = { isa = PBXGroup; children = ( - DA1C2EBCB3B2954FE868E7E781A920E4 /* RCTActionSheetManager.h */, - 3EA501060922284179CF969B933D566C /* RCTActionSheetManager.m */, + 5429D0E9E33F561A70968BE8CDDB8440 /* UMModuleRegistry.h */, + BB3766A8CE178857C32BCB7E8B3D700F /* UMModuleRegistry.m */, + 2E84271A95440E502D18C5E94D631D9E /* UMModuleRegistryDelegate.h */, ); - name = RCTActionSheet; + name = UMModuleRegistry; + path = UMCore/UMModuleRegistry; sourceTree = ""; }; - 4BA1D7A80B2D3135489C38EC587D4180 /* Core */ = { + 4A8DB48B351EDF418F703C47779F0C39 /* UMModuleRegistryAdapter */ = { isa = PBXGroup; children = ( - E5B38463079A17AC4B3BAB674A803CBE /* Base */, - 417B32BA9DF17A9E52F36E7EDF5596E0 /* Modules */, - 040E6A68E1F499F8F2707AEA61A55EB4 /* Profiler */, - 666F9B9A920631EB9BB8D55C922D7591 /* UIUtils */, - 6302CB92C98FBD03E5AD2E75E55FE65A /* Views */, + 7EA85B9EE28BF14E7D97230CBCE2F04E /* UMModuleRegistryAdapter.h */, + 52DED0382D977A6024E4E77EBC971FD8 /* UMModuleRegistryAdapter.m */, + A2D240154C82D5836FD6D6B448742EB5 /* UMViewManagerAdapterClassesRegistry.h */, + 49203CB3A39CA1F41F48B859BA32E1D1 /* UMViewManagerAdapterClassesRegistry.m */, ); - name = Core; + name = UMModuleRegistryAdapter; + path = UMReactNativeAdapter/UMModuleRegistryAdapter; sourceTree = ""; }; - 4BF64C403EDFF4FE2EA3753AD5B5ABD2 /* Drivers */ = { + 4A910CC833753AA10082936493290741 /* Support Files */ = { isa = PBXGroup; children = ( - D143C57019EAA61585EDB9AA33F2BF85 /* RCTAnimationDriver.h */, - B7CD70A4A27BBF635DC35F118B8304C2 /* RCTDecayAnimation.h */, - 92EA56C94D4D81CB6F8E2DC19B0144AF /* RCTDecayAnimation.m */, - 2EFCC32F7A879DBCD63AE50F30541956 /* RCTEventAnimation.h */, - 30FB3FB168879CE5737B4D9631DB04D4 /* RCTEventAnimation.m */, - FD3C03B9C3CFFF0F451AC452275FADB5 /* RCTFrameAnimation.h */, - 371F586AC27DF843AA0CA1ADFC622A01 /* RCTFrameAnimation.m */, - 4972B541A5E6E8E29A1869AD5C1471F1 /* RCTSpringAnimation.h */, - 76C1E066642A7A0926E6516B46C95FFF /* RCTSpringAnimation.m */, + DAE1F79C74E621124BCDC16841975A31 /* UMFaceDetectorInterface.xcconfig */, ); - name = Drivers; - path = Libraries/NativeAnimation/Drivers; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; sourceTree = ""; }; - 4C013A8427E622F8F8282688513565BF /* BaseText */ = { + 4BC4642299D23753E82D7F1026A17ADC /* Pod */ = { isa = PBXGroup; children = ( - C4ACBAE7040628BE0DDBF266D8AA2E3E /* RCTBaseTextShadowView.h */, - 7E7D5E9AB7D14742F47AC44922BD15C5 /* RCTBaseTextShadowView.m */, - E65F90858B3643E1784B9F313669F8A0 /* RCTBaseTextViewManager.h */, - 3F7A146ED1B773355256A8826A9FB518 /* RCTBaseTextViewManager.m */, + 031F45FE05A074E123EBFF0851BB7E1C /* UMBarCodeScannerInterface.podspec */, ); - name = BaseText; - path = Libraries/Text/BaseText; + name = Pod; sourceTree = ""; }; - 4D816F599F8B1F2C365EA02B82149264 /* Singleline */ = { + 4BDB2A377D4602D4DCE8CEB55334FA1F /* UMNativeModulesProxy */ = { isa = PBXGroup; children = ( - B9AFBBA2148B599882A3B08288790B0F /* RCTSinglelineTextInputView.h */, - 6F60FD23BB00312BCDEFFC999D443E21 /* RCTSinglelineTextInputView.m */, - D828D9BBB1FBDC571D8A67EC847DBC1F /* RCTSinglelineTextInputViewManager.h */, - E15DE3EA5E2FE9DD8335D19B7AC88073 /* RCTSinglelineTextInputViewManager.m */, - A2759BD8D718D95515C38FA2B1ECA63C /* RCTUITextField.h */, - 384758638F2B841DE9132AC71A6846F6 /* RCTUITextField.m */, + FABE7A4D0F7AAB8B1351F965306DE4CC /* UMNativeModulesProxy.h */, + B03A39B9EB5100925384D28FC7D387A9 /* UMNativeModulesProxy.m */, ); - name = Singleline; - path = Singleline; + name = UMNativeModulesProxy; + path = UMReactNativeAdapter/UMNativeModulesProxy; + sourceTree = ""; + }; + 4ECCC527E5092ADB469F6FDB673E50F8 /* Services */ = { + isa = PBXGroup; + children = ( + 62F46A50BC1F0985EABC6DB040306E23 /* UMReactFontManager.h */, + FFFA26A42C9B9AB64628203684027FA4 /* UMReactFontManager.m */, + E37C8977F315F56A1E44BD41F80EAF03 /* UMReactLogHandler.h */, + F8B5CD91CC86AD7935C9D1BF1ACB5ED0 /* UMReactLogHandler.m */, + 0F745DA3C984A2AACDE016C230536203 /* UMReactNativeAdapter.h */, + 90017BDF5F3E8258C920A782FE651D9C /* UMReactNativeAdapter.m */, + EC6AAB2748F1E3C806E8DF0D0D1DE9D9 /* UMReactNativeEventEmitter.h */, + D869731AB7C204E5D46212EB8B2F7FB7 /* UMReactNativeEventEmitter.m */, + ); + name = Services; + path = UMReactNativeAdapter/Services; + sourceTree = ""; + }; + 4F98609FBAE2F50633E0AE4401A862A2 /* UMCameraInterface */ = { + isa = PBXGroup; + children = ( + 3AD79BCCA92E9AB3EDF2E1E4D9F034D1 /* UMCameraInterface.h */, + 23A22E4FE39002360055E4D8B4470371 /* Pod */, + 215E697559E62CE040E8B8B18DC7EF34 /* Support Files */, + ); + name = UMCameraInterface; + path = "../../node_modules/unimodules-camera-interface/ios"; sourceTree = ""; }; 4FC37C41F11924A2602F786314152701 /* Pods */ = { @@ -2604,23 +3489,72 @@ name = Pods; sourceTree = ""; }; - 5948B370922190F474295B85D6D79E9E /* RCTNetwork */ = { + 5247C207F14AA7150C919B744BE4B969 /* Singleline */ = { isa = PBXGroup; children = ( - 33293D01B6A94EF07C1B85856EBE99CF /* RCTDataRequestHandler.h */, - 8766D58086E61F45AD40DD1A14876CB7 /* RCTDataRequestHandler.m */, - 732E544ACD6FE923DAA5E78E02F1E202 /* RCTFileRequestHandler.h */, - 65935DE2B6D45B09853ABB8E59F1D354 /* RCTFileRequestHandler.m */, - 06CF7190944DC4FA395F7C1579BA8F1C /* RCTHTTPRequestHandler.h */, - 5ACFB0EF1D24E37CA005A2812636360A /* RCTHTTPRequestHandler.mm */, - 4AD712C94A3ADC9DBEE1E9E06DAF35FF /* RCTNetInfo.h */, - 88A0B7F93E25602A3433BE4D084D56A1 /* RCTNetInfo.m */, - 5CE7585AD01DB1875E747CD0EA893460 /* RCTNetworking.h */, - 20E9E9F16FB59BE7910B25BC29B02B33 /* RCTNetworking.mm */, - 293F77756560B9164EC847E289ABEC61 /* RCTNetworkTask.h */, - 02978CB1C748E8FA706CC0E6AEA5317D /* RCTNetworkTask.m */, + 92EDC33D7727A27A07067AF93A154505 /* RCTSinglelineTextInputView.h */, + CFB16878581A4B3157231362D33F0A91 /* RCTSinglelineTextInputView.m */, + 53155E24D644CB7DD8AEEF28C0128C6D /* RCTSinglelineTextInputViewManager.h */, + 0F397216076B3A42C4D3B6ABB27F2716 /* RCTSinglelineTextInputViewManager.m */, + 8FB5AABC3E6A30B71EFA1A6B0ECBC64D /* RCTUITextField.h */, + B1BBBEAB63B18E68BE21C18D6DE3890D /* RCTUITextField.m */, ); - name = RCTNetwork; + name = Singleline; + path = Singleline; + sourceTree = ""; + }; + 526C94951A9A772BFE966B6A6D6D6C54 /* RNImageCropPicker */ = { + isa = PBXGroup; + children = ( + F550274E78EAC3866BE2D581199E62FC /* Compression.h */, + D65AD727225BB92275B31AE45AD57991 /* Compression.m */, + 47D5B955345FDC85DBE2F5F2869E5E6C /* ImageCropPicker.h */, + F688E90AA09BCD1670AC3241EA0D2F50 /* ImageCropPicker.m */, + E9AE052459B4C798ACAB6AAB4C2F0CB0 /* UIImage+Resize.h */, + 8883E203DD23C2228AC3CD2526F59AD6 /* UIImage+Resize.m */, + 85A169252DBDD6B3CFDF20546423A478 /* Pod */, + 0A91067BAA720680B76AD2F65158AA7E /* Support Files */, + ); + name = RNImageCropPicker; + path = "../../node_modules/react-native-image-crop-picker"; + sourceTree = ""; + }; + 53D6A2911A88FA23C6160C395275AAD0 /* Pod */ = { + isa = PBXGroup; + children = ( + F367BC27BA2A66341EF660D893BA570E /* LICENSE */, + 46DBBDBDBCC61E52C87074C9725BA9BF /* README.md */, + 69C9978E49D3AC77EC30C25C215F3BF3 /* RNDeviceInfo.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 55A5EAC29D0D91FBF71A928DD748FBB5 /* Support Files */ = { + isa = PBXGroup; + children = ( + 8A8B63C3C3E9B008F60DB8D49B691793 /* UMConstantsInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; + sourceTree = ""; + }; + 586E32865D9192333BEAC5E76B47B0B8 /* ScrollView */ = { + isa = PBXGroup; + children = ( + D30371668EC500B8F2C42216B72C416E /* RCTScrollableProtocol.h */, + 0E7A62CAE2B8895E6620E47D22BA5DAA /* RCTScrollContentShadowView.h */, + 6A2594A10A4885901C0BFD072557F9F1 /* RCTScrollContentShadowView.m */, + 84673A9D171E25B61A18916CBDE5E0A7 /* RCTScrollContentView.h */, + 0E00ACEB403A6B40CD17DB2EBED4A1DE /* RCTScrollContentView.m */, + 8C1E45D949FD20EBD8D335042E186B31 /* RCTScrollContentViewManager.h */, + B406D0536C0F94FE58D880726B336EBA /* RCTScrollContentViewManager.m */, + C74472574CEDDBD4B1DB4EC48F36F06C /* RCTScrollView.h */, + 51A42928169BF25DD5E498742C89294D /* RCTScrollView.m */, + C073E6DF4FABD065524DAD8DF959D848 /* RCTScrollViewManager.h */, + C0A545E4692C9AC24FE272C1060B8764 /* RCTScrollViewManager.m */, + ); + name = ScrollView; + path = ScrollView; sourceTree = ""; }; 5AEF3ADCEFFED332FBD4A8B103D40EF0 /* ISASwizzler */ = { @@ -2634,12 +3568,24 @@ name = ISASwizzler; sourceTree = ""; }; - 5F668467F4F1AEC68B90DACDDDD02E8E /* Pod */ = { + 5AF97F24B101DF40258CF7B3AB82443F /* Support Files */ = { isa = PBXGroup; children = ( - F152DD164DB7ACEA422FCEB079E29CB7 /* yoga.podspec */, + C7B63CE840909FCBB17155958D8928D5 /* UMReactNativeAdapter.xcconfig */, + 8E16ADD60A0F450EBE3C4DC585815576 /* UMReactNativeAdapter-dummy.m */, + 4284423E14F27A868E6096BFF77BD979 /* UMReactNativeAdapter-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; + sourceTree = ""; + }; + 5E62B79861DC4F49842088599C3E5DF2 /* RCTSettings */ = { + isa = PBXGroup; + children = ( + 0FD359E6EAA27994114D9A4C0BBF3C8D /* RCTSettingsManager.h */, + 97EF9E601C86950652C2E2679BB15036 /* RCTSettingsManager.m */, + ); + name = RCTSettings; sourceTree = ""; }; 6063987EB40204B4B3CF5FB8995D3747 /* Support Files */ = { @@ -2653,134 +3599,33 @@ path = "../Target Support Files/GoogleUtilities"; sourceTree = ""; }; - 628CED234E4C529D5D1A72E5E33A97B8 /* yoga */ = { + 622F83CA119491FFA6C397473B2225E0 /* Support Files */ = { isa = PBXGroup; children = ( - 0D17550BF994FBF06C73511851CEB5EE /* CompactValue.h */, - 211E0ECE8F57C74C6EDD857AAF9DB816 /* instrumentation.h */, - 91A35AD1F7E5AB5426953BBB211E62FD /* Utils.cpp */, - 4A4EB1F6C34C64107C63FBDC6626368C /* Utils.h */, - 32E9D5A267B3193EC960E9AFFF3A89A8 /* YGConfig.cpp */, - 1503277A849EFD3C4519B0DE0E9974AC /* YGConfig.h */, - 57A1108F22DB53BDAA0BE96B7DDCCBD4 /* YGEnums.cpp */, - 72040EF500C630FB526C13293B6036D7 /* YGEnums.h */, - AE03559C371F1BFBFBF509BC8D9CBFCE /* YGFloatOptional.h */, - D8C2FBD9146DD6CBA2261912D7829F2A /* YGLayout.cpp */, - 394428DD51DBEC8515A0F375EB4829A2 /* YGLayout.h */, - E0CF2B48E590396E282D7161D3C9379E /* YGMacros.h */, - 8062C941EC8C4E98617883010925AF7C /* YGMarker.cpp */, - 278C595B434D1016AAB40EF5A84CCAD2 /* YGMarker.h */, - 96A259CA1DAC0597321390526E85E986 /* YGNode.cpp */, - 7662F13E288A068B7A314AB2C0D620EB /* YGNode.h */, - 35BF4AC5DF9B811679F83A83DCF63137 /* YGNodePrint.cpp */, - A82DD3844C4A552F3FF128E2A7A93145 /* YGNodePrint.h */, - 8176AA8C6D2DD64BB3198F842BE4F65A /* YGStyle.cpp */, - 2C37447B513BB858ABEE189BB5B3199F /* YGStyle.h */, - 9CA136F385C2D0C0B763BA969DDC9469 /* YGValue.cpp */, - 21E490EE02F5EB3928C5955CAF2320A2 /* YGValue.h */, - 29B4227FA2B6B93E9449DB91EB95C690 /* Yoga.cpp */, - 8C8FFE0DBED1557E36AC1665664FD90B /* Yoga.h */, - 23EF46C4ADCA8028AA4E10BBB66CBCB9 /* Yoga-internal.h */, - 5F668467F4F1AEC68B90DACDDDD02E8E /* Pod */, - 7F01A3E333B4F1FFB6D6EE5C7BE88A23 /* Support Files */, + F18AEA147687945A46A8F74C1DA453F6 /* UMFontInterface.xcconfig */, ); - name = yoga; - path = "../../node_modules/react-native/ReactCommon/yoga"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFontInterface"; sourceTree = ""; }; - 6302CB92C98FBD03E5AD2E75E55FE65A /* Views */ = { + 632221406813CB654F91762138DB5799 /* RCTActionSheet */ = { isa = PBXGroup; children = ( - 2D2BB3B75AE024B7C87D2A7A1229818E /* RCTActivityIndicatorView.h */, - 1EB2C1628FA66E5210A2EE4F13CA5F14 /* RCTActivityIndicatorView.m */, - 29605C6559148984B553D0AFB64DD267 /* RCTActivityIndicatorViewManager.h */, - 971F9752A09CE23AA8C45D71EE907196 /* RCTActivityIndicatorViewManager.m */, - F0245B3B6B3633CDFAD42BCD327D7E36 /* RCTAnimationType.h */, - DAC958D6CFDEF9A46B6BBD5E19CC0E30 /* RCTAutoInsetsProtocol.h */, - ED54E8B532616BB44457AAA63A9A06A2 /* RCTBorderDrawing.h */, - AABB17C20430BD6318C12265B4578B93 /* RCTBorderDrawing.m */, - D65C86424592597E866022B14EC016BA /* RCTBorderStyle.h */, - 5D8CA5A534F20BE7ECA374693A530C0C /* RCTComponent.h */, - A90C8DF4D84A81BBC40C893FF10DB5A2 /* RCTComponentData.h */, - 8548536630D340BCB1F355235223C4C4 /* RCTComponentData.m */, - 3EFA7173EAE7C3F9369BEBCC60E10790 /* RCTConvert+CoreLocation.h */, - C0333F929149DEC00D53D8D406DDE2A0 /* RCTConvert+CoreLocation.m */, - C294AAB0627EC2B8E662554D8402A277 /* RCTConvert+Transform.h */, - 9EC78B540F6A393F0015F5A6E08B12C9 /* RCTConvert+Transform.m */, - ECFFF5BA98FCDC1EA3FA4B40D0A62907 /* RCTDatePicker.h */, - 1EA453E747C278F09B3C526AED1635D9 /* RCTDatePicker.m */, - C5B8D57D932F378F840C7B63ACDEA0DB /* RCTDatePickerManager.h */, - 78F8C438C9C6494B12B343EBE68ABD24 /* RCTDatePickerManager.m */, - 6B81C4E17E319FE171C64F206464ACA8 /* RCTFont.h */, - 17F75CB326520808F2954C187E122308 /* RCTFont.mm */, - D848CB283987180B51BDAA4CD2329DBE /* RCTLayout.h */, - C98EE7FD4EBC1A863B9E9DCFB5C7D0DE /* RCTLayout.m */, - 3DE6BCF0241D1EE17B8AFBC2CC08B780 /* RCTMaskedView.h */, - 80938737EC82A149170F242C5B889FC0 /* RCTMaskedView.m */, - 35F1A3F93E961AA639F61EB31B43A52E /* RCTMaskedViewManager.h */, - FCA04EDEFF5408E0CED874344E0657AC /* RCTMaskedViewManager.m */, - 7E8C28C893A1C5B31EC39D6625CEF0AC /* RCTModalHostView.h */, - AD13383F285B841DD8C7CC1CB6631D5D /* RCTModalHostView.m */, - C64F870A05E1CB2F4E3295F665574EDD /* RCTModalHostViewController.h */, - AF36203CEB5253762739AF9551301637 /* RCTModalHostViewController.m */, - 9CF1F7C4EAA5D166BEF179B226BE8A33 /* RCTModalHostViewManager.h */, - 5C709658FDF21BF1294A15EE00B225E2 /* RCTModalHostViewManager.m */, - 1F9CDA9B231672186181FD33331A9A0B /* RCTModalManager.h */, - E7226EC579E6665ED0958A186F6D8477 /* RCTModalManager.m */, - DE63B5C7644E2ED1684E5EEB6F796636 /* RCTPicker.h */, - 71DD0FEC5BFD872501997C0FF7FF073D /* RCTPicker.m */, - 303B9B16FFAD36F5401E0D101F4821BC /* RCTPickerManager.h */, - 60FF36A8EF7AE6063AB580B1405C5511 /* RCTPickerManager.m */, - 0D8D5C82223C397877112DFD640E2B98 /* RCTPointerEvents.h */, - D4F8069389F02DDA8E79FD25A302ED28 /* RCTProgressViewManager.h */, - 399EADAC576A4E8245442F7004E3ADA9 /* RCTProgressViewManager.m */, - 0CD20F54C0979735781DE0153BB0072C /* RCTRefreshControl.h */, - 8AC0FDDD94ACAF13997A378DAEE01532 /* RCTRefreshControl.m */, - 9689BF2F45F68F2EA5605017D2D9FDEE /* RCTRefreshControlManager.h */, - 310FF05E3469CF0382DA2DD0ACE5C9DD /* RCTRefreshControlManager.m */, - D8EC6633AAAC503B85A25ED51C364052 /* RCTRootShadowView.h */, - 1248306ACBD97A80F24C132646C7D714 /* RCTRootShadowView.m */, - 83DDE40E4A6C095F4F0FDC63A568ED24 /* RCTSegmentedControl.h */, - 3A345A514554BAAF34B28CD7B7895370 /* RCTSegmentedControl.m */, - 03469186FEB5D84423E500960BC5C7A5 /* RCTSegmentedControlManager.h */, - 5506ED24DA0C0ABCB9486F68AB52E022 /* RCTSegmentedControlManager.m */, - D6BF93B827ABA467D63993F6147C2B88 /* RCTShadowView.h */, - 1AC5912C31AD1AE7AA799A833769F283 /* RCTShadowView.m */, - 5B506EBED09D7451E6DB5E7FCA0353AC /* RCTShadowView+Internal.h */, - 270E472A7E6780CBBE8A183CCA75AD74 /* RCTShadowView+Internal.m */, - 3F1DCD6456822476709EA335A8B9D96C /* RCTShadowView+Layout.h */, - 6999CFB6C5967EE5D414BAC83FBE03CE /* RCTShadowView+Layout.m */, - EDC6C42AC2A099891874279AF54D1656 /* RCTSlider.h */, - CA7DEBB32346871ACAA2B6DBA04F1CBE /* RCTSlider.m */, - 074143CB77498D36AB90F5A7D18CB715 /* RCTSliderManager.h */, - FA83EF3AF04726EB99FB0E8B9CAF4D75 /* RCTSliderManager.m */, - 2ADFF1C163A290169C39AA178920361A /* RCTSwitch.h */, - 3687BE327C8068A115E32DF467EB0182 /* RCTSwitch.m */, - 7C6D7910FEF5E3363C8BCF6764FEC7F1 /* RCTSwitchManager.h */, - 03D77687AAA2ABE0D98C3F9A591CFE9C /* RCTSwitchManager.m */, - BC0069A3DE7B1E8EDB4663923C026F22 /* RCTTextDecorationLineType.h */, - CDA013F46CC956A8CFA760A4012ADECF /* RCTView.h */, - D461093CFA26AEC4CCC4CDE780696857 /* RCTView.m */, - E3DC3CF71845576341A6E0809080DD52 /* RCTViewManager.h */, - FD933856424E177FA26B743F083E9232 /* RCTViewManager.m */, - 579182D372EBF52F807F254285F429A7 /* RCTWebView.h */, - 019A59E7B810C81E40917BCCC4DAD9A2 /* RCTWebView.m */, - E3D8096252576422FD26A14FCC5E908A /* RCTWebViewManager.h */, - F7CF05F229BC12275FB5F34A6076829C /* RCTWebViewManager.m */, - 94A6FA416A7085E787E8E7F4E4A43A6C /* RCTWKWebView.h */, - 5BE59919C4126563ACB9CB989AE8B3BF /* RCTWKWebView.m */, - 49929B494689314869BE877D36C79F66 /* RCTWKWebViewManager.h */, - 16AE7EA55D09EE47FA11010269E7180D /* RCTWKWebViewManager.m */, - 4D72526F49DB18BCD06DAA9AF5A04D9A /* RCTWrapperViewController.h */, - 0B057BB663D2EFE409EBAA3247E8CB0F /* RCTWrapperViewController.m */, - A6EFB033B9C1FA21E2029E9D29D92F4C /* UIView+Private.h */, - 0D1E375073365E733A757520046ED561 /* UIView+React.h */, - 5312706937A32F9CF31880668E6CB34C /* UIView+React.m */, - EC3EB6464CFE48D02813AFC2F3DD04E6 /* SafeAreaView */, - FBA25829E93A66E1F39525A13F660235 /* ScrollView */, + 515B11C3F564308F55A924CA29326F23 /* RCTActionSheetManager.h */, + 360D695F54C7347EB2DAFE0D5A8863A7 /* RCTActionSheetManager.m */, ); - name = Views; - path = React/Views; + name = RCTActionSheet; + sourceTree = ""; + }; + 63846C8AE5993AC177A05C27AFC5D017 /* Support Files */ = { + isa = PBXGroup; + children = ( + 637CAE97AF4E3BD9F5116ADB7395BEDA /* react-native-webview.xcconfig */, + FE8F35C8E33EA725E63131C4AA800404 /* react-native-webview-dummy.m */, + AEC429822D444BD52DB663F05C2026BB /* react-native-webview-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-webview"; sourceTree = ""; }; 641A583F5B6C8CDDF7A7C7DD4F43439C /* Support Files */ = { @@ -2810,45 +3655,103 @@ name = "Targets Support Files"; sourceTree = ""; }; - 666F9B9A920631EB9BB8D55C922D7591 /* UIUtils */ = { + 66411AFDC642157BD8D5C94261A7E91A /* Support Files */ = { isa = PBXGroup; children = ( - D313798036D13FA8D9191D0E355CC2AB /* RCTUIUtils.h */, - 8AA5C1AD15D45DBC4FEA32704115EA3D /* RCTUIUtils.m */, + FCF67B474FD6C82910218CA6951D04E6 /* RNDeviceInfo.xcconfig */, + ECE4F4D21720856B096509BCFE189EA7 /* RNDeviceInfo-dummy.m */, + BA333E50386708952F772F513703C9B9 /* RNDeviceInfo-prefix.pch */, ); - name = UIUtils; - path = React/UIUtils; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; sourceTree = ""; }; - 68DA4E8F90B23F2E64CF3AD3FB891EB8 /* RCTImage */ = { + 66DC85B028D5179AB464D374042B1120 /* Pod */ = { isa = PBXGroup; children = ( - 32411FE0DAF7F77CB031463B19E73F31 /* RCTGIFImageDecoder.h */, - E916B8D39F1C0F99D37EDE527B703D6F /* RCTGIFImageDecoder.m */, - B8607F62E25E7C7F2A2405892F4903AC /* RCTImageBlurUtils.h */, - AA780F3BDB3F84B14129F31E0319A9C0 /* RCTImageBlurUtils.m */, - 89180A0D89ECDC0972DAC62514E2572A /* RCTImageCache.h */, - 61718E279833AB40E24F7884E1B97C19 /* RCTImageCache.m */, - 8DD6043FA44409640ED64BBB5F5D3B4F /* RCTImageEditingManager.h */, - 0822B400E877CBFA3D2C90D485328144 /* RCTImageEditingManager.m */, - E2FDF8DB82C73832EF85F03A5906F9CF /* RCTImageLoader.h */, - 31EC7CD37083EDFD177C6279E8ABCEF4 /* RCTImageLoader.m */, - 02EBD575F4AE48B3241638B288F94687 /* RCTImageShadowView.h */, - 2CA9DA6889DF8BB4C0F9228C6AD305F8 /* RCTImageShadowView.m */, - 4294C0B16B2653DD86727DD33F3F6A78 /* RCTImageStoreManager.h */, - 843565E86A42E493C0FABBFD575BDB21 /* RCTImageStoreManager.m */, - 57B0412F42867214D84351A061464444 /* RCTImageUtils.h */, - 00E93827EB9F155FF1CB3F7ADF3053CF /* RCTImageUtils.m */, - D6A31C7A90816AB318C7AFE34C309BB4 /* RCTImageView.h */, - 4632215D706774736F7E61DDCBB652E2 /* RCTImageView.m */, - 09B2554CF26F8F43E8C6001023959492 /* RCTImageViewManager.h */, - 0D5FCD37382BE0819264CFBA4F131B85 /* RCTImageViewManager.m */, - 9F1EA804D6913AE580E3FBFCEBA6618C /* RCTLocalAssetImageLoader.h */, - 0085EE4901AEC3550FF5650A968F20EE /* RCTLocalAssetImageLoader.m */, - 3613FE23C025F4348E6040E52E15676B /* RCTResizeMode.h */, - 27069FB870DC23ABECA4A81B71F346B9 /* RCTResizeMode.m */, + 610510E3BE9447826BF4B068E4C71C81 /* UMCore.podspec */, ); - name = RCTImage; + name = Pod; + sourceTree = ""; + }; + 684B55A4892CCC8F7D6DC80A354BACA7 /* Base */ = { + isa = PBXGroup; + children = ( + 26BCFC8D96C12EB76E48A8EEB399B9E0 /* RCTAssert.h */, + D1389CC8317EF3ABA0909B12DC6330CB /* RCTAssert.m */, + 22B8E67E2377F36A9B5F852398E56001 /* RCTBridge.h */, + 387212658E8C481174A06376C1EEF220 /* RCTBridge.m */, + F5F7CBB6AA3A51D2A2ED33417655E9BF /* RCTBridge+Private.h */, + 3F958909E05ADB9522CE8DB8B063638D /* RCTBridgeDelegate.h */, + D1964C730505D58B3A5B8D82FEF01797 /* RCTBridgeMethod.h */, + AEBB15080CF9F6A85B133DBE235F82CD /* RCTBridgeModule.h */, + 7E7D063C91BD1DD4F6558094C1251DEF /* RCTBundleURLProvider.h */, + 001B228B04383E155D4C250D34A38CA8 /* RCTBundleURLProvider.m */, + 2535CC9EA20C42B22545D1B8DBF756D1 /* RCTConvert.h */, + 8BCF8B3BD0DED1FA86AE3ACC6668BCEF /* RCTConvert.m */, + FA054D52137B0B75A05322E9EFC3F225 /* RCTCxxConvert.h */, + 03E9CF69C60A2BFCAF5846B48F7AD5AF /* RCTCxxConvert.m */, + 5DDCF3699AC20D084526BE5EF3EB48FC /* RCTDefines.h */, + ED59F5162360E96762A58AC8E6D2DFC7 /* RCTDisplayLink.h */, + 4296C8715DD41AD779777C2746442A8F /* RCTDisplayLink.m */, + A1B8F617F6F6398F507E734B0A6D7B1A /* RCTErrorCustomizer.h */, + 469727E155075E19B0D70CEF4E8D08AD /* RCTErrorInfo.h */, + EF226F8FDD7DFDD3DC9FE85F4F3501EC /* RCTErrorInfo.m */, + 54795F0EE2ACB3BD6BBA3928C0F2B087 /* RCTEventDispatcher.h */, + AADE2AC2C234CDD2A6570367ABDCDB82 /* RCTEventDispatcher.m */, + 9509580F090F5D588689A614E382A989 /* RCTFrameUpdate.h */, + 9C762CA4B6D919BA67DC6E63E8DD501C /* RCTFrameUpdate.m */, + A6494DF46041AB0F501D46A6D0F9F323 /* RCTImageSource.h */, + 4365D311FEC1186268B4C219E9DC1428 /* RCTImageSource.m */, + F0414E07D2180EAA5C7BAF6DF35F4A85 /* RCTInvalidating.h */, + 165A8C5C3D3C76F2218823C9C6CC53F6 /* RCTJavaScriptExecutor.h */, + A4C0A5E6EA49890413C2EA9B91E26CF8 /* RCTJavaScriptLoader.h */, + 1938E4852D76A679FE815404F05E2225 /* RCTJavaScriptLoader.mm */, + 58D3F22DB722F2A2672EE7A0EBC28FF8 /* RCTJSStackFrame.h */, + B5BA2F2350838CA4E5B1CF57940E2E50 /* RCTJSStackFrame.m */, + 7EF62CE0861A9ED7A94283157FF002AC /* RCTKeyCommands.h */, + 0426E53259A5B51BEF24C7D754450EF8 /* RCTKeyCommands.m */, + 0E4F528FA887C404C39980A9C144D3E4 /* RCTLog.h */, + 8984DDA5B5F2AD5814655EEDA282E8BD /* RCTLog.mm */, + 5442AF23C9BA535E21289A46201A1ED2 /* RCTManagedPointer.h */, + 7056FADDECF9CEB1C5671DFB9DF21A92 /* RCTManagedPointer.mm */, + EBAEF195BAF8E47463EFD322D8A4391F /* RCTModuleData.h */, + C8A489091C577F0FAD08E39B051506BF /* RCTModuleData.mm */, + 46AD24FA010EC42CFB6A3D55A06557DB /* RCTModuleMethod.h */, + FAA08C2F69D54CD44FF52C311DC88A78 /* RCTModuleMethod.mm */, + 8515A630B049593EC8300D7F23056A0A /* RCTMultipartDataTask.h */, + DEAC3E5812144C0F05C0C2B4D979858D /* RCTMultipartDataTask.m */, + 36FF2E370F4C06F4BEED27F538F44F16 /* RCTMultipartStreamReader.h */, + F9AAEF6AE205FC806A3A4469C020CD31 /* RCTMultipartStreamReader.m */, + AB54E8A35C474CB06B95C6EC95587B0B /* RCTNullability.h */, + 3658BA90C5C9427FA99C1BE43BA41645 /* RCTParserUtils.h */, + E6938C70455BAA3AD144F9AECC6254C8 /* RCTParserUtils.m */, + 2200EF08B10471217EFF0B5A5395E831 /* RCTPerformanceLogger.h */, + AB684485905C5356E0F555DECD9A36E5 /* RCTPerformanceLogger.m */, + F4A8168DAC690690D0BD3EB1F6886214 /* RCTPlatform.h */, + 8475D80146EC391279E272851DB08C5C /* RCTPlatform.m */, + FCE468C4DE3FD5EA1CDEB47601C106B9 /* RCTReloadCommand.h */, + 2823E12D2F615FDFDEFD1D31EA945BAB /* RCTReloadCommand.m */, + 1723D225364D069373B64B10430B8764 /* RCTRootContentView.h */, + FC7136BEFBD7DF190B1DCA1F9BD11E12 /* RCTRootContentView.m */, + 57694669B5885F8FCA598A98ABFDA905 /* RCTRootView.h */, + 35BEDABB35595AA263B2C25B1F531A2F /* RCTRootView.m */, + 334EEA50CA5A93D27A1BFE906C3E8C0C /* RCTRootViewDelegate.h */, + 3CB3A2579BEE6D46433D09B51915261B /* RCTRootViewInternal.h */, + 4A543E28CBAB7E46E4DE19E550B53819 /* RCTTouchEvent.h */, + 1C6309DE5FE71B25B47E91BCDDD13305 /* RCTTouchEvent.m */, + 6B7479632A9ED2D4BCC34A0757A70CFB /* RCTTouchHandler.h */, + B061CC568BD4491B46CDE494F966C658 /* RCTTouchHandler.m */, + B18166883EDCF1ADC8C1AA9F74A27D59 /* RCTURLRequestDelegate.h */, + 89624AC61EBFC2952EC0030B0BB2EFC2 /* RCTURLRequestHandler.h */, + 53B4B38137E5D56235AF99C48BCABB84 /* RCTUtils.h */, + 86A4EA410A107C9E573E9163DC17F7C5 /* RCTUtils.m */, + AB174847F5DF1433055028211D911C98 /* RCTVersion.h */, + 0422E3CA4E119AB496AB0CE3AF4AB60D /* RCTVersion.m */, + D277FBC8869FF813ABE90FE051011672 /* Surface */, + ); + name = Base; + path = React/Base; sourceTree = ""; }; 695F14F5C911ACECC1375EA56E53BEA8 /* Support Files */ = { @@ -2862,29 +3765,18 @@ path = "../Target Support Files/GTMSessionFetcher"; sourceTree = ""; }; - 6C64DE83E597E5184AD206ECBC53A14B /* Support Files */ = { + 6B20B5160BDEFB0D4A944C891A910938 /* RNDeviceInfo */ = { isa = PBXGroup; children = ( - 92F7EE09869EE82AEF4C8BBF75990045 /* react-native-splash-screen.xcconfig */, - DAA8B42F52E23DE8B4AB068E101E8594 /* react-native-splash-screen-dummy.m */, - 31DA68120990DF86803E05350F47AC0E /* react-native-splash-screen-prefix.pch */, + 081BADE01BF0043403D44F357D3D5034 /* DeviceUID.h */, + 9A857E144D09F66372318D1BEEC6A7F3 /* DeviceUID.m */, + 6E9E5AFF9F1158A263F627B523DD4F95 /* RNDeviceInfo.h */, + 0B22CDFE8A6BE351F42B2380C2711731 /* RNDeviceInfo.m */, + 53D6A2911A88FA23C6160C395275AAD0 /* Pod */, + 66411AFDC642157BD8D5C94261A7E91A /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-splash-screen"; - sourceTree = ""; - }; - 6D2F5A9370F7D27A33B76E01B1A06900 /* SurfaceHostingView */ = { - isa = PBXGroup; - children = ( - 044793492BE04BE01BEBB918CD58520D /* RCTSurfaceHostingProxyRootView.h */, - BF4B1164D921761DE81288E44DFD0D8C /* RCTSurfaceHostingProxyRootView.mm */, - F12D34A89A831A7C9E5C7A21808BAA85 /* RCTSurfaceHostingView.h */, - A8BD45FC504CE22F0CDFE8BA1638CFAA /* RCTSurfaceHostingView.mm */, - F04DC6681D51CF6931D83DBDD773265B /* RCTSurfaceSizeMeasureMode.h */, - 5B444A17EA7693B11819F2C9258F71C4 /* RCTSurfaceSizeMeasureMode.mm */, - ); - name = SurfaceHostingView; - path = SurfaceHostingView; + name = RNDeviceInfo; + path = "../../node_modules/react-native-device-info"; sourceTree = ""; }; 70762B0582BC2A467644A69BD840DA98 /* Support Files */ = { @@ -2907,38 +3799,43 @@ path = "../Target Support Files/boost-for-react-native"; sourceTree = ""; }; - 74C363A5AD6E1417EEF37C5489F5B76B /* Nodes */ = { + 727C062E575A271F2007FBF25DD37A33 /* VirtualText */ = { isa = PBXGroup; children = ( - FAF21C5645961ED781830F7D77161C14 /* RCTAdditionAnimatedNode.h */, - 6F268E6885A8F21AFF92065107509166 /* RCTAdditionAnimatedNode.m */, - E6BC64EE27F8F049CB7F57E6E67A5A0E /* RCTAnimatedNode.h */, - C8458474D7DB655F7B6BBDE13EE52180 /* RCTAnimatedNode.m */, - A21939864FD5B3530665F716DF17D327 /* RCTDiffClampAnimatedNode.h */, - C36FE24603CB81F04EEFF84979C707D3 /* RCTDiffClampAnimatedNode.m */, - 6C87924A9DA6E1AD8A21AA68BA97330B /* RCTDivisionAnimatedNode.h */, - 4A3D590BB5136E52176D77530465293E /* RCTDivisionAnimatedNode.m */, - 97869FB3CA0DCFB0FD76418677CA0467 /* RCTInterpolationAnimatedNode.h */, - 9DF93E70A2B4F1C3F8149CEDB037F8B0 /* RCTInterpolationAnimatedNode.m */, - 82526C2DCA763425E2601227769528DE /* RCTModuloAnimatedNode.h */, - 88962D292A9AFFB073AF205CCE07B1D8 /* RCTModuloAnimatedNode.m */, - F9CBDD68A12BD51928FC8116D5FBBECF /* RCTMultiplicationAnimatedNode.h */, - 77BF8A9CA57F1073A320EAEF3CFCCB85 /* RCTMultiplicationAnimatedNode.m */, - EDAC16C68211A916FA1DD4EC74036686 /* RCTPropsAnimatedNode.h */, - 4E520CF9FB73AEE5FF2BF935BCA84731 /* RCTPropsAnimatedNode.m */, - CB9D6E45415A2A72D49853A6C38D74F0 /* RCTStyleAnimatedNode.h */, - 3F12AAB52B2A14B43783EBA2A36E3B84 /* RCTStyleAnimatedNode.m */, - 2FDF57448B0B3B96FCCB3ADFD8B7936B /* RCTSubtractionAnimatedNode.h */, - BA32827D3B434487C45675B4A4A53FA0 /* RCTSubtractionAnimatedNode.m */, - 17D6D1509530A33ABC1F17CCFCDFCDFF /* RCTTrackingAnimatedNode.h */, - 394F2BF663EB4251EC6807F78D96BDE8 /* RCTTrackingAnimatedNode.m */, - 1AACF2E720214F71B2126A962E498349 /* RCTTransformAnimatedNode.h */, - A43D9F7E97531854A744062EEE491E7F /* RCTTransformAnimatedNode.m */, - 013679A01EB3C4820916BCACA5EB82A7 /* RCTValueAnimatedNode.h */, - 8D7F615EA22B2EDD990FD020A8F087DA /* RCTValueAnimatedNode.m */, + 3546D1F7F828F246187E17309778ED6F /* RCTVirtualTextShadowView.h */, + 31EA22487BCA7F4EA7794D9877156CD1 /* RCTVirtualTextShadowView.m */, + 2D61EC101AD13A569FD7E4ED33C71AA0 /* RCTVirtualTextViewManager.h */, + F9FADB4348D144BBD4A6F5B47D846147 /* RCTVirtualTextViewManager.m */, ); - name = Nodes; - path = Libraries/NativeAnimation/Nodes; + name = VirtualText; + path = Libraries/Text/VirtualText; + sourceTree = ""; + }; + 75A87438E051AFE029F313BD59A1C559 /* Protocols */ = { + isa = PBXGroup; + children = ( + DEBBAC37E2DAEEA04D8C77922B710CF9 /* UMAppLifecycleListener.h */, + 34E798DBC90A3B55CAA3BB2CDABE0C2B /* UMAppLifecycleService.h */, + 4836E9E0A5928D89BDAE7412E9522FFB /* UMEventEmitter.h */, + 26F0CE9105B1167C94475E380773F8B1 /* UMEventEmitterService.h */, + EAEA879C60C21AD215ED46751F2B87C8 /* UMInternalModule.h */, + 37E68EFDD7704903AF0C5598DFAB4E07 /* UMJavaScriptContextProvider.h */, + CA6B202915B4D395579B1952B3BF2110 /* UMKernelService.h */, + A14A6093EFD30BB027DD8CCF002590BD /* UMLogHandler.h */, + 8408AD1D1943C833A6B9BBA92F7588E2 /* UMModuleRegistryConsumer.h */, + 9C72A72218B45C82168CC078F45FBA31 /* UMUIManager.h */, + 240BF7E59EB0D6E281887DF21CCCCF4D /* UMUtilitiesInterface.h */, + ); + name = Protocols; + path = UMCore/Protocols; + sourceTree = ""; + }; + 75EB8B99807CB980F411CE09E4E92DE3 /* Pod */ = { + isa = PBXGroup; + children = ( + E82BE337A354978B74C79C4E00788FF3 /* EXConstants.podspec */, + ); + name = Pod; sourceTree = ""; }; 762603A95890769E48FE92655C29EAB8 /* Logger */ = { @@ -2950,6 +3847,17 @@ name = Logger; sourceTree = ""; }; + 76A756D8800738963E11614A046BAF43 /* Support Files */ = { + isa = PBXGroup; + children = ( + 8FC389D054A6997C92405D2AC6F438F0 /* RNScreens.xcconfig */, + ACB20375414EC0E7663C9E6433ACC179 /* RNScreens-dummy.m */, + 776FB4379E98275FB1CF46EEE557C80A /* RNScreens-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNScreens"; + sourceTree = ""; + }; 79991E90489B1D05DCEA2BC5B32DC5F3 /* Crashlytics */ = { isa = PBXGroup; children = ( @@ -2967,18 +3875,6 @@ path = Crashlytics; sourceTree = ""; }; - 79B65F4FA3F8390E16037EB1C2858E0A /* react-native-splash-screen */ = { - isa = PBXGroup; - children = ( - 4B6803B09C3C15EBD80A58A170528FA7 /* RNSplashScreen.h */, - 46C298A0D61DB7EB52E447B83C66B45E /* RNSplashScreen.m */, - CF7141A6861D11E795C4D71396A0D8BE /* Pod */, - 6C64DE83E597E5184AD206ECBC53A14B /* Support Files */, - ); - name = "react-native-splash-screen"; - path = "../../node_modules/react-native-splash-screen"; - sourceTree = ""; - }; 7A804DE04C1813D3D24693407FB779A9 /* CoreOnly */ = { isa = PBXGroup; children = ( @@ -3017,29 +3913,6 @@ path = "../Target Support Files/FirebaseAnalytics"; sourceTree = ""; }; - 7EBC605B171996AE1140C27CE9198B09 /* VirtualText */ = { - isa = PBXGroup; - children = ( - 7660A55CB80BDE20D9C0317022BCF2CC /* RCTVirtualTextShadowView.h */, - CB4D11EBBA7921D0613F7CB87D156438 /* RCTVirtualTextShadowView.m */, - 206DCB46844A5AC452E33D130694BC0B /* RCTVirtualTextViewManager.h */, - 7BEB8315BB042A168BBE0ACA06086092 /* RCTVirtualTextViewManager.m */, - ); - name = VirtualText; - path = Libraries/Text/VirtualText; - sourceTree = ""; - }; - 7F01A3E333B4F1FFB6D6EE5C7BE88A23 /* Support Files */ = { - isa = PBXGroup; - children = ( - AC8434B866014A6EFB365E99B4784657 /* yoga.xcconfig */, - 7F3122CB71D61B1D541A9723CE024E1F /* yoga-dummy.m */, - EDF5186F7DE1B1750FB632531AB002B3 /* yoga-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/yoga"; - sourceTree = ""; - }; 7FBFCDD5C01E400A2DA947FFD3D9C153 /* Frameworks */ = { isa = PBXGroup; children = ( @@ -3057,17 +3930,6 @@ path = "../Target Support Files/GoogleAppMeasurement"; sourceTree = ""; }; - 8124185E8BA91D17723D852A611786CE /* Support Files */ = { - isa = PBXGroup; - children = ( - 142940214879FB9B072E376B7620751E /* react-native-webview.xcconfig */, - 25CEF3076A2151192072612D1A44B649 /* react-native-webview-dummy.m */, - 92758D17E5BBA349A51A2DCB4BBDBEF5 /* react-native-webview-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-webview"; - sourceTree = ""; - }; 81D36261BF12B9A295B9BE0E0DDB0E4B /* Support Files */ = { isa = PBXGroup; children = ( @@ -3079,6 +3941,20 @@ path = "../Target Support Files/glog"; sourceTree = ""; }; + 82506348EF6A0B4CA1663BCB9096CFB8 /* RNScreens */ = { + isa = PBXGroup; + children = ( + A3B8971C13BE096BD4B029E1ED7B8D18 /* RNSScreen.h */, + 0107A3ABF10D02533CF3C32C99548012 /* RNSScreen.m */, + E61453F5743127BBF1F9140BAAD1ED6E /* RNSScreenContainer.h */, + F128D70778FFE6C1A7DD1B2E828B2630 /* RNSScreenContainer.m */, + 1CBE48D4CC44A71839CC0462ED0C42E5 /* Pod */, + 76A756D8800738963E11614A046BAF43 /* Support Files */, + ); + name = RNScreens; + path = "../../node_modules/react-native-screens"; + sourceTree = ""; + }; 8293B39959FA1FBF187A152B6B6A0C3D /* Support Files */ = { isa = PBXGroup; children = ( @@ -3090,6 +3966,16 @@ path = "../Target Support Files/RSKImageCropper"; sourceTree = ""; }; + 85A169252DBDD6B3CFDF20546423A478 /* Pod */ = { + isa = PBXGroup; + children = ( + A420CE93E288815D2EA63F05607EDD84 /* LICENSE */, + C41A76E063EBC01EB3D96A4E1349BEBE /* README.md */, + 3CC11C07D3C40BD21656CB42D40AAFCE /* RNImageCropPicker.podspec */, + ); + name = Pod; + sourceTree = ""; + }; 85AC4B197013A70793286BD7623BD5D5 /* FirebaseCore */ = { isa = PBXGroup; children = ( @@ -3142,18 +4028,26 @@ path = "../Target Support Files/FirebasePerformance"; sourceTree = ""; }; - 86946E5AC1E0157049CE97B82B68B014 /* RNDeviceInfo */ = { + 866359E16F6D1EF07746F1F35F2585A0 /* RCTBlob */ = { isa = PBXGroup; children = ( - 2D9FE2D7FED21670B054D842B83FB7A4 /* DeviceUID.h */, - D4C5EEE50A5951E21B340E4F9133D4BC /* DeviceUID.m */, - D32303C572C6448B447144C125C1BD66 /* RNDeviceInfo.h */, - 9420F602F4192D15D8FA1069CC31E68F /* RNDeviceInfo.m */, - E04029A484FA564A22101FC3CE60E463 /* Pod */, - E21A9A9DE00CC6A57C0D93278E22C68C /* Support Files */, + ED128CC2B3AC5580D37A488205DE051B /* RCTBlobManager.h */, + 8DE93CAE8DACC1F333BC7400E2F633F6 /* RCTBlobManager.mm */, + F405BA0A77DBC875CDBF1DE465955575 /* RCTFileReaderModule.h */, + 1D0C95622AE31B557E799165112286FD /* RCTFileReaderModule.m */, ); - name = RNDeviceInfo; - path = "../../node_modules/react-native-device-info"; + name = RCTBlob; + sourceTree = ""; + }; + 86BDD1A93131B46BA7D2DFBE4BC19EDE /* UMConstantsInterface */ = { + isa = PBXGroup; + children = ( + 0AF1B8013A3C3AC8DBD7D2B3D52D094D /* UMConstantsInterface.h */, + 8FA8C1AF84E3E53AB30CD296CFD946DD /* Pod */, + 55A5EAC29D0D91FBF71A928DD748FBB5 /* Support Files */, + ); + name = UMConstantsInterface; + path = "../../node_modules/unimodules-constants-interface/ios"; sourceTree = ""; }; 877C6DC2D0047F734A22226CCD030AD5 /* MethodSwizzler */ = { @@ -3175,15 +4069,97 @@ name = Environment; sourceTree = ""; }; - 93082E07BE3DF766E61E1449E1B26FCB /* Support Files */ = { + 8AF3C93FA9AEB1481EFB1329B4595DB7 /* TextInput */ = { isa = PBXGroup; children = ( - 6AFCD601ABF7B40B468709362D7AABEE /* React.xcconfig */, - 0901BD78FBA99D849CC9A1849976A30F /* React-dummy.m */, - D053EAC28B31536499CB2F1195351D88 /* React-prefix.pch */, + 536C660002D786BD38B72C528C5072ED /* RCTBackedTextInputDelegate.h */, + DF88A3B194CB1E3B0C6900ED0D61EF12 /* RCTBackedTextInputDelegateAdapter.h */, + 43D7893F7DF03E31C4826A8999398D92 /* RCTBackedTextInputDelegateAdapter.m */, + E42599857597C8739BB54BAE4BFB8387 /* RCTBackedTextInputViewProtocol.h */, + 44FC00F92F046900056D657B6BA5E14B /* RCTBaseTextInputShadowView.h */, + DED28974750A0A63EB727476B932E093 /* RCTBaseTextInputShadowView.m */, + BEA2592B226389F6BF38C361D715F7E4 /* RCTBaseTextInputView.h */, + ADB9D45D21B1B6F8DDF6B96BE1954BD1 /* RCTBaseTextInputView.m */, + 24A26FEDDC69D8367D025741DF85BE3C /* RCTBaseTextInputViewManager.h */, + D7ABA60C4B83F154A7A8AB92D1BF680D /* RCTBaseTextInputViewManager.m */, + A2F1F6E8D03F94929CAA7EED68972C71 /* RCTInputAccessoryShadowView.h */, + E836B9D5E042659CC79F15991827BE2C /* RCTInputAccessoryShadowView.m */, + 036ACCF506C814EB78AEAE110D1235E7 /* RCTInputAccessoryView.h */, + 0C2496AD863DBD021498DE44A6B7EA9D /* RCTInputAccessoryView.m */, + 018950733BD3B10A6369A715C9F629F9 /* RCTInputAccessoryViewContent.h */, + 0F5588A52249C63C62B8C06083901CF0 /* RCTInputAccessoryViewContent.m */, + 726013CBCC8B92105ACDC3E7F188312A /* RCTInputAccessoryViewManager.h */, + 50C44A16D597C16312DDC203B64EA7C0 /* RCTInputAccessoryViewManager.m */, + 5E80A1A41EA8E50B288D989322175867 /* RCTTextSelection.h */, + 19C00766C1F75C14478C49EF52E60DFC /* RCTTextSelection.m */, + D7ED0C750AAD4A2FB9F8A149EDEB458B /* Multiline */, + 5247C207F14AA7150C919B744BE4B969 /* Singleline */, + ); + name = TextInput; + path = Libraries/Text/TextInput; + sourceTree = ""; + }; + 8C1BE8C8C4BCAA0C6FEB85A891F1C532 /* Pod */ = { + isa = PBXGroup; + children = ( + 7F37BF099F6C29795631BDE83D57D583 /* LICENSE */, + 963F4E117AFD59E635255D08AFCC1269 /* react-native-webview.podspec */, + E7700F2B3EEAA30BAF96A4E63585E42A /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + 8D1A7FBB31096639E825D88F74713058 /* RCTVibration */ = { + isa = PBXGroup; + children = ( + B97116CCBA86C551A00CB079E6E7FE4A /* RCTVibration.h */, + CA1FF2E7FC3E8A101A8626919C4EBD17 /* RCTVibration.m */, + ); + name = RCTVibration; + sourceTree = ""; + }; + 8E7D90EDB31B20856A536E1CF203AC33 /* UMImageLoaderInterface */ = { + isa = PBXGroup; + children = ( + 75D3E47A6703E7FF33ACA2DA921DD638 /* UMImageLoaderInterface.h */, + 3E9186E7808BEA968C3F284EFA8D3B11 /* Pod */, + 927EB0D8F8C9F46FC20568093F3D03ED /* Support Files */, + ); + name = UMImageLoaderInterface; + path = "../../node_modules/unimodules-image-loader-interface/ios"; + sourceTree = ""; + }; + 8FA8C1AF84E3E53AB30CD296CFD946DD /* Pod */ = { + isa = PBXGroup; + children = ( + E7DC652C99F34B0169C3E22F3C5E73B3 /* UMConstantsInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 9268F96FDB53652AECA5FBF38EA16641 /* Text */ = { + isa = PBXGroup; + children = ( + BEA3100CBB34ABC8F16CC56C9BFD9F09 /* NSTextStorage+FontScaling.h */, + 2CC748AEA2FE112A6BBACE6BD6A14767 /* NSTextStorage+FontScaling.m */, + 8B2084456026E29FED9ACAAC4E6EF5B8 /* RCTTextShadowView.h */, + 4AF3333EB373D28D0DD292A8F4E43971 /* RCTTextShadowView.m */, + 25DBF708C31FCE57B05503B3814C87ED /* RCTTextView.h */, + 9616301F880082043C0C18BB7E928691 /* RCTTextView.m */, + 8BF24D990749E34D68683398AAF7356B /* RCTTextViewManager.h */, + C73CA22FC7D7F4D351C8A6B8EEF38F56 /* RCTTextViewManager.m */, + ); + name = Text; + path = Libraries/Text/Text; + sourceTree = ""; + }; + 927EB0D8F8C9F46FC20568093F3D03ED /* Support Files */ = { + isa = PBXGroup; + children = ( + CC79492F10C68D733950852842E2074E /* UMImageLoaderInterface.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React"; + path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; sourceTree = ""; }; 94A39BC6E8B7C8C7886F34DEE336D562 /* Protobuf */ = { @@ -3257,14 +4233,20 @@ path = Protobuf; sourceTree = ""; }; - 95BBFDF945B3C1DE996B450870C030C7 /* Pod */ = { + 950EA756FB2EA961F354BB6F070C7064 /* UMSensorsInterface */ = { isa = PBXGroup; children = ( - 42A9ED66F9AF63F068FFDE2E12601903 /* LICENSE */, - 8F6AE941EB53F28371BE6142E0C79641 /* README.md */, - 4CB662DA5E7432C7821547D0145E1F8B /* RNScreens.podspec */, + 38FE259966F8B62DF622A59A1C66C09F /* UMAccelerometerInterface.h */, + 2B7CC2AF912BD38D90145E2DB9C62964 /* UMBarometerInterface.h */, + DE17D18B053F863B8E357A039D814EA2 /* UMDeviceMotionInterface.h */, + 2393F631CD34B06379E24C1BBC794EEC /* UMGyroscopeInterface.h */, + 007D07D4C6782A17CE8F9A4340805A8B /* UMMagnetometerInterface.h */, + BE93ACF06AC52AF4F4B253F370FCF8DD /* UMMagnetometerUncalibratedInterface.h */, + 16A1873FDAAF8A899E3D38767D3A8794 /* Pod */, + CF54CCC44D1F455A37B88D6090756ABA /* Support Files */, ); - name = Pod; + name = UMSensorsInterface; + path = "../../node_modules/unimodules-sensors-interface/ios"; sourceTree = ""; }; 96179E1B26E42CDDFA772FDF542DECE9 /* Support Files */ = { @@ -3276,6 +4258,17 @@ path = "../Target Support Files/Fabric"; sourceTree = ""; }; + 972DF77C9B83ED43C193A8C1D44F86EE /* Support Files */ = { + isa = PBXGroup; + children = ( + 4423B01053400EB5AA18B2C1AEB6124B /* react-native-splash-screen.xcconfig */, + 4AED8DB3E621C8A7B8E0815DFC1B585C /* react-native-splash-screen-dummy.m */, + B9A640995D2FCDE9D952CD523363442D /* react-native-splash-screen-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-splash-screen"; + sourceTree = ""; + }; 972F3F51295E12FAAB2ECE0553122034 /* FirebasePerformance */ = { isa = PBXGroup; children = ( @@ -3305,16 +4298,47 @@ path = GoogleIDFASupport; sourceTree = ""; }; - 9CA1223FD8E18A651765FC44459880A8 /* react-native-orientation-locker */ = { + 9C014321ADF2295BD52DA1DBC633F328 /* EXPermissions */ = { isa = PBXGroup; children = ( - 342998086589B49C17CB7C08EE70FE00 /* Orientation.h */, - 3AF58F919F042029ACECE9E795ABF2AC /* Orientation.m */, - 3BB396EF3B57F75ECBCF296BCAEEABAF /* Pod */, - BDE3279994953FF384AB4FA1F8428E60 /* Support Files */, + 6CA6D2A9C2E6E9D04B92B2A07B36DB20 /* EXAudioRecordingPermissionRequester.h */, + 5FC166449536B01AA14B5FC576CFC630 /* EXAudioRecordingPermissionRequester.m */, + AD38BACBCDE0C87546CEC1DA964E9C4F /* EXCalendarRequester.h */, + EC686A1BED1F8845F06C785355A46D41 /* EXCalendarRequester.m */, + 3A673BEBFF3B62964CF34710C36A170A /* EXCameraPermissionRequester.h */, + F57479556D5C216C32A904C334E1813B /* EXCameraPermissionRequester.m */, + 39E37C371CC57E6870285F67E36D0188 /* EXCameraRollRequester.h */, + 49A652931CE64C000A07DD2240216CB4 /* EXCameraRollRequester.m */, + ADD07E70D6E7D8B979279C2A9A64CC74 /* EXContactsRequester.h */, + 07621CD38AF5056D16B706FF2917D8F8 /* EXContactsRequester.m */, + A25E946B1A5EC1622D8EF647D8116506 /* EXLocationRequester.h */, + B7876320ADC94AF2FD72D465EF390BE8 /* EXLocationRequester.m */, + A541BAD8E7E67A7548179FAFA3A18FED /* EXPermissions.h */, + D3AE10F5623CCEB6D48B913E269F417A /* EXPermissions.m */, + EC46FEF7E1E3DC4BFFA9E3F3D91A752E /* EXReactNativeUserNotificationCenterProxy.h */, + C73159CB46392481F5E310B186799CEF /* EXReactNativeUserNotificationCenterProxy.m */, + 6A6CA78B5DD72E0852B7CF800120B301 /* EXRemindersRequester.h */, + E35D6ECFD04E59A0EC2C82AEB03CAB16 /* EXRemindersRequester.m */, + 2F5082C5C685A7BD8CD31C7F343D777A /* EXRemoteNotificationRequester.h */, + 268FC354AE815473A7349D72E7FC2712 /* EXRemoteNotificationRequester.m */, + 1AB164B93049877B4D556C25592F3C98 /* EXSystemBrightnessRequester.h */, + A489FE30B53D57A32E6E18B2FB051F08 /* EXSystemBrightnessRequester.m */, + 7F03506161E4CDAC7F99821B2E37F610 /* EXUserNotificationRequester.h */, + 41BBF971DC07C2BA314CEE1FA9C9C4AD /* EXUserNotificationRequester.m */, + A36E9AE041974891C2B2052ADDCE33E0 /* Pod */, + E23A5DEAB432062711A1E19785B69F4D /* Support Files */, ); - name = "react-native-orientation-locker"; - path = "../../node_modules/react-native-orientation-locker"; + name = EXPermissions; + path = "../../node_modules/expo-permissions/ios"; + sourceTree = ""; + }; + 9D5BCB0335A0357200FBA2FE7AF351A6 /* RCTLinkingIOS */ = { + isa = PBXGroup; + children = ( + BDFDEC02884FE2DD0C758F1FD7AB7CC5 /* RCTLinkingManager.h */, + F47FD00B86E08397AF388C8CEC6DE603 /* RCTLinkingManager.m */, + ); + name = RCTLinkingIOS; sourceTree = ""; }; 9D86C1A9AEDE6B78974D2ED7C7E8A632 /* Support Files */ = { @@ -3346,15 +4370,16 @@ name = "NSData+zlib"; sourceTree = ""; }; - A23FA4F2F00148D44A2F463D987D1C8A /* Support Files */ = { + A18CB7A96EE59337C543EB0BC71B9076 /* Core */ = { isa = PBXGroup; children = ( - E8AEFB1150634D9928D55650AD9D9BB2 /* RNScreens.xcconfig */, - 8E0D575A7564B76C5C6283AE37A01B7B /* RNScreens-dummy.m */, - 9915834E233E19E5AE79248C9DEB5CFE /* RNScreens-prefix.pch */, + 684B55A4892CCC8F7D6DC80A354BACA7 /* Base */, + D050F147D90EBB5103578AAE57357116 /* Modules */, + F2D5A10EC312EFE2544ECB05BBFF8B0F /* Profiler */, + 0385D03577766501573445CA9DD702B5 /* UIUtils */, + CE122F80BA8CD1DDFBABF058BFF46531 /* Views */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNScreens"; + name = Core; sourceTree = ""; }; A2D7FEA77C752A5CCA3C09AF4430F46D /* Fabric */ = { @@ -3369,43 +4394,12 @@ path = Fabric; sourceTree = ""; }; - A2F48453DF55762583085191D774A02B /* RCTSettings */ = { + A36E9AE041974891C2B2052ADDCE33E0 /* Pod */ = { isa = PBXGroup; children = ( - 1730DF892519D8A1364D4E50B237253A /* RCTSettingsManager.h */, - BA933BD42C03E34FE684F7A8ECBD0416 /* RCTSettingsManager.m */, + EEE364AFCA1D002A79C6FCF0A15EDB16 /* EXPermissions.podspec */, ); - name = RCTSettings; - sourceTree = ""; - }; - A417CC621B6A07F1F657CBC9CF09B205 /* TextInput */ = { - isa = PBXGroup; - children = ( - 1E2B9C76477F5F4350ADB1E31986E4AA /* RCTBackedTextInputDelegate.h */, - 564273866CA88CC8BD0C498524CB9D22 /* RCTBackedTextInputDelegateAdapter.h */, - EB787F02AE83842B501819373DEA5948 /* RCTBackedTextInputDelegateAdapter.m */, - 409B82CB6FE8DFA3CA5706F1BAF9BC07 /* RCTBackedTextInputViewProtocol.h */, - 358393E6497E486FE7F30B9130FBBA05 /* RCTBaseTextInputShadowView.h */, - F010E6E5881FBE23609DD4ACDD72DFBA /* RCTBaseTextInputShadowView.m */, - CB0363440EAACEB8FC038D5E3688E767 /* RCTBaseTextInputView.h */, - DBFB2DA0BD39B37F21F1E501AA2FF9A7 /* RCTBaseTextInputView.m */, - 360E5C05B774C89A4883C0016C5A174E /* RCTBaseTextInputViewManager.h */, - 48CDD3D004E41FE4429E22AA6B706BBE /* RCTBaseTextInputViewManager.m */, - BCE4CC278D8752E28C938077E63BBF50 /* RCTInputAccessoryShadowView.h */, - 391997F6F4B713013E49A83AE3C6D423 /* RCTInputAccessoryShadowView.m */, - 60015539A1AC8BB1EB1797DFA53A3701 /* RCTInputAccessoryView.h */, - 1D0700C43F0306DFDA0749EAD83C8E98 /* RCTInputAccessoryView.m */, - A7519B970EE61F43835C92AE2F9B5C71 /* RCTInputAccessoryViewContent.h */, - C580D2AE368630058266B505EE2FCCAC /* RCTInputAccessoryViewContent.m */, - 19BDD18734E3ED77D3CAA89E3F1C4EF8 /* RCTInputAccessoryViewManager.h */, - F3A1FAE6B577DEA5E0B3C3808908D7C3 /* RCTInputAccessoryViewManager.m */, - 4280C368ED60D926AA8A55E3D8008357 /* RCTTextSelection.h */, - F60429AEE8059FEE3EBCD6841CC9A091 /* RCTTextSelection.m */, - B389AA7C7C0AC15988E726435DE956AC /* Multiline */, - 4D816F599F8B1F2C365EA02B82149264 /* Singleline */, - ); - name = TextInput; - path = Libraries/Text/TextInput; + name = Pod; sourceTree = ""; }; A4B637D514F44D29D03380C521612787 /* QBImagePickerController */ = { @@ -3436,25 +4430,61 @@ path = QBImagePickerController; sourceTree = ""; }; - A7E9552E49A8F9AB8A718EFEF1A1E628 /* Pod */ = { + A5662944E4ED653BB568FA7D3615314A /* EXConstants */ = { isa = PBXGroup; children = ( - 1CF79665F242EEB18FF79334F73B3864 /* LICENSE */, - 68FD0607CE08500BB44B5823C38CDC44 /* react-native-webview.podspec */, - 10AAC81D80F58DB861A6A5FF0B125F14 /* README.md */, + D28151816F39FDAB286C1B086A6D5441 /* EXConstants.h */, + 3F7AF9C51D51F92DD053537B8222568C /* EXConstants.m */, + 861A76F20C898312EB1E59975DFA19A8 /* EXConstantsService.h */, + 1B3F11C80E1039393852D112C2E721A8 /* EXConstantsService.m */, + 75EB8B99807CB980F411CE09E4E92DE3 /* Pod */, + EB4DA7158DE24D8A5BE567EF72FB722A /* Support Files */, ); - name = Pod; + name = EXConstants; + path = "../../node_modules/expo-constants/ios"; sourceTree = ""; }; - A9C624B33A20293F86DBEC550ECCF191 /* RCTBlob */ = { + A60554627D3487BD1B99D9E4686DB3B9 /* Support Files */ = { isa = PBXGroup; children = ( - AC722EAC71B535A1F4041C2E6A53A369 /* RCTBlobManager.h */, - 001AAF3E9126740B41E02447608D4D2B /* RCTBlobManager.mm */, - E154487BD68447A3EF40C21DC201A797 /* RCTFileReaderModule.h */, - DAB4A986AEBCB76228BB567F8E0A7E82 /* RCTFileReaderModule.m */, + 231B966E6573E3BA0004DA6618D9B2C2 /* React.xcconfig */, + ACCEB0B1E6EA0C01E1B76B360B6B186D /* React-dummy.m */, + 57B0CC97ADB2F95F43B65F93AD683F49 /* React-prefix.pch */, ); - name = RCTBlob; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/React"; + sourceTree = ""; + }; + AC45653C202F7C6E6463B28DFAFEB45B /* Development Pods */ = { + isa = PBXGroup; + children = ( + 1699E12DB0F4F618EA56F0869D6F2D02 /* EXAppLoaderProvider */, + A5662944E4ED653BB568FA7D3615314A /* EXConstants */, + FFE4CA32FC76230691C362E099292C5A /* EXFileSystem */, + 9C014321ADF2295BD52DA1DBC633F328 /* EXPermissions */, + DA3C0D0B97E61AE2F6AD627588FCA014 /* EXWebBrowser */, + 3A63C5105EB5F1806C789C2758BFCB22 /* React */, + AFB9B484A579DDED13C185EC8EE1908B /* react-native-orientation-locker */, + E5D2AA5A1312B790BB6CA393CF4933FD /* react-native-splash-screen */, + 20C22A01910EDC65B2103E089BA70476 /* react-native-webview */, + 6B20B5160BDEFB0D4A944C891A910938 /* RNDeviceInfo */, + 526C94951A9A772BFE966B6A6D6D6C54 /* RNImageCropPicker */, + 82506348EF6A0B4CA1663BCB9096CFB8 /* RNScreens */, + BBB839F66337D63290BF5B3B3DA0AB67 /* UMBarCodeScannerInterface */, + 4F98609FBAE2F50633E0AE4401A862A2 /* UMCameraInterface */, + 86BDD1A93131B46BA7D2DFBE4BC19EDE /* UMConstantsInterface */, + 22C73B48D424801EF746509898302989 /* UMCore */, + 2177D64F265D1ACE2948210E57EDD00F /* UMFaceDetectorInterface */, + F5B430776DDBA85DEBCBD00F801958BA /* UMFileSystemInterface */, + 15989E229E6F374FA4447D239139ECDA /* UMFontInterface */, + 8E7D90EDB31B20856A536E1CF203AC33 /* UMImageLoaderInterface */, + F9AC905D871FE0F15DC922D5724C15E3 /* UMPermissionsInterface */, + D02DDFC404B2CC3C7B76503894CA3003 /* UMReactNativeAdapter */, + 950EA756FB2EA961F354BB6F070C7064 /* UMSensorsInterface */, + CC143F045946AD38F8F519D3A2FBCD41 /* UMTaskManagerInterface */, + AFD65F9E9E4201543AEFA4A69CF72E44 /* yoga */, + ); + name = "Development Pods"; sourceTree = ""; }; ACF6B0DDA33E83229CBCCD8A0BB9BE70 /* RSKImageCropper */ = { @@ -3502,6 +4532,62 @@ path = "../Target Support Files/Firebase"; sourceTree = ""; }; + AFB9B484A579DDED13C185EC8EE1908B /* react-native-orientation-locker */ = { + isa = PBXGroup; + children = ( + CAF143E1E7ED92D08E3C3432190E7A9E /* Orientation.h */, + F2464CEBD0BB0B1B2E8D01172B2A6AEB /* Orientation.m */, + 07DF13CFB4BF6073CE61C55F2918B954 /* Pod */, + BE2F6FF84C3E77E34CB3D566714F1B44 /* Support Files */, + ); + name = "react-native-orientation-locker"; + path = "../../node_modules/react-native-orientation-locker"; + sourceTree = ""; + }; + AFD65F9E9E4201543AEFA4A69CF72E44 /* yoga */ = { + isa = PBXGroup; + children = ( + AABE5795C8CFD060112F0AF07E40FD00 /* CompactValue.h */, + 3C5C96ED1BBFBDDD5D873F41010FE12B /* instrumentation.h */, + B41A54F634DAD80956CC13ADE0E55364 /* Utils.cpp */, + 2B1B38D97CC2E75944B260CE9765367E /* Utils.h */, + F6DB59C58191061510504045500E3D53 /* YGConfig.cpp */, + 2BD4B0282AC59F89462194F07C0D2B3D /* YGConfig.h */, + 056C7FC5EE011B3CCC5AE76F67DF6962 /* YGEnums.cpp */, + 8B8F0579A9CF59FFC4F5F3CC25D6A8C2 /* YGEnums.h */, + 44A02EB7CE80D015110C7D9C22D352C1 /* YGFloatOptional.h */, + C35DBDEDBB81FA3C61ADD8DDEFDF38C6 /* YGLayout.cpp */, + 54ABF5F2B16EAA8A1545B71B5C961875 /* YGLayout.h */, + B59C809BF2F7DBD59CE4CA83A46F529F /* YGMacros.h */, + 1C17A5EEE73F2A28DBEEB6E1464683A1 /* YGMarker.cpp */, + 890768481D4BB4205103013DE4B3640C /* YGMarker.h */, + 3A32005A36CE1F8C2942EB9F65F1ADBE /* YGNode.cpp */, + 0E89CF155C6E36CDE6946192F3608160 /* YGNode.h */, + D6F669B30089DD5744D83D5C9F8F4F0C /* YGNodePrint.cpp */, + 3EC9E0452A7C8DC2B1682F1D192A5B7C /* YGNodePrint.h */, + 60042A28AD88403718D41C4C668ED417 /* YGStyle.cpp */, + 27B862744D32DFC1C73A8D6E420C33D4 /* YGStyle.h */, + 97B391EFB99B208776049CE4F698A6EE /* YGValue.cpp */, + 26C4F97FBC172AB416CDD855FC91AB1A /* YGValue.h */, + A7B78D23D17C806D9968287D113B87CD /* Yoga.cpp */, + A6A62E84F3E5F9AF4A3F1E9E0C488173 /* Yoga.h */, + B8FFFD78BF442326333A21BA8336F645 /* Yoga-internal.h */, + B5D34DFF44A3FDA0540346D0E76BD847 /* Pod */, + 40EBAD1FD98726E7F08344C5C48AA016 /* Support Files */, + ); + name = yoga; + path = "../../node_modules/react-native/ReactCommon/yoga"; + sourceTree = ""; + }; + B05C0FDC7264DC1F2789A087AB574078 /* Support Files */ = { + isa = PBXGroup; + children = ( + 01EF4CD4ED20556FD7894D5A97740BEF /* UMBarCodeScannerInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; + sourceTree = ""; + }; B0B14F0A7B74B461C5E79F8A35BA225B /* Support Files */ = { isa = PBXGroup; children = ( @@ -3511,40 +4597,67 @@ path = "../Target Support Files/FirebaseABTesting"; sourceTree = ""; }; - B389AA7C7C0AC15988E726435DE956AC /* Multiline */ = { + B1DD292F910C5FE00840F8873F955A47 /* Support Files */ = { isa = PBXGroup; children = ( - 5309AEE0F5431EC543070160597ADE5C /* RCTMultilineTextInputView.h */, - 3AC87FAB4A78559F1956157C8D0ABCF5 /* RCTMultilineTextInputView.m */, - 4D145FC36FA866340E2B54EDEA751F16 /* RCTMultilineTextInputViewManager.h */, - 4D6D63C2D1947B5314013A9F285E9A69 /* RCTMultilineTextInputViewManager.m */, - D057DBCC4996617F1AE42C3AA200BE73 /* RCTUITextView.h */, - 832B8E1A6E2F64F8E79302941C84EC8E /* RCTUITextView.m */, + 19F468ECED73EE466BAFBC96CAD74433 /* UMFileSystemInterface.xcconfig */, ); - name = Multiline; - path = Multiline; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; sourceTree = ""; }; - B9DEBF0BD9B60592DCB01749B91EBCB9 /* Surface */ = { + B1F7D779264A063CE9B923C9EE2FE489 /* Pod */ = { isa = PBXGroup; children = ( - 31343CC066A95C3752117FF59B9070AF /* RCTSurface.h */, - 5BDEF993C35C5C5E7F196C02190C34B1 /* RCTSurface.mm */, - 1EB873A45A231FDB78C5F6E390EEF814 /* RCTSurfaceDelegate.h */, - B7239BAAA5781F25CC6387D9FF62585E /* RCTSurfaceRootShadowView.h */, - EC1422D8BFC01458269C9EE753E02562 /* RCTSurfaceRootShadowView.m */, - 85745FD507AED2D1B9D3002C98D5A6B6 /* RCTSurfaceRootShadowViewDelegate.h */, - BDF07FC39E6601F7B934695CCD5B2E98 /* RCTSurfaceRootView.h */, - A9C9647041EE11DDCEE94AE44A3D2044 /* RCTSurfaceRootView.mm */, - 709498DBCC6196365BD2208B3028A858 /* RCTSurfaceStage.h */, - B8E5708BD21BC585731D0521213DD568 /* RCTSurfaceStage.m */, - B974B72AE5003E968B46CF852FF010BA /* RCTSurfaceView.h */, - C7A3DC78E45B6BDD173EAD696BDC0DBD /* RCTSurfaceView.mm */, - 0CEA6B3088D757477B874AF223239133 /* RCTSurfaceView+Internal.h */, - 6D2F5A9370F7D27A33B76E01B1A06900 /* SurfaceHostingView */, + F417B170DBA376E3F8123294805C3500 /* UMReactNativeAdapter.podspec */, ); - name = Surface; - path = Surface; + name = Pod; + sourceTree = ""; + }; + B24CEE12C173C4DABC66AF2A8DDFEA37 /* Pod */ = { + isa = PBXGroup; + children = ( + 5F8B62D33E49BE7AEE1D122152112716 /* EXFileSystem.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + B5D34DFF44A3FDA0540346D0E76BD847 /* Pod */ = { + isa = PBXGroup; + children = ( + 8D9DD6BF4BA8607A46520220B791717F /* yoga.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + BA32D11BC6241BD28ADC73A7A10920A5 /* Pod */ = { + isa = PBXGroup; + children = ( + F5D481696FE6F88C1964745E614E3A2A /* UMFileSystemInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + BAACE191AA659377651C080864B246CD /* UMModuleRegistryProvider */ = { + isa = PBXGroup; + children = ( + 9FF181FB6116A9CA2DBFC3D40F5EC124 /* UMModuleRegistryProvider.h */, + D96DFC2DCCAF308B72584E5077455DBC /* UMModuleRegistryProvider.m */, + ); + name = UMModuleRegistryProvider; + path = UMCore/UMModuleRegistryProvider; + sourceTree = ""; + }; + BBB839F66337D63290BF5B3B3DA0AB67 /* UMBarCodeScannerInterface */ = { + isa = PBXGroup; + children = ( + 83E9CEB7D866DF2A85B921177C2029E5 /* UMBarCodeScannerInterface.h */, + 1B96E4EAC0210AA012C47E135DE1D551 /* UMBarCodeScannerProviderInterface.h */, + 4BC4642299D23753E82D7F1026A17ADC /* Pod */, + B05C0FDC7264DC1F2789A087AB574078 /* Support Files */, + ); + name = UMBarCodeScannerInterface; + path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; sourceTree = ""; }; BDA7536C8CAC72B07ED9CF717C00A9BB /* GTMSessionFetcher */ = { @@ -3557,17 +4670,6 @@ path = GTMSessionFetcher; sourceTree = ""; }; - BDE3279994953FF384AB4FA1F8428E60 /* Support Files */ = { - isa = PBXGroup; - children = ( - 495AF3D800175BD4B68CB72DFAC170DF /* react-native-orientation-locker.xcconfig */, - 639A8A756E2673AD03AD87B87B1215D6 /* react-native-orientation-locker-dummy.m */, - 42AECD598C631F17CAA85F19766E43B8 /* react-native-orientation-locker-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; - sourceTree = ""; - }; BE0EDBFC60467C5FBEA82D877212D9EF /* Defines */ = { isa = PBXGroup; children = ( @@ -3586,6 +4688,17 @@ name = Frameworks; sourceTree = ""; }; + BE2F6FF84C3E77E34CB3D566714F1B44 /* Support Files */ = { + isa = PBXGroup; + children = ( + 63E8726393D906F3550C9EAF21B73214 /* react-native-orientation-locker.xcconfig */, + 0DCC4DE9E15A2BD536CB0732B569E143 /* react-native-orientation-locker-dummy.m */, + 92AA2D9022858B9F372E49F12B5399D3 /* react-native-orientation-locker-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; + sourceTree = ""; + }; BF29E20B3515EAD8CA9AB46A89E098D1 /* Reachability */ = { isa = PBXGroup; children = ( @@ -3646,42 +4759,229 @@ name = Frameworks; sourceTree = ""; }; - CE8C511883686541A2279D0B4DF812D1 /* RNImageCropPicker */ = { + CBF49977158EA04916C391070545718E /* SafeAreaView */ = { isa = PBXGroup; children = ( - A05B3B53971D89846CBF9E89E50C6122 /* Compression.h */, - 0D06F244A607B7A1EEAD91787CDC01C9 /* Compression.m */, - E733BBE63869E6D6C3E02F5FCC6C08C5 /* ImageCropPicker.h */, - 248F4F5FFD5BE6494CF378FBBFBAC07F /* ImageCropPicker.m */, - BA53310A7B00B120FCF2F5B70A54DB45 /* UIImage+Resize.h */, - DF0F4D415D88D059359F90BA6F2572FE /* UIImage+Resize.m */, - 0C3D2781A3C57BF0A6FC657AA6ADE9D5 /* Pod */, - 13EAEB44593CDB5457A551C55B827178 /* Support Files */, + 0A5273EB5883838AD1C88A8AD0698979 /* RCTSafeAreaShadowView.h */, + 14F231C081C9CE3C69A8DAF83535644C /* RCTSafeAreaShadowView.m */, + A1DAFF1CB49725B5C5664208484F7575 /* RCTSafeAreaView.h */, + AFD5D59A2CEEA5755040FDCF03184CB8 /* RCTSafeAreaView.m */, + 6282A9FA1399B4966EE0EC6FCA4F05DD /* RCTSafeAreaViewLocalData.h */, + C3AEE27A7C1180115661F3E0C4A9807E /* RCTSafeAreaViewLocalData.m */, + 031F8E2B25ECEA9A465FDCCC71E3CADD /* RCTSafeAreaViewManager.h */, + 0030B5D0CC9FDA4086C0D102A9D1010B /* RCTSafeAreaViewManager.m */, ); - name = RNImageCropPicker; - path = "../../node_modules/react-native-image-crop-picker"; + name = SafeAreaView; + path = SafeAreaView; + sourceTree = ""; + }; + CC143F045946AD38F8F519D3A2FBCD41 /* UMTaskManagerInterface */ = { + isa = PBXGroup; + children = ( + E3FE423446DF26ED783090990CC825CF /* UMTaskConsumerInterface.h */, + 91D6B80003A5706ACFDB76031BFCFFEC /* UMTaskInterface.h */, + EBEBED41A2E41009340763C145A1CF89 /* UMTaskLaunchReason.h */, + A17A483EC0782C41753346F48CC8F846 /* UMTaskManagerInterface.h */, + 8B9B3EC77A21A5D0EED4C221CD41A02D /* UMTaskServiceInterface.h */, + 0FA2F1762435D2BAADDDC895FBEDA070 /* Pod */, + E19E0709A9EF101EB1F38E6A2D03032B /* Support Files */, + ); + name = UMTaskManagerInterface; + path = "../../node_modules/unimodules-task-manager-interface/ios"; + sourceTree = ""; + }; + CC1CE7867BD87A8094C5718C1BC4D9B5 /* Support Files */ = { + isa = PBXGroup; + children = ( + FCA8325578A3ADCBD85ACA8AF477EC2A /* EXWebBrowser.xcconfig */, + 78E7253F767B7FADF737B07003AAEA3C /* EXWebBrowser-dummy.m */, + 18C55895F0006CE859732C63559283A0 /* EXWebBrowser-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; + sourceTree = ""; + }; + CE122F80BA8CD1DDFBABF058BFF46531 /* Views */ = { + isa = PBXGroup; + children = ( + 7CA3AE206F5C109F60096430C6555D9F /* RCTActivityIndicatorView.h */, + 7C4A5C4BC95836171989EC12B6623F4E /* RCTActivityIndicatorView.m */, + 2FF6D76ADDC0C60AD4B81C47FA11932D /* RCTActivityIndicatorViewManager.h */, + 9E8E65A7260F353FC344F1F63B1AF4B8 /* RCTActivityIndicatorViewManager.m */, + D58294BC4749BD8D97E9233A847499D4 /* RCTAnimationType.h */, + BC6B84CA2534E44B22B79205ABE8BFE0 /* RCTAutoInsetsProtocol.h */, + 80B886AB2E9143FB180384C7EDDAA401 /* RCTBorderDrawing.h */, + 7A6E8AC2A07F78B204FE70462E74DDE5 /* RCTBorderDrawing.m */, + 28122F813D19F76D6EA22C0094BFC587 /* RCTBorderStyle.h */, + 9C7DAAF43C50099B3C7817838C20219C /* RCTComponent.h */, + 4FC5AB30FCC9AFBD1D5D2CB9E0FBAACD /* RCTComponentData.h */, + 4ADF5EA030B4AFAC1EE01CD606053934 /* RCTComponentData.m */, + 189D98D929058EC739EFEE1F3C94C8A5 /* RCTConvert+CoreLocation.h */, + FAEEDA9655E7D3869F460FCF00D3471A /* RCTConvert+CoreLocation.m */, + 36E68E045C9CB25AE38E86ED6CFB8B98 /* RCTConvert+Transform.h */, + D1C2282D9D0863052F8948EAF4084FDB /* RCTConvert+Transform.m */, + 45A093FD47582D8EEA90793CC27F1151 /* RCTDatePicker.h */, + 8990471CD2E35107E0CC868C6180D057 /* RCTDatePicker.m */, + 12864B0FA18BA936AEA5A8E6DB9AD12B /* RCTDatePickerManager.h */, + DC41172584293FF41624A8E94F6076C1 /* RCTDatePickerManager.m */, + 64235F7064C8A6DDA07A3A3DF491D10D /* RCTFont.h */, + C9BBB08B18987CBFE0BCFA1596980CF6 /* RCTFont.mm */, + 28050C6074331DC8460D494CFF32E868 /* RCTLayout.h */, + 2ECEC55EDDCCD1F1F2B83558A9D7B414 /* RCTLayout.m */, + F45318079269BCB6F14889848E908FDB /* RCTMaskedView.h */, + C64AB32016870BDDB6B3F775E33EAFD6 /* RCTMaskedView.m */, + F53ED85FE470B5137FCF5F956B3A65DA /* RCTMaskedViewManager.h */, + A775E87004A6309552AFBB7103377784 /* RCTMaskedViewManager.m */, + 01007BE2B4A194506D77D92090E68178 /* RCTModalHostView.h */, + 5EC52855F8B7DDDB7570E6FF6613B6CC /* RCTModalHostView.m */, + 67B77477FCC80A0EDB2262F5C9642FED /* RCTModalHostViewController.h */, + C7B99B95441DF8A95F699409C99CD4BC /* RCTModalHostViewController.m */, + 769637C3CDD6ED41E79E54661D3C2C69 /* RCTModalHostViewManager.h */, + 4BAD7B24802C17494631F787C3A832F1 /* RCTModalHostViewManager.m */, + 282F5DF26E2302E1475D4EE081DE188F /* RCTModalManager.h */, + 08EA203E178FE22B6F45D9CB9ABFDADC /* RCTModalManager.m */, + 1417C8BD310BAD78B8CDA1ECBE803066 /* RCTPicker.h */, + CDFEBAFBBF57A1A67A017605C9C3A8E0 /* RCTPicker.m */, + 3ADF1D066E498673A3A89085E9EBE2B1 /* RCTPickerManager.h */, + B920E0FD2B1E4B495B998EF9D7351A90 /* RCTPickerManager.m */, + 475559CCE2E8740BD22A0ED0D903315B /* RCTPointerEvents.h */, + C2C3B80B5C73E0856C34B4F9F6429AC1 /* RCTProgressViewManager.h */, + F47F11CB8F49F621904FC2C453A75AD8 /* RCTProgressViewManager.m */, + 76F9A6BC8E6D8EC5DAE564E5ADEA597F /* RCTRefreshControl.h */, + 4474D15EBD0B5B44D48CD434EE57C233 /* RCTRefreshControl.m */, + 0D40AF4A2F3E7E311287D43124934F54 /* RCTRefreshControlManager.h */, + 698AA1047EBB81EFE8140F86663C2F53 /* RCTRefreshControlManager.m */, + 63A741F47AEAFE816B0EA4DC6CE54366 /* RCTRootShadowView.h */, + 29D7B68F63008D5EDFAB6F0D149C5FCF /* RCTRootShadowView.m */, + 493F02BEA366DB107C886479F653D364 /* RCTSegmentedControl.h */, + C05FA4694856A6436746407D5088E5F1 /* RCTSegmentedControl.m */, + 19A4D5C0A12418D8D5337895B092F2DB /* RCTSegmentedControlManager.h */, + CFB5FE9EA8E692B894E4412C93E17CAD /* RCTSegmentedControlManager.m */, + 9ABC2DFA968A5D007F4E79098D6D7061 /* RCTShadowView.h */, + BE59DE4874B673F401750B92E8A6B768 /* RCTShadowView.m */, + E4D943692016C76A0D7B5542C4DB238B /* RCTShadowView+Internal.h */, + A5ED5025A1B864099D223F29D34FA949 /* RCTShadowView+Internal.m */, + CF67D3FE39FA412FCC6C41BA6D9C89D1 /* RCTShadowView+Layout.h */, + B826F41705F98105BAB5D991C1A9966A /* RCTShadowView+Layout.m */, + 64DE45EF6C0F85B930F6CB0E2DD334AD /* RCTSlider.h */, + 1CF002A6FAAEE3BA0D4096358A076777 /* RCTSlider.m */, + BB2DA4A8DD5348D6D59C643D7E6E702E /* RCTSliderManager.h */, + 6AE83181A5A19C15F4602AF27795DC64 /* RCTSliderManager.m */, + B882468DC9FF279843DB717C6102D65C /* RCTSwitch.h */, + 1733223F77AA4E8FEB55CA8F95165122 /* RCTSwitch.m */, + 0E44F3DAA947595DB982DEAE1E00595B /* RCTSwitchManager.h */, + 7F6968ECD9F95509ED4A8CB43CBBFCD8 /* RCTSwitchManager.m */, + 50996A9329871FEEF87B0ACF745E4150 /* RCTTextDecorationLineType.h */, + 8390800F60FBA1A886099DC55CFBAC50 /* RCTView.h */, + F98EFF39BD889E2736CA6AFDAE564689 /* RCTView.m */, + 8D4AB4C334CB707C56A095EFBAB9F9EA /* RCTViewManager.h */, + 99D25A80342253BDD1D06841437F18E7 /* RCTViewManager.m */, + 512DFA1D944D1935E2F0A1C92E52041A /* RCTWebView.h */, + E678E9A6E05FA8A1D562848738CCAB65 /* RCTWebView.m */, + 2E82C7076879CE9326E0133B092945EE /* RCTWebViewManager.h */, + 7C43D04338C2361DCEB56EDA7E273D55 /* RCTWebViewManager.m */, + F536C0153EAF12550102BECF638671A0 /* RCTWKWebView.h */, + 54EF61827A241A2701D6A293365FA06E /* RCTWKWebView.m */, + 28543891F7EABB7936CBE5F32B6DBB2D /* RCTWKWebViewManager.h */, + E62D7A42AA3890EF3E4131AFA55625FA /* RCTWKWebViewManager.m */, + 1CB5AE1B09A4E0011B9DB85FE7D0BFFE /* RCTWrapperViewController.h */, + 78F4CDD536D09120994332BB0C54A4DC /* RCTWrapperViewController.m */, + 58B503D5DE0F7BDE9579A2BF7B3C7D22 /* UIView+Private.h */, + 7680771530292A6366559AC446B9DB6D /* UIView+React.h */, + 0D8EFA85D6E5A696E746C6F1C33A2B75 /* UIView+React.m */, + CBF49977158EA04916C391070545718E /* SafeAreaView */, + 586E32865D9192333BEAC5E76B47B0B8 /* ScrollView */, + ); + name = Views; + path = React/Views; sourceTree = ""; }; CF1408CF629C7361332E53B88F7BD30C = { isa = PBXGroup; children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, - 12E9E552113B4DDA57850B7223C441CE /* Development Pods */, + AC45653C202F7C6E6463B28DFAFEB45B /* Development Pods */, D89477F20FB1DE18A04690586D7808C4 /* Frameworks */, 4FC37C41F11924A2602F786314152701 /* Pods */, - 2CA33BD7FFDE88790D6DBF5305DB1BA8 /* Products */, + 3F01BD455D6E2426308E6AC856BBFF03 /* Products */, 64F063D584DCC83598AB7F1D35E7F984 /* Targets Support Files */, ); sourceTree = ""; }; - CF7141A6861D11E795C4D71396A0D8BE /* Pod */ = { + CF54CCC44D1F455A37B88D6090756ABA /* Support Files */ = { isa = PBXGroup; children = ( - 7DA1A080C1670377B7C3F90B446E7512 /* LICENSE */, - 6EB64A60949FC9B3E9CFAC05DED76C5A /* react-native-splash-screen.podspec */, - 6EB8186377062FD05FD91EAC947E877C /* README.md */, + 636E9E7C4545EEAF5E9A4B8F99F8C16B /* UMSensorsInterface.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; + sourceTree = ""; + }; + D02DDFC404B2CC3C7B76503894CA3003 /* UMReactNativeAdapter */ = { + isa = PBXGroup; + children = ( + 63C8128F9A3A5D250BFC71249E0FEC55 /* UMBridgeModule.h */, + B1F7D779264A063CE9B923C9EE2FE489 /* Pod */, + 4ECCC527E5092ADB469F6FDB673E50F8 /* Services */, + 5AF97F24B101DF40258CF7B3AB82443F /* Support Files */, + 4A8DB48B351EDF418F703C47779F0C39 /* UMModuleRegistryAdapter */, + 4BDB2A377D4602D4DCE8CEB55334FA1F /* UMNativeModulesProxy */, + FC66497975403690FD847CA3CD12EEDE /* UMViewManagerAdapter */, + ); + name = UMReactNativeAdapter; + path = "../../node_modules/@unimodules/react-native-adapter/ios"; + sourceTree = ""; + }; + D050F147D90EBB5103578AAE57357116 /* Modules */ = { + isa = PBXGroup; + children = ( + 5B7AB0CB3B00DC655C7444FF210E3136 /* RCTAccessibilityManager.h */, + FB96B41871B71855586A169F12F29BC3 /* RCTAccessibilityManager.m */, + DAAAF86758CE77A4332BE80E77253DBD /* RCTAlertManager.h */, + 0B38BEC76AC4DC9434B28B64A6007753 /* RCTAlertManager.m */, + ABBA3F4633CFF211335B3001AD6842B0 /* RCTAppState.h */, + 4BFCB713A66F84C93A395759D75F03FA /* RCTAppState.m */, + E6C98F6F9BC2F9206AD7A680BAD355AD /* RCTAsyncLocalStorage.h */, + E9ADF33DA29A6AA2734EBBD67E0670B2 /* RCTAsyncLocalStorage.m */, + FDE5A7FA3137D90041CAB25A8FABAC69 /* RCTClipboard.h */, + 464A2559EB18858BDE49869DCE996E08 /* RCTClipboard.m */, + ED2CEEBE8A7DAD77DE37D2CF2E0FB36D /* RCTDeviceInfo.h */, + 5D8505D4CA9382A08DCE875CD60FB6FB /* RCTDeviceInfo.m */, + 3ACBA43CB70F1C1A49F1F0C42F57A1BF /* RCTDevSettings.h */, + F770AA00FDA1157ABD73202E6ABCC63A /* RCTDevSettings.mm */, + CA8E21178CBB46D8947489916F8E11C9 /* RCTEventEmitter.h */, + 2439FEE333FA77815E9DE865EF0B074F /* RCTEventEmitter.m */, + A88ED29C4AF8C15E2FB0F5DBA7EC3575 /* RCTExceptionsManager.h */, + 83FDEF70282B569E0AD6717AE25BEDB0 /* RCTExceptionsManager.m */, + 5DB64E108059078D3F4A6CE1EEEC289E /* RCTI18nManager.h */, + 9B9A5C55086D34836B48AFA0CA71B9E4 /* RCTI18nManager.m */, + 14C0A2ED45574AB0DBA15D61C643A9CC /* RCTI18nUtil.h */, + A0AFB1D34B4D21BEDE901C5F68BE99AA /* RCTI18nUtil.m */, + 17822812448FD33A9D2EC98BC3B1CD36 /* RCTKeyboardObserver.h */, + 7EEC4947EDFBE36B3650A3E5FB6A5B52 /* RCTKeyboardObserver.m */, + 5E95FC2388C4510F851514428A9D28ED /* RCTLayoutAnimation.h */, + 63AD99E2E51B7DDF3533A209F4686A3D /* RCTLayoutAnimation.m */, + 6C105936026F0AA5402B7E9A82D19E2B /* RCTLayoutAnimationGroup.h */, + F9A64EA9703E81E844B51079DC2BB5A3 /* RCTLayoutAnimationGroup.m */, + 375B63386C1B8CDF2C1FD6C40C790F0C /* RCTRedBox.h */, + A3ECC76CBD02C2CF86DF71E8A9CB5811 /* RCTRedBox.m */, + 0E86F846FB114EA8D99C44F9573E1DE3 /* RCTRedBoxExtraDataViewController.h */, + A1C54CFB4BC87BD14B1E46FB850CF663 /* RCTRedBoxExtraDataViewController.m */, + 24D1161A66E2DAFED61651E51CBFEBF6 /* RCTSourceCode.h */, + 861280C2B3CF8C63E9DC8B90BDA09B71 /* RCTSourceCode.m */, + 1F4D6F414F814495259FA23690BA0A7C /* RCTStatusBarManager.h */, + 5F72A4AE55482C289F51DB1D69711C97 /* RCTStatusBarManager.m */, + 86914CB8434B122698ED5D4DD65E55EC /* RCTTiming.h */, + 416BFF47D159104A3D9B6BD65F3C1768 /* RCTTiming.m */, + F9E4D05D1997E992F023353980916821 /* RCTUIManager.h */, + 9872B60E591CEA17C94DC08622C9AB69 /* RCTUIManager.m */, + 3783B8B353FE51B4ECE2F02333F79948 /* RCTUIManagerObserverCoordinator.h */, + 303A878C4D780678235AD9EF0049B35E /* RCTUIManagerObserverCoordinator.mm */, + 3264C2BBD2B9839A6DB62F3DC0A2CD44 /* RCTUIManagerUtils.h */, + 59E24BFED29842C0000C94AC01B2985C /* RCTUIManagerUtils.m */, + ); + name = Modules; + path = React/Modules; sourceTree = ""; }; D244689683E954BC8C0AE8160EEEFCA5 /* Pods-RocketChatRN */ = { @@ -3698,6 +4998,28 @@ path = "Target Support Files/Pods-RocketChatRN"; sourceTree = ""; }; + D277FBC8869FF813ABE90FE051011672 /* Surface */ = { + isa = PBXGroup; + children = ( + C2925AD1DD83BDB658CD62D0443AD4FF /* RCTSurface.h */, + AA2CF3B2F1588C1DB7295D9F42569C3D /* RCTSurface.mm */, + A0171836FA7529CDB139795543E259CF /* RCTSurfaceDelegate.h */, + 674A99CDB2F603B4C4854FB82F022D9C /* RCTSurfaceRootShadowView.h */, + 7905B60B82DB16D1649441A133F0B8C1 /* RCTSurfaceRootShadowView.m */, + 6B8EA235DF0806C854698CDB643852BA /* RCTSurfaceRootShadowViewDelegate.h */, + 76D0B6AA74CB1B3EDD775E61107F1B0F /* RCTSurfaceRootView.h */, + DC63BE37C34E3A10328328127AF3A460 /* RCTSurfaceRootView.mm */, + 3B0EFD6B3FD550C0B0BC882C1F282595 /* RCTSurfaceStage.h */, + 39D752ACDC276F3F261CF640DEB0D76E /* RCTSurfaceStage.m */, + F478B9F2F003934BD0914FCC399D6E6A /* RCTSurfaceView.h */, + FABB33964506732F9F905D8D25522A7A /* RCTSurfaceView.mm */, + C77C573A2DD346BA9DDAD9B267631E81 /* RCTSurfaceView+Internal.h */, + 1299FD706C5DA16A997AE126B4CF605A /* SurfaceHostingView */, + ); + name = Surface; + path = Surface; + sourceTree = ""; + }; D2EF23320DAD5A5B1FC7AF07287026CF /* Support Files */ = { isa = PBXGroup; children = ( @@ -3720,6 +5042,37 @@ name = AppDelegateSwizzler; sourceTree = ""; }; + D7ED0C750AAD4A2FB9F8A149EDEB458B /* Multiline */ = { + isa = PBXGroup; + children = ( + ECAEC0F673061C7B0E0FF5CD1049BFCB /* RCTMultilineTextInputView.h */, + 09E3EEAB5B104CBF49BAA7FDBBE2335E /* RCTMultilineTextInputView.m */, + 3478131BC348347A22DE404F4A90A9D1 /* RCTMultilineTextInputViewManager.h */, + 324DDC941F4AD1D9F2983AAB5755126E /* RCTMultilineTextInputViewManager.m */, + D129D697F4FC4E936F7FA519459A2E7A /* RCTUITextView.h */, + 0EDF3E12DCF4316A3B7AA063B5A10B3E /* RCTUITextView.m */, + ); + name = Multiline; + path = Multiline; + sourceTree = ""; + }; + D803B400F116114BEB1E08698BF37E70 /* RCTText */ = { + isa = PBXGroup; + children = ( + 0EB07B6D8E9C0E307E33CA54983B469F /* RCTConvert+Text.h */, + FCB8884193A9A6206442C2F29F4CCD01 /* RCTConvert+Text.m */, + A11AA2E3D919A6A6A302F41200C8D436 /* RCTTextAttributes.h */, + 8930EA1871A91959F0E5C92D9DF064D2 /* RCTTextAttributes.m */, + 933C11092D1BCB41F043B75A28B9C392 /* RCTTextTransform.h */, + 38FDCEBA3F17619C9F1A5DFC627C32D0 /* BaseText */, + 0D6C94A142EB4A122788E553FD52B9A2 /* RawText */, + 9268F96FDB53652AECA5FBF38EA16641 /* Text */, + 8AF3C93FA9AEB1481EFB1329B4595DB7 /* TextInput */, + 727C062E575A271F2007FBF25DD37A33 /* VirtualText */, + ); + name = RCTText; + sourceTree = ""; + }; D89477F20FB1DE18A04690586D7808C4 /* Frameworks */ = { isa = PBXGroup; children = ( @@ -3727,13 +5080,16 @@ name = Frameworks; sourceTree = ""; }; - DB9BE34AD0645FFC228A80797F78B2B6 /* fishhook */ = { + DA3C0D0B97E61AE2F6AD627588FCA014 /* EXWebBrowser */ = { isa = PBXGroup; children = ( - D6F3DDD9683FE9CCBB17BC144A3DA4BA /* fishhook.c */, - 174C3CDEF567F363603C3E3CB3890641 /* fishhook.h */, + 49D1DEB093902AA186353D40F3C3178D /* EXWebBrowser.h */, + 79A3AA7303075D4CEFF344518B5D27E9 /* EXWebBrowser.m */, + 2747A1D64DD6A56FB5C47A6A54DEFA8F /* Pod */, + CC1CE7867BD87A8094C5718C1BC4D9B5 /* Support Files */, ); - name = fishhook; + name = EXWebBrowser; + path = "../../node_modules/expo-web-browser/ios"; sourceTree = ""; }; DBF9E90458D7771B29E68C1BF57964E9 /* Frameworks */ = { @@ -3753,16 +5109,6 @@ path = "../Target Support Files/FirebaseRemoteConfig"; sourceTree = ""; }; - E04029A484FA564A22101FC3CE60E463 /* Pod */ = { - isa = PBXGroup; - children = ( - 95C5175F642E3D1EE1E95C61F934D79D /* LICENSE */, - 71DC16B20ADE8005F5F20D1F64844597 /* README.md */, - A862C948B544E7139FF0EC0CC66C3811 /* RNDeviceInfo.podspec */, - ); - name = Pod; - sourceTree = ""; - }; E0532FB94575FED5D3154EFB3E5EA1F7 /* Frameworks */ = { isa = PBXGroup; children = ( @@ -3771,131 +5117,78 @@ name = Frameworks; sourceTree = ""; }; - E21A9A9DE00CC6A57C0D93278E22C68C /* Support Files */ = { + E19E0709A9EF101EB1F38E6A2D03032B /* Support Files */ = { isa = PBXGroup; children = ( - 36BDCE6A03EBE2DE106F2E905C173FC2 /* RNDeviceInfo.xcconfig */, - 01E527DC82BB0D8C7168C89D23E7D5DD /* RNDeviceInfo-dummy.m */, - 8E978770765163316D42C84E58E53625 /* RNDeviceInfo-prefix.pch */, + 32B24EADC92EA0C4E9D26F18D6C42B3A /* UMTaskManagerInterface.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; + path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; sourceTree = ""; }; - E5B38463079A17AC4B3BAB674A803CBE /* Base */ = { + E23A5DEAB432062711A1E19785B69F4D /* Support Files */ = { isa = PBXGroup; children = ( - AD79AE7BA462FC2F5BE8E08437A62DCA /* RCTAssert.h */, - 4B174B7BE45B2B7C98F341EC109D0B6F /* RCTAssert.m */, - 3B92520DBC953627DB2EBB8BDB7950D0 /* RCTBridge.h */, - 65DFDAD45501F5F47CEEF4DFC81EFBB8 /* RCTBridge.m */, - FD33D4E6771698D781298E14B3764D61 /* RCTBridge+Private.h */, - 64DE17D43A63754C6DE3D954802C94FD /* RCTBridgeDelegate.h */, - 88329F93E6419B54BC2AC291C7A23F69 /* RCTBridgeMethod.h */, - BAB1E0DB32F48B96A09B8FD4ED4A7EE5 /* RCTBridgeModule.h */, - DE36DF4600FFCFF6729ACD8B59820986 /* RCTBundleURLProvider.h */, - 37F524CD0A14B6AADB92FF321918677C /* RCTBundleURLProvider.m */, - D98B97642A09C230205472A822F79417 /* RCTConvert.h */, - 2266DD41FFD3F2DF53E5DAB6F767E366 /* RCTConvert.m */, - D43303790384C3503AE4C648FE92A719 /* RCTCxxConvert.h */, - 1C869F5B0706877E6E60CC39ED896598 /* RCTCxxConvert.m */, - A31939181FABC5EDC141004A4FE08FF2 /* RCTDefines.h */, - 7F0F03D8DCB1A9C1F15408223E08DF62 /* RCTDisplayLink.h */, - D2E5E959768C3B5743A5DC730AF52215 /* RCTDisplayLink.m */, - 3A531BC7CCF0FF4977D0CE6538C73C92 /* RCTErrorCustomizer.h */, - C3CD048C174D3BD8686205CF0A73D44D /* RCTErrorInfo.h */, - 047C95AF51E8D46F16DDA9A4058CDAFB /* RCTErrorInfo.m */, - 26EC364BC53A89C8FABF49635BA5AE3C /* RCTEventDispatcher.h */, - A4C4E18A3498F28846447A0E2C406B18 /* RCTEventDispatcher.m */, - 0B0F182CDFD08AF7DAF54B1DF7214B6E /* RCTFrameUpdate.h */, - 802F4044CE222BF16E1FC6CB84AF165A /* RCTFrameUpdate.m */, - 1B810F0F52AB5EFE551D0E87B9D37332 /* RCTImageSource.h */, - AAC9BA903D7ED9EAB3E25E84983F4AF9 /* RCTImageSource.m */, - D10DCAC9A5B6E3F4ABBCC381201E4C60 /* RCTInvalidating.h */, - 4C3F849E4C5088D06BFE9F2E391FDA97 /* RCTJavaScriptExecutor.h */, - C477AECE714E42783E4722B303315F52 /* RCTJavaScriptLoader.h */, - 3CC558FA6F3C0410D9A56C57E5532ED8 /* RCTJavaScriptLoader.mm */, - 67B6C04B3A55FA243F6C35E757703453 /* RCTJSStackFrame.h */, - 0ACC2E217FC7B9720D6AEB5AD38C3552 /* RCTJSStackFrame.m */, - F0111606774D1C4DDD02357C9E0B40A9 /* RCTKeyCommands.h */, - 76C141C6E462C287A85420DE860AB4A5 /* RCTKeyCommands.m */, - B76A6FE8AC6F9DBEAE28E16B4BED4BA1 /* RCTLog.h */, - 12A1B8CF6E1502D989E6E6C52147F339 /* RCTLog.mm */, - F29AD233D31543D46BC2E1FBDFA10318 /* RCTManagedPointer.h */, - C9BABF0A639CA5B0614A3137E1D1C6B3 /* RCTManagedPointer.mm */, - 54AB1F9A19A7EA3F67C2E69B5E342464 /* RCTModuleData.h */, - 40C051AE529B15A67C6245DC1B6DA493 /* RCTModuleData.mm */, - 1D5ED9C54E2719CFE43AC5D2E440A869 /* RCTModuleMethod.h */, - 0FADD3FFD275D8F1B7CDDDC2E9108362 /* RCTModuleMethod.mm */, - A108628A31B8479324DFAEC6E8F61FA6 /* RCTMultipartDataTask.h */, - F5F669E193716891AD3C232265713373 /* RCTMultipartDataTask.m */, - 21D603271270CA58860B3D9150DD5282 /* RCTMultipartStreamReader.h */, - F04568720272569EDD3414171A5D8BA9 /* RCTMultipartStreamReader.m */, - 32FA86C1AD558353C675525F85274733 /* RCTNullability.h */, - 6DA5208649DBB873A3E30032D4681CC1 /* RCTParserUtils.h */, - 97533031D920B024584DF79D921B4EEF /* RCTParserUtils.m */, - B19B41788B14BDF80A2D05A4E9B3E91B /* RCTPerformanceLogger.h */, - 1EAD845EB27BD240C42ED60C7CFCF7A0 /* RCTPerformanceLogger.m */, - 7A9D18559A07075C9E65E3E402A5C88D /* RCTPlatform.h */, - C8F6BAA71A294E7D35B8D45FE7C5ACA4 /* RCTPlatform.m */, - 5C0116515A818D6FB8B481F8D9CAF25E /* RCTReloadCommand.h */, - 1DFCE95A81ECE0141160B50F0E4D6491 /* RCTReloadCommand.m */, - 13D2DA48A4216FE4F51113F809F12393 /* RCTRootContentView.h */, - 4B291487086EE82B7394180A30F34F1B /* RCTRootContentView.m */, - 45E53F701A6F230FEE9D5D397A56C09D /* RCTRootView.h */, - 3A76167228FFDD5F1C3955289F237535 /* RCTRootView.m */, - A3E624CA874BB24584DE94947410F9B9 /* RCTRootViewDelegate.h */, - F18FB55E09E814D1A517E847819448AC /* RCTRootViewInternal.h */, - E85B84F9A24CE732533ADB3229456ADD /* RCTTouchEvent.h */, - 5AEFCADEEBD5165AAA3FD3F30DA7F4E3 /* RCTTouchEvent.m */, - 639AB08F4B349C6E92E4C5800FA1F1DC /* RCTTouchHandler.h */, - 7C3540047463FC700E369C518510468D /* RCTTouchHandler.m */, - C40B4C89CFF78F20BF36885C73F904EE /* RCTURLRequestDelegate.h */, - ED01240CEDA4D44C8E87EB427365F8E9 /* RCTURLRequestHandler.h */, - 2F373F00B000E4CE4EBB9408247D435D /* RCTUtils.h */, - 6E305EC09D5D412748A399A60632E36D /* RCTUtils.m */, - 3A1B246EDF9484A4FF2C433D2700194C /* RCTVersion.h */, - 1F431A209C549CA0BE5E13A69CEA3512 /* RCTVersion.m */, - B9DEBF0BD9B60592DCB01749B91EBCB9 /* Surface */, + F267446490FA8DA114D5B34CBB45CC9E /* EXPermissions.xcconfig */, + F1318E29E57550F95C16288E33321257 /* EXPermissions-dummy.m */, + 56042BC31164476C8297B28CD58B6490 /* EXPermissions-prefix.pch */, ); - name = Base; - path = React/Base; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXPermissions"; sourceTree = ""; }; - E81FFB366A7593C74278CDE6E5ED175C /* RCTWebSocket */ = { + E5D2AA5A1312B790BB6CA393CF4933FD /* react-native-splash-screen */ = { isa = PBXGroup; children = ( - 5363EC9A46231D88DE63592159D4E167 /* RCTReconnectingWebSocket.h */, - B9784AE529FB7BDFEA2E1DE579913A86 /* RCTReconnectingWebSocket.m */, - 62B0A073F08D67EFDD33F8EC8AE2E50E /* RCTSRWebSocket.h */, - C1AE84829B84E3A53C3B84E1E851FA67 /* RCTSRWebSocket.m */, - B99DCD4D7C697BD9B0313DAE26B9C926 /* RCTWebSocketExecutor.h */, - 227C68B4E81A26EF7059D5FCBA69EE48 /* RCTWebSocketExecutor.m */, - 41E79D7D76AFB95C79BF02FA89E048AD /* RCTWebSocketModule.h */, - 2C51918EA1808D554CF1D321442A3CBD /* RCTWebSocketModule.m */, + 627B0BE5D7A9F12E77D45BEEA5ABAA12 /* RNSplashScreen.h */, + 56251F479828941CB3B4812B2DCB9493 /* RNSplashScreen.m */, + 306719FA6EFB2EFE064A03F5A8A716DE /* Pod */, + 972DF77C9B83ED43C193A8C1D44F86EE /* Support Files */, ); - name = RCTWebSocket; + name = "react-native-splash-screen"; + path = "../../node_modules/react-native-splash-screen"; sourceTree = ""; }; - E8963B324BBD81ED67B5BAE1887556FC /* RawText */ = { + E7323B671BBBA34D1594828574019461 /* Support Files */ = { isa = PBXGroup; children = ( - AEEEE929E8E64B51C416205F1CDC2C92 /* RCTRawTextShadowView.h */, - 36937A01E6D75EC438618AA1B753C093 /* RCTRawTextShadowView.m */, - CB5B5B6C7D1A078C6FA74EFA5BD28636 /* RCTRawTextViewManager.h */, - 3A0A945667F8E2E4F9359280060BC636 /* RCTRawTextViewManager.m */, + 0B7455BDD0D3F7C4DC7CD1786044042C /* UMCore.xcconfig */, + C4300B81B6D4A22BA472C9FEDFCFEC69 /* UMCore-dummy.m */, + 0E63A9D263C22E8BC589400C9D271ECC /* UMCore-prefix.pch */, ); - name = RawText; - path = Libraries/Text/RawText; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/UMCore"; sourceTree = ""; }; - E9C9513A7DBAD1070DB0DF5682B9E8BF /* RCTLinkingIOS */ = { + E9067BE9A621FB562960EB280A15B4E3 /* Support Files */ = { isa = PBXGroup; children = ( - B37DC4F25BE8296E9E979BA00BBDE220 /* RCTLinkingManager.h */, - E4DBB4CADAF0B70D23528A3721BBEE4E /* RCTLinkingManager.m */, + 4CDD0F63AC79E800DC98A2459434B926 /* EXFileSystem.xcconfig */, + E28442A13BCB5F5FB8EB8D623697E822 /* EXFileSystem-dummy.m */, + 3E7CE4F6732E81E120E22F37C484E7B7 /* EXFileSystem-prefix.pch */, ); - name = RCTLinkingIOS; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXFileSystem"; + sourceTree = ""; + }; + E94E602693CB8A6DE0A5BC818F90D970 /* fishhook */ = { + isa = PBXGroup; + children = ( + 49819F30CA01238F866F65F376ABF550 /* fishhook.c */, + 35BF6831E9357CB29C3C3122D6F4B6FC /* fishhook.h */, + ); + name = fishhook; + sourceTree = ""; + }; + EB4DA7158DE24D8A5BE567EF72FB722A /* Support Files */ = { + isa = PBXGroup; + children = ( + 853F0AA59EC46DDAB5C2D3047930FDAD /* EXConstants.xcconfig */, + 5FA18D746E9BF90413F6FCF201C60696 /* EXConstants-dummy.m */, + F1300F4AA87D82F34E5932F3BBBE994F /* EXConstants-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXConstants"; sourceTree = ""; }; EC1D43D3456DEC6DFC924F6B5ECE8CEA /* Resources */ = { @@ -3911,22 +5204,6 @@ name = Resources; sourceTree = ""; }; - EC3EB6464CFE48D02813AFC2F3DD04E6 /* SafeAreaView */ = { - isa = PBXGroup; - children = ( - AD282D65E52C1D53152FFC7571A92AEF /* RCTSafeAreaShadowView.h */, - 85902633CC54A01210B7F3ED9AD2AD5C /* RCTSafeAreaShadowView.m */, - B9C01DF6B4624AFC7178B572DEFD3DD3 /* RCTSafeAreaView.h */, - 48CB0FC80C72BD15544E2CFE47363EC9 /* RCTSafeAreaView.m */, - 8FEA6FA7E997C456667ABDF364054316 /* RCTSafeAreaViewLocalData.h */, - 91B82FBADC13C0319F80CC629FFB10E1 /* RCTSafeAreaViewLocalData.m */, - F35BBFE781FBD647E07DECE1EE929527 /* RCTSafeAreaViewManager.h */, - 3E59982793FF0CE9D95024628E1610EB /* RCTSafeAreaViewManager.m */, - ); - name = SafeAreaView; - path = SafeAreaView; - sourceTree = ""; - }; EE62BD8EC40FF1A02106C6D24CFDC916 /* Resources */ = { isa = PBXGroup; children = ( @@ -3935,38 +5212,30 @@ name = Resources; sourceTree = ""; }; - EEDF86A990B8AC8C2F3AE60596E03905 /* RNScreens */ = { + EF090E153A8A8DD675FAA00E0FFB6E5C /* Pod */ = { isa = PBXGroup; children = ( - A452DDB9FD10DDAB60D3F04FA2DD6BAF /* RNSScreen.h */, - 0CA8236F3347BF0F3F337D47FD041B86 /* RNSScreen.m */, - 846B0BC1DCFA4CE75C9A46E4DD21840F /* RNSScreenContainer.h */, - D768036BAB75B2CD87E942691547D629 /* RNSScreenContainer.m */, - 95BBFDF945B3C1DE996B450870C030C7 /* Pod */, - A23FA4F2F00148D44A2F463D987D1C8A /* Support Files */, + 8C9C71EF4A7738982BF86FA08C9B46E9 /* EXAppLoaderProvider.podspec */, ); - name = RNScreens; - path = "../../node_modules/react-native-screens"; + name = Pod; sourceTree = ""; }; - F212ADC6E1F80328E11CE9F7C8865D53 /* react-native-webview */ = { + F2D5A10EC312EFE2544ECB05BBFF8B0F /* Profiler */ = { isa = PBXGroup; children = ( - 3117A3D34B4A56C558AB6E548338C4F2 /* RNCUIWebView.h */, - 2B77F4115089B8B178E7E8E9A2EEC1A1 /* RNCUIWebView.m */, - 7D1765AB3C29325E0A549F7FA48939BE /* RNCUIWebViewManager.h */, - BAE630AF22C431D47F6644AAFFBC9604 /* RNCUIWebViewManager.m */, - F568E078B3A119DA64CE4AE6D89B9249 /* RNCWKProcessPoolManager.h */, - E049E51AE444A3530A98034BF1B85316 /* RNCWKProcessPoolManager.m */, - FF0B4AFE49BB7BE8467BF6D0769C978A /* RNCWKWebView.h */, - FDEEDFC03C02A5ECC34DBB0C5EA3F9F2 /* RNCWKWebView.m */, - 9B7D8EB6DE4A88212952A63A64F3F6B7 /* RNCWKWebViewManager.h */, - 0A400D5102BE84445B019430EA3BE8B4 /* RNCWKWebViewManager.m */, - A7E9552E49A8F9AB8A718EFEF1A1E628 /* Pod */, - 8124185E8BA91D17723D852A611786CE /* Support Files */, + C00518E6C71A4912627625A9828C6EEC /* RCTFPSGraph.h */, + 1B892614B4A2CD57C1FB35B1CFCE71CD /* RCTFPSGraph.m */, + 92C413D2D469A1E69513BAE2B8AA46A8 /* RCTMacros.h */, + D6CB1FB65698C9122CBB88BD58A086AE /* RCTPerfMonitor.m */, + 1D0E90CEDD42D2583A93647210E4765C /* RCTProfile.h */, + A812188F61A3540CFEEF68F3A03BEA99 /* RCTProfile.m */, + EABAF6EB1C318DF0BD0B9D326B801865 /* RCTProfileTrampoline-arm.S */, + 7734802D1DBB71408ABB75695389CACD /* RCTProfileTrampoline-arm64.S */, + 01D865DB9DBB288C89FE5EDEDBF33180 /* RCTProfileTrampoline-i386.S */, + ADC79C61F76473222399FCDB45D139BE /* RCTProfileTrampoline-x86_64.S */, ); - name = "react-native-webview"; - path = "../../node_modules/react-native-webview"; + name = Profiler; + path = React/Profiler; sourceTree = ""; }; F37F24F4DE8751D348D5C1E11C379D23 /* Frameworks */ = { @@ -3977,26 +5246,36 @@ name = Frameworks; sourceTree = ""; }; - F7E4478A3D73CA9997129C28318825D9 /* React */ = { + F5B430776DDBA85DEBCBD00F801958BA /* UMFileSystemInterface */ = { isa = PBXGroup; children = ( - 4BA1D7A80B2D3135489C38EC587D4180 /* Core */, - DB9BE34AD0645FFC228A80797F78B2B6 /* fishhook */, - 15C31AC941B6488CFDFD0FE2327603DF /* Pod */, - 4AE700EE7AE2E3265C70BFBFB9CFDB52 /* RCTActionSheet */, - 2B8BF381EA4CD9B8C11AA8C7E3B7E2F7 /* RCTAnimation */, - A9C624B33A20293F86DBEC550ECCF191 /* RCTBlob */, - 68DA4E8F90B23F2E64CF3AD3FB891EB8 /* RCTImage */, - E9C9513A7DBAD1070DB0DF5682B9E8BF /* RCTLinkingIOS */, - 5948B370922190F474295B85D6D79E9E /* RCTNetwork */, - A2F48453DF55762583085191D774A02B /* RCTSettings */, - 118B10AA8F71DF888E9C479C0B070603 /* RCTText */, - 089F0A4320C2306EBEEC62EBCD44A62A /* RCTVibration */, - E81FFB366A7593C74278CDE6E5ED175C /* RCTWebSocket */, - 93082E07BE3DF766E61E1449E1B26FCB /* Support Files */, + 26205C914492A921C8447A2E3569A9A3 /* UMFilePermissionModuleInterface.h */, + CBE5417FF500ACD4CC4316930BF7FCC0 /* UMFileSystemInterface.h */, + BA32D11BC6241BD28ADC73A7A10920A5 /* Pod */, + B1DD292F910C5FE00840F8873F955A47 /* Support Files */, ); - name = React; - path = "../../node_modules/react-native"; + name = UMFileSystemInterface; + path = "../../node_modules/unimodules-file-system-interface/ios"; + sourceTree = ""; + }; + F86A1F5B6EF4ED82640AB95BBB203330 /* Pod */ = { + isa = PBXGroup; + children = ( + 68D4508A6BF94D2B698C975F33941E30 /* UMFaceDetectorInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + F9AC905D871FE0F15DC922D5724C15E3 /* UMPermissionsInterface */ = { + isa = PBXGroup; + children = ( + 279DACBA79D4335C530A3A54AC27DA48 /* UMPermissionsInterface.h */, + E1DBA6D1653935E0FC410C3112298272 /* UMUserNotificationCenterProxyInterface.h */, + 3BFCCADC3117D4FD05DF57E0E8A50B77 /* Pod */, + 305BAB4967A054F9BC45E97BD07446F6 /* Support Files */, + ); + name = UMPermissionsInterface; + path = "../../node_modules/unimodules-permissions-interface/ios"; sourceTree = ""; }; FA8E2D778E17E14E4BBDE0345736D9C2 /* DoubleConversion */ = { @@ -4038,25 +5317,6 @@ path = GoogleToolboxForMac; sourceTree = ""; }; - FBA25829E93A66E1F39525A13F660235 /* ScrollView */ = { - isa = PBXGroup; - children = ( - C901593FA1AF181CD872F135F2E38F82 /* RCTScrollableProtocol.h */, - B965F57D08AF2B023EB742B37C542A14 /* RCTScrollContentShadowView.h */, - 0BF5ACE89D0C329067DE4A304AC1AA3F /* RCTScrollContentShadowView.m */, - 675CC4567D34CC25C1EAB70894E5B2E5 /* RCTScrollContentView.h */, - 396B50B5C0FED4B0C704951B9EA47B3D /* RCTScrollContentView.m */, - 5260785553FE1A8E4EC8EED434B58601 /* RCTScrollContentViewManager.h */, - E9B082EF0E1514D82F9E2CBB21AE028A /* RCTScrollContentViewManager.m */, - 02371EA5B3DB9048CE62BB28E01C696D /* RCTScrollView.h */, - D6A656960D32278A8A019CFB56A1B509 /* RCTScrollView.m */, - 8EBCD344B51ED552C4F099F4C5B9A5FE /* RCTScrollViewManager.h */, - D283417C5EFC3F68C8C7F37AFCD06311 /* RCTScrollViewManager.m */, - ); - name = ScrollView; - path = ScrollView; - sourceTree = ""; - }; FC48FFD6DD1F739E9459BF6E3684AED0 /* FirebaseRemoteConfig */ = { isa = PBXGroup; children = ( @@ -4067,6 +5327,16 @@ path = FirebaseRemoteConfig; sourceTree = ""; }; + FC66497975403690FD847CA3CD12EEDE /* UMViewManagerAdapter */ = { + isa = PBXGroup; + children = ( + 34F880E7869DCCEF1750AF44694138F0 /* UMViewManagerAdapter.h */, + 0847728381CD9CD2615B06739082FC6F /* UMViewManagerAdapter.m */, + ); + name = UMViewManagerAdapter; + path = UMReactNativeAdapter/UMViewManagerAdapter; + sourceTree = ""; + }; FCFC61C90C577CDF662B11CD4C0493E6 /* GoogleAppMeasurement */ = { isa = PBXGroup; children = ( @@ -4077,17 +5347,29 @@ path = GoogleAppMeasurement; sourceTree = ""; }; + FFE4CA32FC76230691C362E099292C5A /* EXFileSystem */ = { + isa = PBXGroup; + children = ( + 51A480123ACF8DB07F3E7974F79FAD96 /* EXDownloadDelegate.h */, + 80697BC6BBB4E3A1F17668897EA69F92 /* EXDownloadDelegate.m */, + 10FD7868B64776D0F4D6809EC6FBA7D5 /* EXFilePermissionModule.h */, + F943E8994A4AA646EFA11DFF0111583D /* EXFilePermissionModule.m */, + 99F03A190FE8C0B6B52D4E6DF67D34B4 /* EXFileSystem.h */, + 5060761558A343D17B92566062690FB7 /* EXFileSystem.m */, + 5BE1F3B72E441DFBD646870A79A1EA93 /* EXFileSystemAssetLibraryHandler.h */, + 3CCD50F6E0B8EA59A93E50FA9623175C /* EXFileSystemAssetLibraryHandler.m */, + E2301E3E067F41038D461AB5C3D3F3E1 /* EXFileSystemLocalFileHandler.h */, + 09D994CE87C6EA29C806103ADE30B9B1 /* EXFileSystemLocalFileHandler.m */, + B24CEE12C173C4DABC66AF2A8DDFEA37 /* Pod */, + E9067BE9A621FB562960EB280A15B4E3 /* Support Files */, + ); + name = EXFileSystem; + path = "../../node_modules/expo-file-system/ios"; + sourceTree = ""; + }; /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ - 0052E954C5F1956996051F386922B015 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - C60E5F0F870EDFE06FCF85494C3A391E /* Orientation.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 0E96AC29E4425A68227A380021E382A2 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -4105,15 +5387,12 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 0F711891CA2FD9FC9380990DF518EDCF /* Headers */ = { + 14779EC75CAEB1F62901FF21716FEED4 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 7AE6E0EAD54B89EABC3F8B3ADC296A66 /* RNCUIWebView.h in Headers */, - 09AFCE571D4D86700F73BA90A6594C33 /* RNCUIWebViewManager.h in Headers */, - A440E792CD65F05EB4DFE772A4EFA4DD /* RNCWKProcessPoolManager.h in Headers */, - C744BF6D3BACE7FCD586E53F95D454F3 /* RNCWKWebView.h in Headers */, - F4D8A9AC9C439FBBE694998CA5748D4C /* RNCWKWebViewManager.h in Headers */, + 57C6E165F455A2AB36FD563DFF541E58 /* DeviceUID.h in Headers */, + FBBE82C89D51E9040D4584EE919BC60C /* RNDeviceInfo.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -4124,13 +5403,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 2F39CC30AFDD04F936A9A1BCB8F826D8 /* Headers */ = { + 2A21883ED98BAA3D5742453EF06DCAC7 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 23F1CD33721B4192BBD5413B873718F8 /* Compression.h in Headers */, - BF5B46626A4BAE5F8803A0510A26A5E0 /* ImageCropPicker.h in Headers */, - 09BD412B70CA879571F933AF2CF6404D /* UIImage+Resize.h in Headers */, + 93020C5F98125BAC7F7B4C3FF3D9794E /* RNSplashScreen.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -4162,6 +5439,30 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 48FE25903ED66B0F3F7A1BA2907533B8 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 1ED7437893A44EF959745DC05B2E34A7 /* UMBridgeModule.h in Headers */, + 29D3B622E14FEEB68740B37BD30F160C /* UMModuleRegistryAdapter.h in Headers */, + 2AF142EB7D746412636B3DEDB0019974 /* UMNativeModulesProxy.h in Headers */, + C13E203132EEC3568DBB77FB567D69C4 /* UMReactFontManager.h in Headers */, + 6D270C943D7EED7AEB2CFF1AEE1C32F2 /* UMReactLogHandler.h in Headers */, + 36CF622F192C797B907793BC69FACE90 /* UMReactNativeAdapter.h in Headers */, + AA26C72333847B4F1B1B87014E6E5349 /* UMReactNativeEventEmitter.h in Headers */, + 9628624EBCE8420CA751EC94935FCD68 /* UMViewManagerAdapter.h in Headers */, + C9D3DA181BF2FB56A1283EF6837E2B1D /* UMViewManagerAdapterClassesRegistry.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 608A77E91264F9BDC12C7CBF3597204C /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + C439D52599AAA5AB8CFADBA10BE4430C /* Orientation.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 6F581F0323AF3FAB9C3E31E837326583 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -4172,6 +5473,46 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 7BCE6740C1956DB89891BD6F4A6AE044 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + DEBDC71B78F63208A5178DBADA1E8DBA /* EXDownloadDelegate.h in Headers */, + 96693844C50716001E11A1A1B0FAB3F3 /* EXFilePermissionModule.h in Headers */, + 334FD83F947E195B6B62B98DFEAD03EC /* EXFileSystem.h in Headers */, + 5B24C61116DA3149D83CCAC5B8D4F6F1 /* EXFileSystemAssetLibraryHandler.h in Headers */, + B52BC606F68E178A9A77961D0F49D878 /* EXFileSystemLocalFileHandler.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 7C75A1195B3633120859FD542309A28F /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + F7785755D00BD629F44E19E70242AFF1 /* UMAppDelegateWrapper.h in Headers */, + 4B36E488844F33246DD27858C65EDED5 /* UMAppLifecycleListener.h in Headers */, + DFBDFF433059306D0E80770512F15C74 /* UMAppLifecycleService.h in Headers */, + FF1ACB706A6B7CBDEDE5E56103C77869 /* UMDefines.h in Headers */, + 7F27DC6073A61FD6CE1D3A51E303BB1F /* UMEventEmitter.h in Headers */, + 757F5F4560089A27289BFC45B8E28881 /* UMEventEmitterService.h in Headers */, + 16E7AD971A8C64747F7B1E5207EB28F0 /* UMExportedModule.h in Headers */, + 89A91379BA936471ABD92062A42FE14C /* UMInternalModule.h in Headers */, + A9BEF0B50915D2B3AC8BC1A890E4ADF1 /* UMJavaScriptContextProvider.h in Headers */, + 3972FE6095DF71F6091188C712E9A122 /* UMKernelService.h in Headers */, + 0649814FCE8D1A872EEEE4760938BF7E /* UMLogHandler.h in Headers */, + 99FCA10852C44775B1FC3B6004D56A1D /* UMLogManager.h in Headers */, + 41C9EA6EEEE1D42DD14D721F1BF3DEBF /* UMModuleRegistry.h in Headers */, + 20C667BDA560C5D5EE23F8A14D3BA8CE /* UMModuleRegistryConsumer.h in Headers */, + 0FBC3916AAAFD9B34F65BFE3DDF349FE /* UMModuleRegistryDelegate.h in Headers */, + 068F141A4D4F93685151DDA6BC5270D0 /* UMModuleRegistryProvider.h in Headers */, + F6FF8F0BD489DB9F28B169C1914043BD /* UMSingletonModule.h in Headers */, + 5C25F0E8F29D70CD722B76C5B5E10385 /* UMUIManager.h in Headers */, + 33519CEB7A0FFF0BDB8526C28B0B5F42 /* UMUtilities.h in Headers */, + A9DA59F953FCF4BCD610E5E70342169A /* UMUtilitiesInterface.h in Headers */, + A5C2C9A87ABEA51968F34749801E3E19 /* UMViewManager.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 7D84B09D3167FE4A0C99340E50FE3484 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -4183,6 +5524,56 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 821BBC20FE28095DD2CC20BEDD3349C0 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 25F287CE25F971F27B8C0B0E3ACCD603 /* Compression.h in Headers */, + D5B967B20760F7D01122C77D08672395 /* ImageCropPicker.h in Headers */, + 16C252A8705DD134AFFA5C75C53D8098 /* UIImage+Resize.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 929EDDE1712B222FDD4E5CD1B0070826 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + B382031D2492F1CBB211999615293D71 /* CompactValue.h in Headers */, + BFA7899BEDFB6607EB45C85E65331F83 /* instrumentation.h in Headers */, + E825D205858460845558A16F3D444FD0 /* Utils.h in Headers */, + 4BD7AD3745691A6994A56491FF1C9F1F /* YGConfig.h in Headers */, + CAF7F9A29C80BA2F930578157246B8C6 /* YGEnums.h in Headers */, + B5D52C8BD8FA8A217B9F9C0689D937C0 /* YGFloatOptional.h in Headers */, + CBE6D5F56356628212758CEDC9DA623A /* YGLayout.h in Headers */, + 33E6E0865A7FCBE3C47106697186DF91 /* YGMacros.h in Headers */, + 5CD72C03170BEB287C67C3F725E163B6 /* YGMarker.h in Headers */, + 4C404CF5F61BECB3E483A760C5950F65 /* YGNode.h in Headers */, + 58741226485937DCFC3EEAB8550EA7A4 /* YGNodePrint.h in Headers */, + FB06795DDF659DD376055F22F5E9A478 /* YGStyle.h in Headers */, + EDCE47A92669425E094F515F070BD47B /* YGValue.h in Headers */, + 7D7E038BB1A31A111DEB147DC7E012A2 /* Yoga-internal.h in Headers */, + DD80E713216A18B09BD63F0CF05D3B9A /* Yoga.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 9308D3939AFAB2C5117CBAD222E15FE1 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + C9DBB2FDFF186442599314D1ED853E4E /* EXAppLoaderInterface.h in Headers */, + D4CD33481457050508DCFB2F1183BE8B /* EXAppLoaderProvider.h in Headers */, + 5DF5101487DF8545DD8F50F68AEDAF45 /* EXAppRecordInterface.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 931B91D60A10F80CF19EB7C72867F774 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + A8A950AC4D68AD848DFAA86FD0CAA73D /* EXWebBrowser.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 931C94FA691C98642BFF82D98907D284 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -4228,6 +5619,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + A01F48FFF2D04796DF7AB9132177EC49 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; A87EBDA49D64961D27A0F520F2FF3DA6 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -4281,61 +5679,49 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - B1E09E276BCC327381E6C058E74AAB07 /* Headers */ = { + AFE12640C88022DBF0FC8B750AA614A3 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 41033599EA38C5F034BE8BD960596594 /* QBAlbumCell.h in Headers */, - 9EE15D8A09CB26C79D549E5FB30BF7B8 /* QBAlbumsViewController.h in Headers */, - 988D980DCB98F29CBB08EE69068E1EA4 /* QBAssetCell.h in Headers */, - 951E07A0B474B30340454D5A2CBD80C0 /* QBAssetsViewController.h in Headers */, - DDEADEDA71B66935B01F5842BF03FEB6 /* QBCheckmarkView.h in Headers */, - 0CFAACD77EB99245C7D94C7749CE3A3D /* QBImagePickerController.h in Headers */, - 274168A8174F9C8761C1D37C13ECF3D9 /* QBSlomoIconView.h in Headers */, - 9C953458446A98B17F12B67AC88FE012 /* QBVideoIconView.h in Headers */, - 001839AE00BA4FB376F8BF4F71C34EDD /* QBVideoIndicatorView.h in Headers */, + 55F644A64AF3A8F0B3BADF137FCCD3BB /* QBAlbumCell.h in Headers */, + 5BE56809F05A22560A27866CC463E9BE /* QBAlbumsViewController.h in Headers */, + DE9204E50FF1B894A61BE443E21CBDE1 /* QBAssetCell.h in Headers */, + 35625E8C93B50B12963974B96BA1DCE0 /* QBAssetsViewController.h in Headers */, + 74C3104331FB959ABD08D30042EB8C8D /* QBCheckmarkView.h in Headers */, + 5EEE0EC4213DB6D05FBE883FA40E8FAE /* QBImagePickerController.h in Headers */, + 6D696A4584FCFF1C4C63F2F6CE81B9C5 /* QBSlomoIconView.h in Headers */, + 5A12BEDD1EB7143EAA9DB28C030834B8 /* QBVideoIconView.h in Headers */, + 92EC0D6049EEA91B2EEEA7508E714B41 /* QBVideoIndicatorView.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - B27CB0369C12B17F4BD9236571DB0E7B /* Headers */ = { + B64D74B83379E0178FD955F74B95E8FD /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 4BB7BB2F1CA43B6E9CDB04A0D8498F1B /* CGGeometry+RSKImageCropper.h in Headers */, - 253929A2E77DD3E6FCDAA4DDD8D8F62E /* RSKImageCropper.h in Headers */, - 58584A6DE9640C732604FC6C66D50167 /* RSKImageCropViewController+Protected.h in Headers */, - 28C05C7E5A397E4FD0A2D23360652E57 /* RSKImageCropViewController.h in Headers */, - 5B49E51718F58DD0B4F8F1B0E83C8582 /* RSKImageScrollView.h in Headers */, - E6AFE3C23CCFDBE8DA7BBDDC2D50CBCC /* RSKInternalUtility.h in Headers */, - 7EEDDA22A838BEB0C9C8E0F496C13BC3 /* RSKTouchView.h in Headers */, - D7C24A120817283C4DDD1D412D4FC628 /* UIApplication+RSKImageCropper.h in Headers */, - 704F67F9CE43B0B4647DB5833CFEEB7B /* UIImage+RSKImageCropper.h in Headers */, + 21CD42785A17C66AA10DF89D37135D0A /* RNCUIWebView.h in Headers */, + CB2AA199F135077B9B9BCD3C89048CCA /* RNCUIWebViewManager.h in Headers */, + 8A3EB935280A953908A3E3C200C1B30C /* RNCWKProcessPoolManager.h in Headers */, + 6004E0C699769F1278848EA1A81563FD /* RNCWKWebView.h in Headers */, + D27FF87D9B24732BABC5D2F3F78FCE5D /* RNCWKWebViewManager.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - B877E2F612C231A87D179348A06BD1E3 /* Headers */ = { + C63381F4C23B52A79B281F62EDAEBFAC /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 409DD85D0BE2B487A537C7509DBA58C3 /* RNSplashScreen.h in Headers */, + 971A797D1573C90846EC7847F3529E49 /* EXConstants.h in Headers */, + A8D5113CF95A396D35F179C25A3E27EA /* EXConstantsService.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - BCD674175920D10FCC7A9EA675EB1DEB /* Headers */ = { + C6A34DC60231B017CBB1FA5351D6F897 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 9DCD4C1AFB7759FEC706547C99699984 /* DeviceUID.h in Headers */, - 508B19DFDA149187FD513A5CDFEF4DDB /* RNDeviceInfo.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - C7E5065B6D9CB66094E7CC92369B12BD /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - FA6441FBBEC6F160194967D6047E3CFA /* RNSScreen.h in Headers */, - D4D233C302C08D761B45B38FC1656968 /* RNSScreenContainer.h in Headers */, + 737D2AF03D4F3614B986B15E03563EF1 /* RNSScreen.h in Headers */, + 972BED01AFB6B9A901ECAC18D2528889 /* RNSScreenContainer.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -4379,88 +5765,80 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - E3E34FD419B880FC891811544E09E731 /* Headers */ = { + FCB5BE3FB2ED720DC04BF2DDD0BDA3D7 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 2EF172363D5F62BDE384B0479F399B85 /* CompactValue.h in Headers */, - 46E9227C5A92E8ED63B02D7E848BD68D /* instrumentation.h in Headers */, - 3AFB3CAEE7F92245F787FC644EDC731E /* Utils.h in Headers */, - A0F660652F3DBFC728C4F9ECB68700D0 /* YGConfig.h in Headers */, - 6E3B2EBC2804F55BA900510839F43E34 /* YGEnums.h in Headers */, - A2C661061F95A04EAE4AFF0468070258 /* YGFloatOptional.h in Headers */, - 7B0A16B700DB342A2BF6F7E093506F63 /* YGLayout.h in Headers */, - B48201AAA1B76C63E4EFD03A8269F315 /* YGMacros.h in Headers */, - 512DB3999B76EB0099DE83F8FD30DF10 /* YGMarker.h in Headers */, - 2214808510C298F0139EE97653F1FEDB /* YGNode.h in Headers */, - C3188A3CF9EDD3B1E496FA575346477C /* YGNodePrint.h in Headers */, - 41E553FD365994F8FFE856728ADF3C1A /* YGStyle.h in Headers */, - F1D0A3CA89D3C37E539C9E11A0215589 /* YGValue.h in Headers */, - C9AC68BAA1CB3AF856FF3D922E75DCCE /* Yoga-internal.h in Headers */, - DFD2EC1808D7D3F850D00C2698CCB8AD /* Yoga.h in Headers */, + 08AA3599F2E941302E152C039AEEAA98 /* EXAudioRecordingPermissionRequester.h in Headers */, + 0FBF6BE462F9B1EDF1D24CF41C77BC94 /* EXCalendarRequester.h in Headers */, + 934BF8388331FB129A20DB0B63644921 /* EXCameraPermissionRequester.h in Headers */, + 77C87A19EFEF92929BE2A52DB57040DA /* EXCameraRollRequester.h in Headers */, + FC73CF45898655A99060A7A3CC51958A /* EXContactsRequester.h in Headers */, + 0A22011D34F56D40C55D8124106DAAD3 /* EXLocationRequester.h in Headers */, + F1A61C1D8004320F4ABEBA3E2F1DED32 /* EXPermissions.h in Headers */, + C78365E2347A577353B1F935C89C48E3 /* EXReactNativeUserNotificationCenterProxy.h in Headers */, + 761010BA374317F8FF28DA5C6CAFF92A /* EXRemindersRequester.h in Headers */, + 0A42B05646032C26BCD812C94D27B004 /* EXRemoteNotificationRequester.h in Headers */, + E2E07878F80C3CA380F84AF10840308B /* EXSystemBrightnessRequester.h in Headers */, + 8ABB9154AF58BEE92ACA7C4E8BB9795B /* EXUserNotificationRequester.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - F4EECD8648BC842BE19B79D62C9E6075 /* Headers */ = { + FFCE0D1ACBC8B07002AF0E14F82EC0BB /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( + 6626F8244B4B769CC1CC40E44899649D /* CGGeometry+RSKImageCropper.h in Headers */, + FA0A87C7E41E6E26F158E116AC743618 /* RSKImageCropper.h in Headers */, + 40538BF2F1BAE3F9D4D478826657F1D9 /* RSKImageCropViewController+Protected.h in Headers */, + 9A6380FD46EC6B95868F01DE0A181FAB /* RSKImageCropViewController.h in Headers */, + 0E98DD3571CB4DEFE85CD2685B10C3D8 /* RSKImageScrollView.h in Headers */, + A1F02DBB5F49B95EC31F03E4A5721746 /* RSKInternalUtility.h in Headers */, + A8F0AEB8C8AF7823889AFBE5055272DA /* RSKTouchView.h in Headers */, + 7C8845F9ECE6EE49C4251591BB5BCCBF /* UIApplication+RSKImageCropper.h in Headers */, + A926F6E165049E3DDE7FA0B31BD20BE0 /* UIImage+RSKImageCropper.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ - 0AFC585C520484341005ED314DD6F26D /* RNScreens */ = { + 0ACA345EAF80C8F41867C0E5928F88BA /* RNImageCropPicker */ = { isa = PBXNativeTarget; - buildConfigurationList = DCD9B94B08D39C5F2343CA2487FE8144 /* Build configuration list for PBXNativeTarget "RNScreens" */; + buildConfigurationList = BC40F95231AB52A6F3F3B7448F6EB9A2 /* Build configuration list for PBXNativeTarget "RNImageCropPicker" */; buildPhases = ( - C7E5065B6D9CB66094E7CC92369B12BD /* Headers */, - 08304E00F00E17D25BAE40F67D24571B /* Sources */, - 5B5F7E4253487A74DC4F41AD9839149A /* Frameworks */, + 821BBC20FE28095DD2CC20BEDD3349C0 /* Headers */, + 316AD34BA752C17F4752179A5052A678 /* Sources */, + D21A196416D7CF6175BF7D6E3B6D5F14 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 51B67F78F62C73DCC52E93A4B1020E72 /* PBXTargetDependency */, + FCFBFABA86770F207C1E195D75FD5190 /* PBXTargetDependency */, + 0F3BCAD2E91FEB86AE8211F2B6ED7912 /* PBXTargetDependency */, + AD552445FE08A3C436741273F8D27D06 /* PBXTargetDependency */, ); - name = RNScreens; - productName = RNScreens; - productReference = 01DC8D519261EBAA259B879B90D6A7C5 /* libRNScreens.a */; + name = RNImageCropPicker; + productName = RNImageCropPicker; + productReference = 91F39668AF756560749F9DE2E9F4CFB0 /* libRNImageCropPicker.a */; productType = "com.apple.product-type.library.static"; }; - 10D172205FBF5536819F94D0AD56DE78 /* yoga */ = { + 0DABBD55913D3E7469399FF80333EA1E /* react-native-splash-screen */ = { isa = PBXNativeTarget; - buildConfigurationList = E6D388BB274F6B6CB9A3CCF39356652C /* Build configuration list for PBXNativeTarget "yoga" */; + buildConfigurationList = 0B32AE3FDA4C897E6FBF82663DF0F0A6 /* Build configuration list for PBXNativeTarget "react-native-splash-screen" */; buildPhases = ( - E3E34FD419B880FC891811544E09E731 /* Headers */, - CD633FEED535740B89ACE448709D8EA0 /* Sources */, - EF51ECB655B2FFA505BC14FF632C438E /* Frameworks */, + 2A21883ED98BAA3D5742453EF06DCAC7 /* Headers */, + 7EC47747C015B4000E90EC7D5B535B9A /* Sources */, + AAC00804D9BA05ECFC849A994BF46BEA /* Frameworks */, ); buildRules = ( ); dependencies = ( + 721B472423BEBC4474A559B872E6E4A4 /* PBXTargetDependency */, ); - name = yoga; - productName = yoga; - productReference = 4E2757FF8021BE2FC2EBAAA4A9C1C777 /* libyoga.a */; - productType = "com.apple.product-type.library.static"; - }; - 111EE270AF30FB09FC9EB73638F2E16A /* RSKImageCropper */ = { - isa = PBXNativeTarget; - buildConfigurationList = 36799555636DDD7D02CD009A2C1F784C /* Build configuration list for PBXNativeTarget "RSKImageCropper" */; - buildPhases = ( - B27CB0369C12B17F4BD9236571DB0E7B /* Headers */, - 9834E1E49603DE5E2BF45E959CFCB4DB /* Sources */, - 4BAB1002C6D6052C44FDE3C7DF74E4CD /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = RSKImageCropper; - productName = RSKImageCropper; - productReference = 1A760F53C16EFEE83DF51B39C1A8859E /* libRSKImageCropper.a */; + name = "react-native-splash-screen"; + productName = "react-native-splash-screen"; + productReference = A1E44785E33C80F42A08C18B6461644E /* libreact-native-splash-screen.a */; productType = "com.apple.product-type.library.static"; }; 1414ADEE4A421F3C5F9A229345CE3F61 /* DoubleConversion */ = { @@ -4477,45 +5855,44 @@ ); name = DoubleConversion; productName = DoubleConversion; - productReference = 56360009B0456FD26BACD30E15A84CEF /* libDoubleConversion.a */; + productReference = 37E1694CE2D0160C2911EFCAA4EA68CA /* libDoubleConversion.a */; productType = "com.apple.product-type.library.static"; }; - 19B86FE3A045FD3536FCD8DC39B415D3 /* RNImageCropPicker */ = { + 240504C276270018DE05B3D0F038B1E5 /* EXWebBrowser */ = { isa = PBXNativeTarget; - buildConfigurationList = 343CE8D9175DDFFDFA876EC429096B2F /* Build configuration list for PBXNativeTarget "RNImageCropPicker" */; + buildConfigurationList = CC3B8958A2965669C0A321A46414DD85 /* Build configuration list for PBXNativeTarget "EXWebBrowser" */; buildPhases = ( - 2F39CC30AFDD04F936A9A1BCB8F826D8 /* Headers */, - C3AD92D7067A059C67C0EEE5DA4BB499 /* Sources */, - 5626B633CEF0325A7888938A267EE670 /* Frameworks */, + 931B91D60A10F80CF19EB7C72867F774 /* Headers */, + D8BADC07DACE496C6A1D36DECF9264FB /* Sources */, + 86975FA8969769E1025A58E3FEA10506 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 74F41CFAEA880EDB28E6CEAF397DA733 /* PBXTargetDependency */, - CD63972B4134F25B8E8A3E8CB486FED0 /* PBXTargetDependency */, - 3776BF5768404F29B4C905E75B5FB05B /* PBXTargetDependency */, + 88F4CBC37EDC22A18C73D6723A7C8552 /* PBXTargetDependency */, ); - name = RNImageCropPicker; - productName = RNImageCropPicker; - productReference = 93416D7D0668795471B3617499D61693 /* libRNImageCropPicker.a */; + name = EXWebBrowser; + productName = EXWebBrowser; + productReference = DE7A154907DB1502F8F25B861AE7BD5B /* libEXWebBrowser.a */; productType = "com.apple.product-type.library.static"; }; - 21D4CE3FA96D3BE5B8237D082505C188 /* QBImagePickerController-QBImagePicker */ = { + 24F769FA9B03BA265696664C50C70828 /* react-native-webview */ = { isa = PBXNativeTarget; - buildConfigurationList = 906A82087D5966DC4902543B44F027E8 /* Build configuration list for PBXNativeTarget "QBImagePickerController-QBImagePicker" */; + buildConfigurationList = D00BCB6B5F7A81292C2131C476B1FDFA /* Build configuration list for PBXNativeTarget "react-native-webview" */; buildPhases = ( - A7A559498E8B3F90D04C396E38536B22 /* Sources */, - 499358744E23E3BB9A6D577E08429E35 /* Frameworks */, - 0816A69B194691C64FCD5FFD09C726E2 /* Resources */, + B64D74B83379E0178FD955F74B95E8FD /* Headers */, + 81B74BE6461952D91C257916F423BB01 /* Sources */, + A98C1DDF01F647B049C7B615B4035938 /* Frameworks */, ); buildRules = ( ); dependencies = ( + 4A47EB9EE428FE8DE4B8D3C2750FAE79 /* PBXTargetDependency */, ); - name = "QBImagePickerController-QBImagePicker"; - productName = "QBImagePickerController-QBImagePicker"; - productReference = 2B297F30D487A4852E7A2ED2EDEE6EE7 /* QBImagePicker.bundle */; - productType = "com.apple.product-type.bundle"; + name = "react-native-webview"; + productName = "react-native-webview"; + productReference = 637D8B1A89F8459DE510886A0DFCEDDA /* libreact-native-webview.a */; + productType = "com.apple.product-type.library.static"; }; 2543734D0A332B2588202904B99CC151 /* nanopb */ = { isa = PBXNativeTarget; @@ -4531,7 +5908,24 @@ ); name = nanopb; productName = nanopb; - productReference = EBCE8C1DFF8C92EB029DB05833E4DE3F /* libnanopb.a */; + productReference = 0AD7E622812B0B3D1A3D979F059CDB6B /* libnanopb.a */; + productType = "com.apple.product-type.library.static"; + }; + 26A5B3B7F44E0C2A69ADF5B06E41C24F /* RSKImageCropper */ = { + isa = PBXNativeTarget; + buildConfigurationList = 03160BB405EBDB90E0A91F63D79DBB7E /* Build configuration list for PBXNativeTarget "RSKImageCropper" */; + buildPhases = ( + FFCE0D1ACBC8B07002AF0E14F82EC0BB /* Headers */, + 45AF8BF3BAF4690A35012B372E951451 /* Sources */, + A0BB2299D242091C03A7D385CEDBD690 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = RSKImageCropper; + productName = RSKImageCropper; + productReference = 0C13C1759134EC6D8C8CE62B45116B0B /* libRSKImageCropper.a */; productType = "com.apple.product-type.library.static"; }; 29FC2A0EC130F2F2AF7AC9AE94A583B4 /* glog */ = { @@ -4548,7 +5942,26 @@ ); name = glog; productName = glog; - productReference = F812F670169AC00AA67550FF954C1AA5 /* libglog.a */; + productReference = 6FED2DB30E28990CA19A21EC6ECFC98C /* libglog.a */; + productType = "com.apple.product-type.library.static"; + }; + 2F8CF410B0326B6DEB5A2CDA4E2A2D8B /* EXConstants */ = { + isa = PBXNativeTarget; + buildConfigurationList = 8BB472139D3ECDA53A44FD1DBBB24808 /* Build configuration list for PBXNativeTarget "EXConstants" */; + buildPhases = ( + C63381F4C23B52A79B281F62EDAEBFAC /* Headers */, + A6C5040BCE203F411247AC644E4ECCA8 /* Sources */, + EC3F1E53CF0CD26EF63ACE35EEDCDC87 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 902BB8686A0FE9AA3973C9B0A3563691 /* PBXTargetDependency */, + FF684D0FC6B49662CAC11992F333F7B4 /* PBXTargetDependency */, + ); + name = EXConstants; + productName = EXConstants; + productReference = 7DFFEB43A1110EE2509463E56455D824 /* libEXConstants.a */; productType = "com.apple.product-type.library.static"; }; 32F8EA730FE2005197F54338D2C236AC /* GoogleToolboxForMac */ = { @@ -4565,7 +5978,7 @@ ); name = GoogleToolboxForMac; productName = GoogleToolboxForMac; - productReference = 0D5DF052A23CB44F008C82005B2B7C3D /* libGoogleToolboxForMac.a */; + productReference = 927C6F78FA4B889D65F347F1717D8FF9 /* libGoogleToolboxForMac.a */; productType = "com.apple.product-type.library.static"; }; 368FB7FBA34E3323BB42D13325551C95 /* FirebaseCore */ = { @@ -4583,25 +5996,42 @@ ); name = FirebaseCore; productName = FirebaseCore; - productReference = 03A09AA251F031FF69A29DE97D080BF2 /* libFirebaseCore.a */; + productReference = 13412E2D6339383A001F3D53F5A728DF /* libFirebaseCore.a */; productType = "com.apple.product-type.library.static"; }; - 57954C49E918563AF7054B31EACBAB93 /* react-native-splash-screen */ = { + 3C9001F23F58850FCB7FAEFA0C72E507 /* react-native-orientation-locker */ = { isa = PBXNativeTarget; - buildConfigurationList = 380DCC218518FC399C5243294EBEAEEB /* Build configuration list for PBXNativeTarget "react-native-splash-screen" */; + buildConfigurationList = ACDC5CC6540B559FEDB07A648B1076B7 /* Build configuration list for PBXNativeTarget "react-native-orientation-locker" */; buildPhases = ( - B877E2F612C231A87D179348A06BD1E3 /* Headers */, - F77B5C3A872D11F0BCA71A1187FB2A1A /* Sources */, - 744662973C07B817D1F8EA61A58E572F /* Frameworks */, + 608A77E91264F9BDC12C7CBF3597204C /* Headers */, + 3FFCB962AC3B3A9B7E4395FABE8FB423 /* Sources */, + 7466858F5C50BA8748A5D8979ACE99DC /* Frameworks */, ); buildRules = ( ); dependencies = ( - C8D65277401A23C4E19B19A4F69D2842 /* PBXTargetDependency */, + CF3BE720017C950BC4B6E8F78A73C60A /* PBXTargetDependency */, ); - name = "react-native-splash-screen"; - productName = "react-native-splash-screen"; - productReference = 4D9AE1F5735B89A753A7A8098AC49330 /* libreact-native-splash-screen.a */; + name = "react-native-orientation-locker"; + productName = "react-native-orientation-locker"; + productReference = 68E1278EF58AEE83AA308A392BB834DF /* libreact-native-orientation-locker.a */; + productType = "com.apple.product-type.library.static"; + }; + 4412C5F689DD128EFB8F42F11C502D2C /* UMCore */ = { + isa = PBXNativeTarget; + buildConfigurationList = CB97C076225DC55B9B4D746BCDD41E96 /* Build configuration list for PBXNativeTarget "UMCore" */; + buildPhases = ( + 7C75A1195B3633120859FD542309A28F /* Headers */, + A02A2E9F7389315B01604240D3D927B8 /* Sources */, + 61756F3B6B9110FB5A6EF1095BF8F721 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = UMCore; + productName = UMCore; + productReference = C69B9FBCE99A12392A2C9854A9B82B1E /* libUMCore.a */; productType = "com.apple.product-type.library.static"; }; 586739D116442BA7FCD2EC0353EA0FA4 /* FirebaseInstanceID */ = { @@ -4620,72 +6050,26 @@ ); name = FirebaseInstanceID; productName = FirebaseInstanceID; - productReference = 81D09FC952E2900D349B6C091BBB48D9 /* libFirebaseInstanceID.a */; + productReference = CC8860461260D68400B7B8CA31F56CF9 /* libFirebaseInstanceID.a */; productType = "com.apple.product-type.library.static"; }; - 6C8F69E4466E5D0DB2328F5804A1F88F /* Pods-RocketChatRN */ = { + 5ED05858D3E3C1599A062FB1C45FE359 /* EXPermissions */ = { isa = PBXNativeTarget; - buildConfigurationList = E6B00793B94610781E2218D01B1B9817 /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */; + buildConfigurationList = 6938A94AF739B9819D20E572908D3D5E /* Build configuration list for PBXNativeTarget "EXPermissions" */; buildPhases = ( - F4EECD8648BC842BE19B79D62C9E6075 /* Headers */, - 271AC67A8976479556084356493808F0 /* Sources */, - EA35EC09C240F5FBCD2ECDC77F52B183 /* Frameworks */, + FCB5BE3FB2ED720DC04BF2DDD0BDA3D7 /* Headers */, + AF7E2A8BB3196AB169293F1A66B46A56 /* Sources */, + 9C1143E77695FB4B58AA5D992DD06087 /* Frameworks */, ); buildRules = ( ); dependencies = ( - E719B3D9BE82D836E5D1471138C38008 /* PBXTargetDependency */, - AD28CE542250990DF0E602CCA3B2F9FC /* PBXTargetDependency */, - A29FDA2CE6FFCFD7F136DAEA96FC32D0 /* PBXTargetDependency */, - 142B89CFD8DE7A970E54D453DDC84D2C /* PBXTargetDependency */, - C608C56CAA4EF15736C7199AF015DD08 /* PBXTargetDependency */, - 84ABD730CBE72FDD21C9668161E77CD3 /* PBXTargetDependency */, - F6764A16E5F9B54E1F7A8B214681D69C /* PBXTargetDependency */, - 4E65DF812C83D8FB8B73D4BDA5570525 /* PBXTargetDependency */, - 1C9AAEB52F19186FB3570B73087FF44E /* PBXTargetDependency */, - 1AF1D1F41734F10AFEB7E85DAE85C868 /* PBXTargetDependency */, - 5F26C0B883D3555523250F1DDC658E79 /* PBXTargetDependency */, - 5150D3C8836B4C147626FF43F940A3E6 /* PBXTargetDependency */, - 3C17CF235BF2D95D48EE285834493024 /* PBXTargetDependency */, - BE91C8C4683D018320B1701A4268F504 /* PBXTargetDependency */, - 82104F7500317160A95F8097B8AA6DA6 /* PBXTargetDependency */, - 9F30F6D4E564C51989A55A6098470CA4 /* PBXTargetDependency */, - E6CEA59BA25823474019F81CD609CC35 /* PBXTargetDependency */, - AC8213C965CC0B6892E812B40CF405E5 /* PBXTargetDependency */, - 6F2237D6A528EBC9F8987F0D1CFF2152 /* PBXTargetDependency */, - 8F48CF9C3CD881AEC1405F17EC3AF3AA /* PBXTargetDependency */, - A7E5B4992DC5B43F34AE8FDA98041CC1 /* PBXTargetDependency */, - 3B6D8B05BE55AEE9E8ADF5934DCCED42 /* PBXTargetDependency */, - A45691EA58B6E574C2E13635985DCF61 /* PBXTargetDependency */, - 23918061C6F2AC70483EF9D9575F1931 /* PBXTargetDependency */, - 7A78CE184EABCAD6B3C0B3A8B5135B62 /* PBXTargetDependency */, - EB8F128A1508B6D3F88C9E8B23414DBB /* PBXTargetDependency */, - 401B881024ECA432CA1A83078C93D2FC /* PBXTargetDependency */, - F016C9A7AD465D4B2595107BD6AE906B /* PBXTargetDependency */, - 20DD28CEE67A2BCD4E8AE19A0AF27A56 /* PBXTargetDependency */, - BEA32859FF87767B50C4B47DCA6BB3DF /* PBXTargetDependency */, + FBF22B08572B8004330FD47E0D07AC6F /* PBXTargetDependency */, + 1C7BC65EE5D0AE985F3F9D390F082C25 /* PBXTargetDependency */, ); - name = "Pods-RocketChatRN"; - productName = "Pods-RocketChatRN"; - productReference = DC843BEA7141F1F2C9247CF1C926B684 /* libPods-RocketChatRN.a */; - productType = "com.apple.product-type.library.static"; - }; - 76D3860A83438EE6A0ACBBD4BBB61B14 /* react-native-orientation-locker */ = { - isa = PBXNativeTarget; - buildConfigurationList = CACBFCE2137E378F83096124F0915208 /* Build configuration list for PBXNativeTarget "react-native-orientation-locker" */; - buildPhases = ( - 0052E954C5F1956996051F386922B015 /* Headers */, - C1F6E4A0647F69B023445C78DFA1CDA3 /* Sources */, - C57BF9A87AA5CED417C9EC2F01666DA4 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 580CE7BA9AFCFB3BE76760E03B9491DD /* PBXTargetDependency */, - ); - name = "react-native-orientation-locker"; - productName = "react-native-orientation-locker"; - productReference = D1B2A9C0BA53D97B5E93E7E303F76EA5 /* libreact-native-orientation-locker.a */; + name = EXPermissions; + productName = EXPermissions; + productReference = 3DCDD2EC2DECA027E0BB0DF778B159FA /* libEXPermissions.a */; productType = "com.apple.product-type.library.static"; }; 7969F0F17682790DCAF63BC9AF2176ED /* GoogleUtilities */ = { @@ -4702,61 +6086,198 @@ ); name = GoogleUtilities; productName = GoogleUtilities; - productReference = F1306D2356A305018B757A6A8FC5F31E /* libGoogleUtilities.a */; + productReference = 442616B03AE73CD48C782458395CC832 /* libGoogleUtilities.a */; productType = "com.apple.product-type.library.static"; }; - 928F6D091147C82DAB685010E23BA90B /* QBImagePickerController */ = { + 80550EFCC9B14329B278C9CE06F8D916 /* RNDeviceInfo */ = { isa = PBXNativeTarget; - buildConfigurationList = 91C7068D46AC6DBEE4998389AE685A6B /* Build configuration list for PBXNativeTarget "QBImagePickerController" */; + buildConfigurationList = FAE6CDD5D07D07D0E079393E1FC309A0 /* Build configuration list for PBXNativeTarget "RNDeviceInfo" */; buildPhases = ( - B1E09E276BCC327381E6C058E74AAB07 /* Headers */, - 9C0C8DF3DD29FF1B4C8142948EC98A71 /* Sources */, - 3C4071F796A1C911C4575655E5E45A7E /* Frameworks */, + 14779EC75CAEB1F62901FF21716FEED4 /* Headers */, + BA3B56AE112C1FD5F1ACD672D003237A /* Sources */, + 339D5D46010D05E610E1912AFD315B2E /* Frameworks */, ); buildRules = ( ); dependencies = ( - 87568C4A155C6FE7A4C315D5F199AC64 /* PBXTargetDependency */, - ); - name = QBImagePickerController; - productName = QBImagePickerController; - productReference = 215921D9CE6F36E7F6E845A38B13740B /* libQBImagePickerController.a */; - productType = "com.apple.product-type.library.static"; - }; - BE8DE6BC4B9347A3FE72C52C9FAE8B4C /* RNDeviceInfo */ = { - isa = PBXNativeTarget; - buildConfigurationList = DF669BF377752277DB0B79DEDEC17027 /* Build configuration list for PBXNativeTarget "RNDeviceInfo" */; - buildPhases = ( - BCD674175920D10FCC7A9EA675EB1DEB /* Headers */, - 8CEF012810262841C7A5BD3D3AC02D72 /* Sources */, - AB74BF1F133412BEF711912C4F919FAB /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 8FA192134DD273CEC0E7532A015C13C0 /* PBXTargetDependency */, + 460229A61F4A85F5D79B2B20AB902F35 /* PBXTargetDependency */, ); name = RNDeviceInfo; productName = RNDeviceInfo; - productReference = F25FE0B186708D639872D3A8C84A0E72 /* libRNDeviceInfo.a */; + productReference = A9362FDC2C11BC5A7DCEEE60E57E97F0 /* libRNDeviceInfo.a */; productType = "com.apple.product-type.library.static"; }; - DC10A77A26D85A9F4BB77FDE1FF128C0 /* react-native-webview */ = { + 88986567DE4DF8D6F1183EC5ABBE4218 /* QBImagePickerController-QBImagePicker */ = { isa = PBXNativeTarget; - buildConfigurationList = 33C74750FD26131EF4C1C417BC1AFD2B /* Build configuration list for PBXNativeTarget "react-native-webview" */; + buildConfigurationList = B083B49949D80F2794686649D56D0AC5 /* Build configuration list for PBXNativeTarget "QBImagePickerController-QBImagePicker" */; buildPhases = ( - 0F711891CA2FD9FC9380990DF518EDCF /* Headers */, - 54FAF30BDAF993B2ECA3E55555C2F10B /* Sources */, - A78F94EB0834E1411AC72555012713F8 /* Frameworks */, + B500FC9A16E5C02CFCFC5F4A70C57E44 /* Sources */, + 3D91F4427CFAB28C8220E7543E9FA17A /* Frameworks */, + B810FEDAA5BE48DCB8B7A2D9ED38F771 /* Resources */, ); buildRules = ( ); dependencies = ( - 83B5E3D1A6112EE5B8CAACE9BB052F01 /* PBXTargetDependency */, ); - name = "react-native-webview"; - productName = "react-native-webview"; - productReference = A99F7986D0F96BA226868846D462E69C /* libreact-native-webview.a */; + name = "QBImagePickerController-QBImagePicker"; + productName = "QBImagePickerController-QBImagePicker"; + productReference = A98AAEA3C59249FD17A9A8561E1EB090 /* QBImagePicker.bundle */; + productType = "com.apple.product-type.bundle"; + }; + 8A247007F4F0BF7C2DD4DD8A7FC765B1 /* QBImagePickerController */ = { + isa = PBXNativeTarget; + buildConfigurationList = BD8F156CD9D3A40D4355F50B38D96DE1 /* Build configuration list for PBXNativeTarget "QBImagePickerController" */; + buildPhases = ( + AFE12640C88022DBF0FC8B750AA614A3 /* Headers */, + 055ACCAB422073BE696BF686FE423CD8 /* Sources */, + 7224938DD64D1396B6BC3411B87C1C8B /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 9D1026DB090BABD29385DBF37854FD8F /* PBXTargetDependency */, + ); + name = QBImagePickerController; + productName = QBImagePickerController; + productReference = 6E9370B84BD65621682005D092D66A71 /* libQBImagePickerController.a */; + productType = "com.apple.product-type.library.static"; + }; + 8F9FB30742F24E06348CA6BB7BE816B4 /* EXFileSystem */ = { + isa = PBXNativeTarget; + buildConfigurationList = 126AE8970754A6BA5FE9DA02CA010B2A /* Build configuration list for PBXNativeTarget "EXFileSystem" */; + buildPhases = ( + 7BCE6740C1956DB89891BD6F4A6AE044 /* Headers */, + 7CD392B2F5800AD37DD5DCE1C984884E /* Sources */, + 70DCC08B264C6FCAAF9029986DC4F583 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 2FA54EC112515E4A3EF63E83EBC8D733 /* PBXTargetDependency */, + 3E56B5BEA3C0A0A4A52D8A2EDD469759 /* PBXTargetDependency */, + ); + name = EXFileSystem; + productName = EXFileSystem; + productReference = 1991FC9EB059A762813E3CE3DA38C063 /* libEXFileSystem.a */; + productType = "com.apple.product-type.library.static"; + }; + 99FEE446172BA9A9D3C429193C87B775 /* RNScreens */ = { + isa = PBXNativeTarget; + buildConfigurationList = 1534B279F029732F6F068F9DCBC7244D /* Build configuration list for PBXNativeTarget "RNScreens" */; + buildPhases = ( + C6A34DC60231B017CBB1FA5351D6F897 /* Headers */, + 4BB4D957C941C8BE3B464595E308A3AD /* Sources */, + 9B7BAE422AC73858EC415DBE4DED2D12 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 26FDDD61AD3D90EFEB77750FE155EC7B /* PBXTargetDependency */, + ); + name = RNScreens; + productName = RNScreens; + productReference = A6A138D6667BD4A9D04D2E36F1AEBCEC /* libRNScreens.a */; + productType = "com.apple.product-type.library.static"; + }; + B7A9163CFC06AA914218608942A70B50 /* yoga */ = { + isa = PBXNativeTarget; + buildConfigurationList = 7E752EC516A9C7A3CD6B251DE46C6992 /* Build configuration list for PBXNativeTarget "yoga" */; + buildPhases = ( + 929EDDE1712B222FDD4E5CD1B0070826 /* Headers */, + 30414010AD802325BEEBE34B2B1EED3D /* Sources */, + 6C58A1F7BDA36B38D3645962231F6AB7 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = yoga; + productName = yoga; + productReference = 4D96490599AA0027EECDEB35A711F9AC /* libyoga.a */; + productType = "com.apple.product-type.library.static"; + }; + BA4B096D64C945C50DBB633908388787 /* UMReactNativeAdapter */ = { + isa = PBXNativeTarget; + buildConfigurationList = E46803E1D5324684853A741A9EE1A2C0 /* Build configuration list for PBXNativeTarget "UMReactNativeAdapter" */; + buildPhases = ( + 48FE25903ED66B0F3F7A1BA2907533B8 /* Headers */, + 91BB8030E61679A788AA4CDEC3BC3609 /* Sources */, + D4B39AE5D04F20EE30BE08212B82FF1B /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 8C77AC59973A15BF055DD70B918D0425 /* PBXTargetDependency */, + AFFB724A3269068F5A437D1FD442E77B /* PBXTargetDependency */, + CCDE874751B238FB10A142545CB73799 /* PBXTargetDependency */, + ); + name = UMReactNativeAdapter; + productName = UMReactNativeAdapter; + productReference = FEDD1E83251AD676665505AE66FA1363 /* libUMReactNativeAdapter.a */; + productType = "com.apple.product-type.library.static"; + }; + C9589EC5310C020FC44A090CC8E03332 /* Pods-RocketChatRN */ = { + isa = PBXNativeTarget; + buildConfigurationList = D54F3F88981D6A4479E117769A4AAB3D /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */; + buildPhases = ( + A01F48FFF2D04796DF7AB9132177EC49 /* Headers */, + ADB4D62AB42655029F82296CC264CA13 /* Sources */, + D62EEE79C31BA3C79FC8C5364E60CB2F /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 5B0117EBF52EFAE00D18775EF53E4C30 /* PBXTargetDependency */, + 99A9CD54499C6108AB0CA60B6845D466 /* PBXTargetDependency */, + D745E0D64D619779C130E77EC7CE79F5 /* PBXTargetDependency */, + 954A84D7EDDF07D2678357B399D2274B /* PBXTargetDependency */, + D1FF767E91A9B97ADBFFACB01D29051A /* PBXTargetDependency */, + 8FAAEFB05E132240B0B963B7ABDB3A27 /* PBXTargetDependency */, + D1993F5D9DD13C88FB0F8D8867A60FDF /* PBXTargetDependency */, + 3AD34C15EDDD38B431CC7FEA88559F5C /* PBXTargetDependency */, + 9C393894ABF178324E94F1BE6C4AAB63 /* PBXTargetDependency */, + 78157F649969F32E3664348291365008 /* PBXTargetDependency */, + 7A7462F4156314E4AE652D5DF709860F /* PBXTargetDependency */, + 9BF8CEF107CF6EAD57176FA06FDCE2AB /* PBXTargetDependency */, + ACB6A09D544541F9C92DAF79B781C6FB /* PBXTargetDependency */, + 139391E41E07492CC7194E0AFCB8CDF2 /* PBXTargetDependency */, + 453FF5BE7666616414808FB6A71E989F /* PBXTargetDependency */, + DCB198CDCEF0D067DE1D58873F64D0F9 /* PBXTargetDependency */, + 305D708DD35841010CA8E7915C4D90E6 /* PBXTargetDependency */, + DFAFF56203EB894591E417203AFCCE50 /* PBXTargetDependency */, + C4E16E71B1E0ADD833EB93F09C1E323C /* PBXTargetDependency */, + 1E33910366BB10BC3F0F1D63A13EF2B2 /* PBXTargetDependency */, + 2F324DEA722B7696B0842FB3E5D92A77 /* PBXTargetDependency */, + 3287EB379C98A40D0DED535F3B3E59B0 /* PBXTargetDependency */, + AC73E8D9C7A5C41F5D50451126B32040 /* PBXTargetDependency */, + 59D8E392C3C2CE95D0A7E4F165774DFA /* PBXTargetDependency */, + 621D56654E35237F674420DC791C7D67 /* PBXTargetDependency */, + 4D2705A91EBEE1F6050A6442604CB2A2 /* PBXTargetDependency */, + 23594044D1E0EE941F0DEDF03A501C08 /* PBXTargetDependency */, + E6EEC87DFD38AADDC38ABA62C8165C49 /* PBXTargetDependency */, + A2252316696E284099BFABDC59E5A27F /* PBXTargetDependency */, + 24C4D5BE4E3D3D7B61D23F4EC080CE3E /* PBXTargetDependency */, + 90A6C00124A662B1850907EEF2B50812 /* PBXTargetDependency */, + 7F31608C8A86ABF0A14818722407F98A /* PBXTargetDependency */, + 24AA02415A92EDE9C000BEBE68AF5C5D /* PBXTargetDependency */, + EB13383E77D35BB23DABCC6F16565CE4 /* PBXTargetDependency */, + 0B498A3B54EDBBA678035737993F2482 /* PBXTargetDependency */, + 168673A42D3C95B65CF26F188661C388 /* PBXTargetDependency */, + 1307161107D3A80D2C702920CFA85216 /* PBXTargetDependency */, + A2EB06F316C769EC04C1F542DDD6CEF8 /* PBXTargetDependency */, + 213AE34007C3066C586C66FEE79F302F /* PBXTargetDependency */, + CD439E956730DBA084BCDDBB019B0D1C /* PBXTargetDependency */, + 2F4985CA07143CA276DE69B0394F6706 /* PBXTargetDependency */, + BE9425443C7EC909A142F2631058D036 /* PBXTargetDependency */, + E4090F97701EE27F379F9846BBEB0F67 /* PBXTargetDependency */, + CDFFE52ED1E44B2967EA58B021D26E6B /* PBXTargetDependency */, + 4E13829791687EF26AAD3436B1E38761 /* PBXTargetDependency */, + A70623127511E913FEEE42F9D2464D59 /* PBXTargetDependency */, + B45ECE57254214C6E23A3F10200B80C7 /* PBXTargetDependency */, + ); + name = "Pods-RocketChatRN"; + productName = "Pods-RocketChatRN"; + productReference = 319F339DE8D540C13ECE3977931E76D5 /* libPods-RocketChatRN.a */; productType = "com.apple.product-type.library.static"; }; DF470A1028ED32C9E70DBDAA805F8802 /* Folly */ = { @@ -4776,7 +6297,7 @@ ); name = Folly; productName = Folly; - productReference = 756ACE90B6EF13570602DFBD7D8AE1AE /* libFolly.a */; + productReference = 2DD37E892C05DC12C0BA26819F7EFDDC /* libFolly.a */; productType = "com.apple.product-type.library.static"; }; E3A3FB14CD4ACD21565913CF4A4B097C /* GTMSessionFetcher */ = { @@ -4793,7 +6314,7 @@ ); name = GTMSessionFetcher; productName = GTMSessionFetcher; - productReference = 5B4C2F4E3F95179CD28B9A7106F8B221 /* libGTMSessionFetcher.a */; + productReference = 3E303A73DE2B66F24849E34488ED1740 /* libGTMSessionFetcher.a */; productType = "com.apple.product-type.library.static"; }; F1DE11E9221F196A8A9D3464F96A345A /* Protobuf */ = { @@ -4810,7 +6331,24 @@ ); name = Protobuf; productName = Protobuf; - productReference = DCDBE7B0BA4228C239E0C6328B2C837D /* libProtobuf.a */; + productReference = 0344906936C32DC0CF0EAF792358185B /* libProtobuf.a */; + productType = "com.apple.product-type.library.static"; + }; + F42432668A0F81BE898F1FEA0D6A83B7 /* EXAppLoaderProvider */ = { + isa = PBXNativeTarget; + buildConfigurationList = 1C32006CC07DA731A4A3EB74DE490502 /* Build configuration list for PBXNativeTarget "EXAppLoaderProvider" */; + buildPhases = ( + 9308D3939AFAB2C5117CBAD222E15FE1 /* Headers */, + 6B872F375232FDACC3D546EF9D28485C /* Sources */, + CEED69BFDF6A885185DB264BF3D59019 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = EXAppLoaderProvider; + productName = EXAppLoaderProvider; + productReference = DE8C98CF405C4C0758506C67672E008B /* libEXAppLoaderProvider.a */; productType = "com.apple.product-type.library.static"; }; /* End PBXNativeTarget section */ @@ -4830,13 +6368,18 @@ en, ); mainGroup = CF1408CF629C7361332E53B88F7BD30C; - productRefGroup = 2CA33BD7FFDE88790D6DBF5305DB1BA8 /* Products */; + productRefGroup = 3F01BD455D6E2426308E6AC856BBFF03 /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( 66641B93FAF80FF325B2D7B4AD85056F /* boost-for-react-native */, ABA9A411BB5A359862E5F1AA6238278E /* Crashlytics */, 1414ADEE4A421F3C5F9A229345CE3F61 /* DoubleConversion */, + F42432668A0F81BE898F1FEA0D6A83B7 /* EXAppLoaderProvider */, + 2F8CF410B0326B6DEB5A2CDA4E2A2D8B /* EXConstants */, + 8F9FB30742F24E06348CA6BB7BE816B4 /* EXFileSystem */, + 5ED05858D3E3C1599A062FB1C45FE359 /* EXPermissions */, + 240504C276270018DE05B3D0F038B1E5 /* EXWebBrowser */, D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */, 97C8CD7E4179727E4F374CABD338D2BB /* Firebase */, 39E0403E3ACE39BC0D878D82FAB8F012 /* FirebaseABTesting */, @@ -4853,39 +6396,68 @@ 7969F0F17682790DCAF63BC9AF2176ED /* GoogleUtilities */, E3A3FB14CD4ACD21565913CF4A4B097C /* GTMSessionFetcher */, 2543734D0A332B2588202904B99CC151 /* nanopb */, - 6C8F69E4466E5D0DB2328F5804A1F88F /* Pods-RocketChatRN */, + C9589EC5310C020FC44A090CC8E03332 /* Pods-RocketChatRN */, F1DE11E9221F196A8A9D3464F96A345A /* Protobuf */, - 928F6D091147C82DAB685010E23BA90B /* QBImagePickerController */, - 21D4CE3FA96D3BE5B8237D082505C188 /* QBImagePickerController-QBImagePicker */, - 76D3860A83438EE6A0ACBBD4BBB61B14 /* react-native-orientation-locker */, - 57954C49E918563AF7054B31EACBAB93 /* react-native-splash-screen */, - DC10A77A26D85A9F4BB77FDE1FF128C0 /* react-native-webview */, - BE8DE6BC4B9347A3FE72C52C9FAE8B4C /* RNDeviceInfo */, - 19B86FE3A045FD3536FCD8DC39B415D3 /* RNImageCropPicker */, - 0AFC585C520484341005ED314DD6F26D /* RNScreens */, - 111EE270AF30FB09FC9EB73638F2E16A /* RSKImageCropper */, - 10D172205FBF5536819F94D0AD56DE78 /* yoga */, + 8A247007F4F0BF7C2DD4DD8A7FC765B1 /* QBImagePickerController */, + 88986567DE4DF8D6F1183EC5ABBE4218 /* QBImagePickerController-QBImagePicker */, + 3C9001F23F58850FCB7FAEFA0C72E507 /* react-native-orientation-locker */, + 0DABBD55913D3E7469399FF80333EA1E /* react-native-splash-screen */, + 24F769FA9B03BA265696664C50C70828 /* react-native-webview */, + 80550EFCC9B14329B278C9CE06F8D916 /* RNDeviceInfo */, + 0ACA345EAF80C8F41867C0E5928F88BA /* RNImageCropPicker */, + 99FEE446172BA9A9D3C429193C87B775 /* RNScreens */, + 26A5B3B7F44E0C2A69ADF5B06E41C24F /* RSKImageCropper */, + EF4A49EB410755DB3CEB3DAA961FFB19 /* UMBarCodeScannerInterface */, + 7EE372278F1E44FB04162ED4F315624E /* UMCameraInterface */, + D6CDBA4F567B018F442382D2520D6D27 /* UMConstantsInterface */, + 4412C5F689DD128EFB8F42F11C502D2C /* UMCore */, + E982F26D0D763FE8A6D551E895D4027A /* UMFaceDetectorInterface */, + 031F6220C2D49E4AD5F61FAA0ECADF64 /* UMFileSystemInterface */, + F285EFD8528706D9EB51D7540269B791 /* UMFontInterface */, + 9A9B9448103B296FA53D9693C8DFAE9F /* UMImageLoaderInterface */, + 037B3080D17C0918F3E81F3A1BC9210D /* UMPermissionsInterface */, + BA4B096D64C945C50DBB633908388787 /* UMReactNativeAdapter */, + 9BF0DA5C4D6A4C61F825D88A08C2F7CA /* UMSensorsInterface */, + 3FCFE37F3115CF59C06A7F46C1F6C92A /* UMTaskManagerInterface */, + B7A9163CFC06AA914218608942A70B50 /* yoga */, ); }; /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ - 0816A69B194691C64FCD5FFD09C726E2 /* Resources */ = { + B810FEDAA5BE48DCB8B7A2D9ED38F771 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - B5D596EED300963BD020ED34A292D58F /* de.lproj in Resources */, - 4252722B0D4555CCE1F354442F8AD620 /* en.lproj in Resources */, - F6297191A804602E99A8430DF6DD339E /* es.lproj in Resources */, - 73471DCF728A0EF2029874635F484B02 /* ja.lproj in Resources */, - 10CA342E4D5EFCA2203B3EC2C8EE61C2 /* QBImagePicker.storyboard in Resources */, - 71D59B53A54256864C79C42E9816C253 /* zh-Hans.lproj in Resources */, + FBFFC5C6E84F0C8336D519C301385828 /* de.lproj in Resources */, + 24E201C915CCA46BB9E2B520E16CE96A /* en.lproj in Resources */, + BBED6169BFEBC931BDCD62A09A50B074 /* es.lproj in Resources */, + F4CDC8F6E1142DB9EB0CC5E43FF05D26 /* ja.lproj in Resources */, + 67D2695DC15D92264A898094C25E0680 /* QBImagePicker.storyboard in Resources */, + F8CC3FEA346D5E1765C947AA4B97DDB1 /* zh-Hans.lproj in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXResourcesBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ + 055ACCAB422073BE696BF686FE423CD8 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 2A24C8BAFE01F793C9E4E740C2218FE3 /* QBAlbumCell.m in Sources */, + 1DC1822ABF3DF8A69FF17B804CC49FA1 /* QBAlbumsViewController.m in Sources */, + 37F3A39510FAF04BCA058F5F2AC3C128 /* QBAssetCell.m in Sources */, + 9D986D766F8D155E1B4685E373B6C61D /* QBAssetsViewController.m in Sources */, + 29445CE104128F18244A0621D2DFBF04 /* QBCheckmarkView.m in Sources */, + BC5D6E53E2637DAF4C67DC101A423A25 /* QBImagePickerController-dummy.m in Sources */, + A6C256909218413950A6E7EFDDDBB3D9 /* QBImagePickerController.m in Sources */, + AA37123387656CE22A4C22D2873BBA1C /* QBSlomoIconView.m in Sources */, + C9458500834DF53896A805C5BBDA421E /* QBVideoIconView.m in Sources */, + CC5A0086E528C422C59FB1B89303D107 /* QBVideoIndicatorView.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 0594473F37F90AFE741557A94CAFAFEC /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -4896,16 +6468,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 08304E00F00E17D25BAE40F67D24571B /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - DB3248E8551A96B79EDE6C6590F1BDDE /* RNScreens-dummy.m in Sources */, - 882EF64D49CC16E5027AC932AEA358C8 /* RNSScreen.m in Sources */, - A645F048EF24F095E5EA8E29DD1FEE14 /* RNSScreenContainer.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 2114D9C20C46F701BEB76345C5B53F04 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -4917,11 +6479,32 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 271AC67A8976479556084356493808F0 /* Sources */ = { + 30414010AD802325BEEBE34B2B1EED3D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 5AE34C5703510C37651F2D592E581740 /* Pods-RocketChatRN-dummy.m in Sources */, + D5471ED4617926B80DCA66DDE1FFF330 /* Utils.cpp in Sources */, + E992EA5B66443DB7356ED04F10471B61 /* YGConfig.cpp in Sources */, + F0CF6B026333A81AE8357A56624C2195 /* YGEnums.cpp in Sources */, + B49F91721E88E10F553CFD471D0A6155 /* YGLayout.cpp in Sources */, + 118D14EEDC301F9CEE4F52D3D44F9F26 /* YGMarker.cpp in Sources */, + E9F0F76D2C387CB5210A82D50E780819 /* YGNode.cpp in Sources */, + 869B8D2B40D66AEB37297A41F6590726 /* YGNodePrint.cpp in Sources */, + 94339167F07C72E9F07B376378E498DB /* YGStyle.cpp in Sources */, + B14EF768966CEC3002EA4A2DAEE08535 /* YGValue.cpp in Sources */, + A2DB6AE365C4821D13AD24423DC3D72F /* yoga-dummy.m in Sources */, + 387FDA604382A9626FBB56DAC67162DD /* Yoga.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 316AD34BA752C17F4752179A5052A678 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + D7B6AE67B618EFF3A03D73F739149865 /* Compression.m in Sources */, + 2871049A24773B2E25C824457D9148D2 /* ImageCropPicker.m in Sources */, + A74F49CF8ED0405D05005EEF44685ADA /* RNImageCropPicker-dummy.m in Sources */, + 4E4032FE4B8AC855E373E910FCC092C7 /* UIImage+Resize.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -4946,6 +6529,30 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 3FFCB962AC3B3A9B7E4395FABE8FB423 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + AF0907A2E2B5158A6A32DFB02D2AEADA /* Orientation.m in Sources */, + EFB447DDED67D3F5DC1C512178C36953 /* react-native-orientation-locker-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 45AF8BF3BAF4690A35012B372E951451 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + AD31F06A485D49B7C0AAED9C3A51EF37 /* CGGeometry+RSKImageCropper.m in Sources */, + FA14D71302F9C125B28A1A0C86204833 /* RSKImageCropper-dummy.m in Sources */, + 7496ED399851902C8CE5963750F54F41 /* RSKImageCropViewController.m in Sources */, + A58761B4E207158C8362F872C061F365 /* RSKImageScrollView.m in Sources */, + 4AB35B500F8970A8A6A443F2F64B0B8B /* RSKInternalUtility.m in Sources */, + 71CDD3B877E6523153940361B1E9712F /* RSKTouchView.m in Sources */, + F6DC0252F62B5E68F39D8B43E73B22D2 /* UIApplication+RSKImageCropper.m in Sources */, + 176C113A21C2EF55A472AFA80EC39711 /* UIImage+RSKImageCropper.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 4B35D4E95CE7D11645F593A2A18F2F68 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -4983,16 +6590,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 54FAF30BDAF993B2ECA3E55555C2F10B /* Sources */ = { + 4BB4D957C941C8BE3B464595E308A3AD /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 81827AF92B0392C580BEBA81C4409689 /* react-native-webview-dummy.m in Sources */, - 68A61BE10E089C140464DD53988AA447 /* RNCUIWebView.m in Sources */, - 1F0840859666FB3BC343022167885B7B /* RNCUIWebViewManager.m in Sources */, - DA860D1E9056E672D95ACC3C2D54A42C /* RNCWKProcessPoolManager.m in Sources */, - DC72BC8D0518C51608931B9CBB0570DA /* RNCWKWebView.m in Sources */, - 350C5BA9EC252A3DA2C30BF86967CEBD /* RNCWKWebViewManager.m in Sources */, + E7F75705B12F4BDE6A75BCC35621A0DF /* RNScreens-dummy.m in Sources */, + 284CB9518CF4323C95538E903174FAE0 /* RNSScreen.m in Sources */, + 9EA2F0C50431DEF352B81BD92E40A4F0 /* RNSScreenContainer.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5031,13 +6635,63 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 8CEF012810262841C7A5BD3D3AC02D72 /* Sources */ = { + 6B872F375232FDACC3D546EF9D28485C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - A2B47F9119965CD8CF16A28B226A9173 /* DeviceUID.m in Sources */, - 492DF9C486B7E0CC6346216453536F4E /* RNDeviceInfo-dummy.m in Sources */, - 09614DD24882F2F2E15B7312628D928F /* RNDeviceInfo.m in Sources */, + 307CB65169E8986E7C907168C1FDDF66 /* EXAppLoaderProvider-dummy.m in Sources */, + EFDFE7E1BAA482B57A5362F7936B8D96 /* EXAppLoaderProvider.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 7CD392B2F5800AD37DD5DCE1C984884E /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 741BE50BA5F881A3983CB7F192225344 /* EXDownloadDelegate.m in Sources */, + C63ACD8218A2D9E10EE682934D0F4CFC /* EXFilePermissionModule.m in Sources */, + C18ABBF4D019811130D472686862B429 /* EXFileSystem-dummy.m in Sources */, + 8D47D902B89DCD2A92DEDDE21C74D541 /* EXFileSystem.m in Sources */, + F9A5B02F41A79DC79E3279F53783AF90 /* EXFileSystemAssetLibraryHandler.m in Sources */, + 6B31930D61CE82588E6115C8E41479CA /* EXFileSystemLocalFileHandler.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 7EC47747C015B4000E90EC7D5B535B9A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 3AB303FC717C5A08935E7F8EB822F68F /* react-native-splash-screen-dummy.m in Sources */, + FFB87EB0D95A6E493406748DD004F932 /* RNSplashScreen.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 81B74BE6461952D91C257916F423BB01 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + F56337E1CBD455759BB8B042B07DA5F4 /* react-native-webview-dummy.m in Sources */, + B96A8FF7161D4C3966C93D591692A600 /* RNCUIWebView.m in Sources */, + B3765807999B7DBA83511801ED8F5BB0 /* RNCUIWebViewManager.m in Sources */, + C3E63457CF76484173C6FD42ABCDF711 /* RNCWKProcessPoolManager.m in Sources */, + F3ED7ED8FEB605CBA35EF558D8AB8994 /* RNCWKWebView.m in Sources */, + D063737F7D6857968BBA1E9AE3357765 /* RNCWKWebViewManager.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 91BB8030E61679A788AA4CDEC3BC3609 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 6BCE7FEF6DF416F34B3696CC85276590 /* UMModuleRegistryAdapter.m in Sources */, + 970F0E4C79229FDA04BC23D50B1CFAB6 /* UMNativeModulesProxy.m in Sources */, + D3C2E30F37AD156D77471838034D8C68 /* UMReactFontManager.m in Sources */, + F30097BF7D7809D91AAD9FA1B0BEFC79 /* UMReactLogHandler.m in Sources */, + 62B8FBEBC6B7C8E48B8FFFD3725D54DF /* UMReactNativeAdapter-dummy.m in Sources */, + 81595D1E18000C492A1B4BEF82BC4BCA /* UMReactNativeAdapter.m in Sources */, + 94DD90F76B9AE8490D91E20B665CD604 /* UMReactNativeEventEmitter.m in Sources */, + 48F5295E6AB3A3F0A015E762767BB5CD /* UMViewManagerAdapter.m in Sources */, + B7026A39D11CD576D23AE3BD031C940D /* UMViewManagerAdapterClassesRegistry.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5057,42 +6711,57 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 9834E1E49603DE5E2BF45E959CFCB4DB /* Sources */ = { + A02A2E9F7389315B01604240D3D927B8 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 71D04EC388F5D0D6E725B57519D5D63E /* CGGeometry+RSKImageCropper.m in Sources */, - 8357DF731CE167B7544E4D6CF1EB1C29 /* RSKImageCropper-dummy.m in Sources */, - 41E27F7E3EB658FF29DC145BCBD8B72E /* RSKImageCropViewController.m in Sources */, - A6C33A2E9CC4A14E585DB7055765DD5A /* RSKImageScrollView.m in Sources */, - 1DE05E6830F0ABE6CCE4C9ADFA2E8AF3 /* RSKInternalUtility.m in Sources */, - C1D10DB3564C87834FA65EEDB090DA9D /* RSKTouchView.m in Sources */, - 47DC77E4B14514C73DC162CF72078580 /* UIApplication+RSKImageCropper.m in Sources */, - 4C11BDF98EB9AFC045FA5D7169C12C03 /* UIImage+RSKImageCropper.m in Sources */, + 12ACC94DE2E5700B6CCF85313043EEC5 /* UMAppDelegateWrapper.m in Sources */, + 91C88BBB4D58DE4F230D9B75482C1AF8 /* UMCore-dummy.m in Sources */, + CC1F690FF76AE0E45622809281DB2B49 /* UMExportedModule.m in Sources */, + 7FF3C3998D7CF5C363AC1CAA696B6162 /* UMLogManager.m in Sources */, + 1FE4B39F4357606FF23D1632FD3BD1FA /* UMModuleRegistry.m in Sources */, + DA496E0597C64A3404628E03E447F7F0 /* UMModuleRegistryProvider.m in Sources */, + 7966A7B37EDE4A16158C6E51151957D3 /* UMSingletonModule.m in Sources */, + 6EE78D91771E29D2D7E741FCA2F1A07B /* UMUtilities.m in Sources */, + DECFC95C86D393B452CD612C5232AB73 /* UMViewManager.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9C0C8DF3DD29FF1B4C8142948EC98A71 /* Sources */ = { + A6C5040BCE203F411247AC644E4ECCA8 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 624F9171686FCC5CD7F72AE511A09FBC /* QBAlbumCell.m in Sources */, - F33E12977B6F58815603A341FACF8A99 /* QBAlbumsViewController.m in Sources */, - 4BD63A79C45516CDDBCE55088003BD1A /* QBAssetCell.m in Sources */, - 939CBDB16E6865FDFEC1A36CBAF86897 /* QBAssetsViewController.m in Sources */, - 5C660749EF59FFBDB52DAD31EFBC5933 /* QBCheckmarkView.m in Sources */, - F9AFB09E08707A30588138EDDCAFBF97 /* QBImagePickerController-dummy.m in Sources */, - B38F4734707A4306A48AC4308B4829F4 /* QBImagePickerController.m in Sources */, - 8DDA97E5BA3CDB7D29DCF5CEDD4930D4 /* QBSlomoIconView.m in Sources */, - 7D943CB85A84BB4BCBDF510646154467 /* QBVideoIconView.m in Sources */, - 21DC86B47BFEA52D0CBA5464A8750B66 /* QBVideoIndicatorView.m in Sources */, + F691D9FA47A573CADDCF5584D7D693DE /* EXConstants-dummy.m in Sources */, + 5DBBB91027255885AAE7B300C895779A /* EXConstants.m in Sources */, + CDBC59077AD1D33760F3265595534A61 /* EXConstantsService.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - A7A559498E8B3F90D04C396E38536B22 /* Sources */ = { + ADB4D62AB42655029F82296CC264CA13 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + 3F88E34DE1D90DF355F3462EC3CBB4CD /* Pods-RocketChatRN-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + AF7E2A8BB3196AB169293F1A66B46A56 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 708B5E67847F332FFC954B77D1526F4B /* EXAudioRecordingPermissionRequester.m in Sources */, + 30EED7A34D9A1000D1EB522E97493972 /* EXCalendarRequester.m in Sources */, + 097FAB099558BE69C5B07C5CBF958442 /* EXCameraPermissionRequester.m in Sources */, + 1E7F403014ACA53DDDFB3DEF4C6AA08C /* EXCameraRollRequester.m in Sources */, + 05784E4F577C71F801295AA360FEDBAA /* EXContactsRequester.m in Sources */, + 592F5C115D492157BAB057FC36627C58 /* EXLocationRequester.m in Sources */, + EF93A2F86BD6725C49F5EBC66CD115FD /* EXPermissions-dummy.m in Sources */, + 9D3100ACF474922057D60AEFC59E8DBD /* EXPermissions.m in Sources */, + ED6EE21B477CD958C06BB06515712F3D /* EXReactNativeUserNotificationCenterProxy.m in Sources */, + 488CDAE7D04BDDE829743A0A96D791E9 /* EXRemindersRequester.m in Sources */, + DE22255B85ED5C17E8432D9DD5E4591A /* EXRemoteNotificationRequester.m in Sources */, + 6262BBFAEBD554FF9B9CB958D38B9AD5 /* EXSystemBrightnessRequester.m in Sources */, + E41EA8387DD032D55443223065DF058A /* EXUserNotificationRequester.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5111,41 +6780,20 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - C1F6E4A0647F69B023445C78DFA1CDA3 /* Sources */ = { + B500FC9A16E5C02CFCFC5F4A70C57E44 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 859F867982A89EA5C44D20259C61F4A2 /* Orientation.m in Sources */, - F0ECC0C65D845BEDC02BD06D0A1D728B /* react-native-orientation-locker-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - C3AD92D7067A059C67C0EEE5DA4BB499 /* Sources */ = { + BA3B56AE112C1FD5F1ACD672D003237A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 8B90A3259B8C3CF85D391C4486EAF590 /* Compression.m in Sources */, - 61475E67281F1F4D1D75F2F49192BA35 /* ImageCropPicker.m in Sources */, - F3A06762C5E9EBB4E907B9E4690AE89E /* RNImageCropPicker-dummy.m in Sources */, - 6C3AC0272222CC7390515D084B46F7E2 /* UIImage+Resize.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - CD633FEED535740B89ACE448709D8EA0 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - A66A1A70BA2605D61A44DDD414F7925C /* Utils.cpp in Sources */, - AF30F8A43512F3BBFFAF4EC0F2361E97 /* YGConfig.cpp in Sources */, - 316956B60CCE1E969FEA694DD2C73396 /* YGEnums.cpp in Sources */, - 8FD5F436F49CDCAB76DB9E37ED0BA1F7 /* YGLayout.cpp in Sources */, - 3C80082393AD23B290BCFE22D12D1486 /* YGMarker.cpp in Sources */, - 4A9CB7E10A5CDE36AFFEE3DC560AEA88 /* YGNode.cpp in Sources */, - 0C29815B0841F93565BCEA72C9A7A5A8 /* YGNodePrint.cpp in Sources */, - E0B80F839FDD9EBCE6392D251468E284 /* YGStyle.cpp in Sources */, - 876DA1D375E4F92831B30E4A5546BA74 /* YGValue.cpp in Sources */, - 8CA0B957D6B57C0FFAFC026D67E3731E /* yoga-dummy.m in Sources */, - C0091AE3F406D3C829D49A1EF04A6DC6 /* Yoga.cpp in Sources */, + 862512663267311A4FA9918593DACF5C /* DeviceUID.m in Sources */, + F4624CBC0891EA88397FC0E58196E766 /* RNDeviceInfo-dummy.m in Sources */, + 4EF878BACBE3C55742FBCEBF1EB1D62D /* RNDeviceInfo.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5181,12 +6829,12 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - F77B5C3A872D11F0BCA71A1187FB2A1A /* Sources */ = { + D8BADC07DACE496C6A1D36DECF9264FB /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 2FDC94D70D59535B36AFFA269FA06C12 /* react-native-splash-screen-dummy.m in Sources */, - 7264D516ADEBB61E362BB1833BBD9FDC /* RNSplashScreen.m in Sources */, + 590169C3BE81E6FE9B67E19D5DCFC107 /* EXWebBrowser-dummy.m in Sources */, + FAF6B57EDEE412A783FD3FD64B4DBF17 /* EXWebBrowser.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5220,23 +6868,41 @@ target = 5AAD465FECAE9083F45E3DB9252A8302 /* FirebaseRemoteConfig */; targetProxy = 5B65179DE5276B59CE042E73FDDA241B /* PBXContainerItemProxy */; }; + 0B498A3B54EDBBA678035737993F2482 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFontInterface; + target = F285EFD8528706D9EB51D7540269B791 /* UMFontInterface */; + targetProxy = 22267B81712B4A524C00C020C844B005 /* PBXContainerItemProxy */; + }; 0F0A8B73246A3F2340DC1E516950CCBF /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; target = 368FB7FBA34E3323BB42D13325551C95 /* FirebaseCore */; targetProxy = D1D3303C3AD8C1B99F2E4AF4B23DCEB2 /* PBXContainerItemProxy */; }; + 0F3BCAD2E91FEB86AE8211F2B6ED7912 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RSKImageCropper; + target = 26A5B3B7F44E0C2A69ADF5B06E41C24F /* RSKImageCropper */; + targetProxy = C377E46CDAC590D6628CF266A615DB33 /* PBXContainerItemProxy */; + }; 10173A91591A0BB5F8FBBE26505497A3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseAnalytics; target = 1ABBF6F89787BBEDF49B4636ADB45587 /* FirebaseAnalytics */; targetProxy = 29C75182850787283A5CB901C4069706 /* PBXContainerItemProxy */; }; - 142B89CFD8DE7A970E54D453DDC84D2C /* PBXTargetDependency */ = { + 1307161107D3A80D2C702920CFA85216 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Firebase; - target = 97C8CD7E4179727E4F374CABD338D2BB /* Firebase */; - targetProxy = B829418D67A3474DB52F128E4FE63532 /* PBXContainerItemProxy */; + name = UMPermissionsInterface; + target = 037B3080D17C0918F3E81F3A1BC9210D /* UMPermissionsInterface */; + targetProxy = 5A6F88731F3D3A7C6C48AFE508892021 /* PBXContainerItemProxy */; + }; + 139391E41E07492CC7194E0AFCB8CDF2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebasePerformance; + target = 42F7AF66FD1178857DC3A2834552BE76 /* FirebasePerformance */; + targetProxy = 4425991D591AB1CA8444DDEEA092E696 /* PBXContainerItemProxy */; }; 15D5DC6D54EDFCCE801AF55317683059 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -5244,17 +6910,17 @@ target = AB021401ADE9E1431240BBA948E7965E /* GoogleAppMeasurement */; targetProxy = D5582AE19A81D8922E73DAD94F1B1207 /* PBXContainerItemProxy */; }; - 1AF1D1F41734F10AFEB7E85DAE85C868 /* PBXTargetDependency */ = { + 168673A42D3C95B65CF26F188661C388 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseRemoteConfig; - target = 5AAD465FECAE9083F45E3DB9252A8302 /* FirebaseRemoteConfig */; - targetProxy = BD5F52B48BC4DA0D6371CA5C6F278875 /* PBXContainerItemProxy */; + name = UMImageLoaderInterface; + target = 9A9B9448103B296FA53D9693C8DFAE9F /* UMImageLoaderInterface */; + targetProxy = A809F87ECBD733D786D401044E34215D /* PBXContainerItemProxy */; }; - 1C9AAEB52F19186FB3570B73087FF44E /* PBXTargetDependency */ = { + 1C7BC65EE5D0AE985F3F9D390F082C25 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebasePerformance; - target = 42F7AF66FD1178857DC3A2834552BE76 /* FirebasePerformance */; - targetProxy = 223479AFBB81F9E760378E6C4A62912F /* PBXContainerItemProxy */; + name = UMPermissionsInterface; + target = 037B3080D17C0918F3E81F3A1BC9210D /* UMPermissionsInterface */; + targetProxy = 70F37C141BA487162A565A5A71134D97 /* PBXContainerItemProxy */; }; 1D189DA7DFB1A6568E971F9A6DAA9E87 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -5262,17 +6928,70 @@ target = 1ABBF6F89787BBEDF49B4636ADB45587 /* FirebaseAnalytics */; targetProxy = 87D02EAE1DD3CC8AB9B8D646D27548A4 /* PBXContainerItemProxy */; }; - 20DD28CEE67A2BCD4E8AE19A0AF27A56 /* PBXTargetDependency */ = { + 1E33910366BB10BC3F0F1D63A13EF2B2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-webview"; - target = DC10A77A26D85A9F4BB77FDE1FF128C0 /* react-native-webview */; - targetProxy = A069F1A2E15D73EC2C536EFDECCC9B98 /* PBXContainerItemProxy */; + name = GoogleToolboxForMac; + target = 32F8EA730FE2005197F54338D2C236AC /* GoogleToolboxForMac */; + targetProxy = 07E712437B2BAD104BEA1D0616FA2AA1 /* PBXContainerItemProxy */; }; - 23918061C6F2AC70483EF9D9575F1931 /* PBXTargetDependency */ = { + 213AE34007C3066C586C66FEE79F302F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMSensorsInterface; + target = 9BF0DA5C4D6A4C61F825D88A08C2F7CA /* UMSensorsInterface */; + targetProxy = 4AA9BB29ADE381F3FA13FE4F23898402 /* PBXContainerItemProxy */; + }; + 23594044D1E0EE941F0DEDF03A501C08 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RSKImageCropper; + target = 26A5B3B7F44E0C2A69ADF5B06E41C24F /* RSKImageCropper */; + targetProxy = 6C9A91284B831230762C99FF81852B00 /* PBXContainerItemProxy */; + }; + 24AA02415A92EDE9C000BEBE68AF5C5D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFaceDetectorInterface; + target = E982F26D0D763FE8A6D551E895D4027A /* UMFaceDetectorInterface */; + targetProxy = 6F4411D92BD9A18256186316EBDEC781 /* PBXContainerItemProxy */; + }; + 24C4D5BE4E3D3D7B61D23F4EC080CE3E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCameraInterface; + target = 7EE372278F1E44FB04162ED4F315624E /* UMCameraInterface */; + targetProxy = AC2A20FA8016FB27839FE562E5DEB6DE /* PBXContainerItemProxy */; + }; + 26FDDD61AD3D90EFEB77750FE155EC7B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + targetProxy = 7289852A57F2B726690AB94B3169D94E /* PBXContainerItemProxy */; + }; + 2F324DEA722B7696B0842FB3E5D92A77 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleUtilities; + target = 7969F0F17682790DCAF63BC9AF2176ED /* GoogleUtilities */; + targetProxy = 386E56024551B3F3569B0F45AAE9D9F3 /* PBXContainerItemProxy */; + }; + 2F4985CA07143CA276DE69B0394F6706 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "boost-for-react-native"; target = 66641B93FAF80FF325B2D7B4AD85056F /* boost-for-react-native */; - targetProxy = 8B892F7DCCC4ED0A7BAB52A0E0C20117 /* PBXContainerItemProxy */; + targetProxy = 0489DFCBC90BAFCDACF931CE4FD819A0 /* PBXContainerItemProxy */; + }; + 2FA54EC112515E4A3EF63E83EBC8D733 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCore; + target = 4412C5F689DD128EFB8F42F11C502D2C /* UMCore */; + targetProxy = A7C477F16F437F0AFFBF067E258EB1E4 /* PBXContainerItemProxy */; + }; + 305D708DD35841010CA8E7915C4D90E6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GTMSessionFetcher; + target = E3A3FB14CD4ACD21565913CF4A4B097C /* GTMSessionFetcher */; + targetProxy = 3A824F3ABC5FF18B9E2A64B43B285592 /* PBXContainerItemProxy */; + }; + 3287EB379C98A40D0DED535F3B3E59B0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Protobuf; + target = F1DE11E9221F196A8A9D3464F96A345A /* Protobuf */; + targetProxy = 0AF5E90688ED05527671777E991A74B6 /* PBXContainerItemProxy */; }; 346905C1D5815D2D235745231BC39BD4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -5292,22 +7011,17 @@ target = 368FB7FBA34E3323BB42D13325551C95 /* FirebaseCore */; targetProxy = A07A8F019F42721442DA50F68DCECAFB /* PBXContainerItemProxy */; }; - 3776BF5768404F29B4C905E75B5FB05B /* PBXTargetDependency */ = { + 3AD34C15EDDD38B431CC7FEA88559F5C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - targetProxy = AEBAA8C70F6579DE56DF4968146A8314 /* PBXContainerItemProxy */; + name = Fabric; + target = D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */; + targetProxy = D298FC5A0D6B89B04A468A63B05FDB9B /* PBXContainerItemProxy */; }; - 3B6D8B05BE55AEE9E8ADF5934DCCED42 /* PBXTargetDependency */ = { + 3E56B5BEA3C0A0A4A52D8A2EDD469759 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RSKImageCropper; - target = 111EE270AF30FB09FC9EB73638F2E16A /* RSKImageCropper */; - targetProxy = 4B23C60B79E5F3E3C0BF93DDBB31F5C1 /* PBXContainerItemProxy */; - }; - 3C17CF235BF2D95D48EE285834493024 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = AB021401ADE9E1431240BBA948E7965E /* GoogleAppMeasurement */; - targetProxy = DAD84C1C1E8EC3061F1FCBE800942C00 /* PBXContainerItemProxy */; + name = UMFileSystemInterface; + target = 031F6220C2D49E4AD5F61FAA0ECADF64 /* UMFileSystemInterface */; + targetProxy = 4D868DD673E0BCD75FCE3AD3B286CA4F /* PBXContainerItemProxy */; }; 3FD0607DDBDC01E6CFDA9FFAD045CA25 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -5315,12 +7029,6 @@ target = F1DE11E9221F196A8A9D3464F96A345A /* Protobuf */; targetProxy = 5A9363F4FD6B77942B665046B14395CF /* PBXContainerItemProxy */; }; - 401B881024ECA432CA1A83078C93D2FC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-orientation-locker"; - target = 76D3860A83438EE6A0ACBBD4BBB61B14 /* react-native-orientation-locker */; - targetProxy = 83F588463DA126EEC778DBFD7E268964 /* PBXContainerItemProxy */; - }; 40AE6B53F16D28021F4E6732F3A44930 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleToolboxForMac; @@ -5339,27 +7047,33 @@ target = 7969F0F17682790DCAF63BC9AF2176ED /* GoogleUtilities */; targetProxy = 94ACBB797039D918B9290B94A50A3F36 /* PBXContainerItemProxy */; }; - 4E65DF812C83D8FB8B73D4BDA5570525 /* PBXTargetDependency */ = { + 453FF5BE7666616414808FB6A71E989F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseInstanceID; - target = 586739D116442BA7FCD2EC0353EA0FA4 /* FirebaseInstanceID */; - targetProxy = 8A5745F3DDC39E72566F1C4C16892EF5 /* PBXContainerItemProxy */; + name = FirebaseRemoteConfig; + target = 5AAD465FECAE9083F45E3DB9252A8302 /* FirebaseRemoteConfig */; + targetProxy = 5563E05C1CB9A4D6246F249A76335C90 /* PBXContainerItemProxy */; }; - 5150D3C8836B4C147626FF43F940A3E6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GTMSessionFetcher; - target = E3A3FB14CD4ACD21565913CF4A4B097C /* GTMSessionFetcher */; - targetProxy = 5594F8524B33D04522B92DD863C070E3 /* PBXContainerItemProxy */; - }; - 51B67F78F62C73DCC52E93A4B1020E72 /* PBXTargetDependency */ = { + 460229A61F4A85F5D79B2B20AB902F35 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; - targetProxy = BC05A9D967DC5251290FC72F65B62686 /* PBXContainerItemProxy */; + targetProxy = 4264AED38BF41D5973129990A27A540B /* PBXContainerItemProxy */; }; - 580CE7BA9AFCFB3BE76760E03B9491DD /* PBXTargetDependency */ = { + 4A47EB9EE428FE8DE4B8D3C2750FAE79 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; - targetProxy = F2848F48DCD7D499A167970D0027F377 /* PBXContainerItemProxy */; + targetProxy = F9385BB2DC118909A75F3F5C363FB2FA /* PBXContainerItemProxy */; + }; + 4D2705A91EBEE1F6050A6442604CB2A2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNScreens; + target = 99FEE446172BA9A9D3C429193C87B775 /* RNScreens */; + targetProxy = 33D779B9B49082C990E65C37BCEF27F4 /* PBXContainerItemProxy */; + }; + 4E13829791687EF26AAD3436B1E38761 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-splash-screen"; + target = 0DABBD55913D3E7469399FF80333EA1E /* react-native-splash-screen */; + targetProxy = 69437501A8C8109A8CACDE3DAD285106 /* PBXContainerItemProxy */; }; 59054A7FA3AB60507B8236E0964559D0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -5367,11 +7081,17 @@ target = 586739D116442BA7FCD2EC0353EA0FA4 /* FirebaseInstanceID */; targetProxy = 30E4AFE91AFE993916F5FF5C06DD35DD /* PBXContainerItemProxy */; }; - 5F26C0B883D3555523250F1DDC658E79 /* PBXTargetDependency */ = { + 59D8E392C3C2CE95D0A7E4F165774DFA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Folly; - target = DF470A1028ED32C9E70DBDAA805F8802 /* Folly */; - targetProxy = 87CF346560B24E0F39599A79E8F91E44 /* PBXContainerItemProxy */; + name = RNDeviceInfo; + target = 80550EFCC9B14329B278C9CE06F8D916 /* RNDeviceInfo */; + targetProxy = 0A101293FA0973D9CCA7003574F59D72 /* PBXContainerItemProxy */; + }; + 5B0117EBF52EFAE00D18775EF53E4C30 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Crashlytics; + target = ABA9A411BB5A359862E5F1AA6238278E /* Crashlytics */; + targetProxy = 7E36F2B2549B43FDFDFE0529A266208C /* PBXContainerItemProxy */; }; 5FDFBD6CCE0D066C9CAC81B3BB271825 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -5379,6 +7099,12 @@ target = 7969F0F17682790DCAF63BC9AF2176ED /* GoogleUtilities */; targetProxy = 75709DA4236EE310812BED9AE5852B6C /* PBXContainerItemProxy */; }; + 621D56654E35237F674420DC791C7D67 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNImageCropPicker; + target = 0ACA345EAF80C8F41867C0E5928F88BA /* RNImageCropPicker */; + targetProxy = B91A0AB526E7AE67D83D85EA69EB781F /* PBXContainerItemProxy */; + }; 62609725AFE0040B619D312D29D0BB45 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; @@ -5403,29 +7129,34 @@ target = 1ABBF6F89787BBEDF49B4636ADB45587 /* FirebaseAnalytics */; targetProxy = C7B780F3B34321F634A645A383811CDE /* PBXContainerItemProxy */; }; - 6F2237D6A528EBC9F8987F0D1CFF2152 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNDeviceInfo; - target = BE8DE6BC4B9347A3FE72C52C9FAE8B4C /* RNDeviceInfo */; - targetProxy = 96719887109D9387FC492BBCBC15A0A3 /* PBXContainerItemProxy */; - }; 719CF049AEB9960AE8779693E1EFE7E9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 7969F0F17682790DCAF63BC9AF2176ED /* GoogleUtilities */; targetProxy = B05FDE7687B62296694D0BBA9546545E /* PBXContainerItemProxy */; }; - 74F41CFAEA880EDB28E6CEAF397DA733 /* PBXTargetDependency */ = { + 721B472423BEBC4474A559B872E6E4A4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = QBImagePickerController; - target = 928F6D091147C82DAB685010E23BA90B /* QBImagePickerController */; - targetProxy = D73FADA9406D1FBAAF34A98AF815B658 /* PBXContainerItemProxy */; + name = React; + targetProxy = 0E6E7586B03D663EB565E32D6B4AA510 /* PBXContainerItemProxy */; }; - 7A78CE184EABCAD6B3C0B3A8B5135B62 /* PBXTargetDependency */ = { + 78157F649969F32E3664348291365008 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = glog; - target = 29FC2A0EC130F2F2AF7AC9AE94A583B4 /* glog */; - targetProxy = 82D205C593BC9656666B80B677BD864E /* PBXContainerItemProxy */; + name = FirebaseABTesting; + target = 39E0403E3ACE39BC0D878D82FAB8F012 /* FirebaseABTesting */; + targetProxy = E69FEDC3D3E38942B94CDAC7AD59F7C4 /* PBXContainerItemProxy */; + }; + 7A7462F4156314E4AE652D5DF709860F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseAnalytics; + target = 1ABBF6F89787BBEDF49B4636ADB45587 /* FirebaseAnalytics */; + targetProxy = 97FED6762DBF83CB56550E5719088991 /* PBXContainerItemProxy */; + }; + 7F31608C8A86ABF0A14818722407F98A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCore; + target = 4412C5F689DD128EFB8F42F11C502D2C /* UMCore */; + targetProxy = 7880B3ECF0885AE6324D69FB3B8AE97B /* PBXContainerItemProxy */; }; 815248D0F2DBD89170D5E591539DF287 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -5433,51 +7164,40 @@ target = F1DE11E9221F196A8A9D3464F96A345A /* Protobuf */; targetProxy = 8133F53ED6CDC355BB2264E4DBA0BF96 /* PBXContainerItemProxy */; }; - 82104F7500317160A95F8097B8AA6DA6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleToolboxForMac; - target = 32F8EA730FE2005197F54338D2C236AC /* GoogleToolboxForMac */; - targetProxy = 55607F090267C22B4E11EAEBD923379A /* PBXContainerItemProxy */; - }; - 83B5E3D1A6112EE5B8CAACE9BB052F01 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - targetProxy = BA4A6168F2E40D2D1FD953CB7700F85D /* PBXContainerItemProxy */; - }; - 84ABD730CBE72FDD21C9668161E77CD3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = 1ABBF6F89787BBEDF49B4636ADB45587 /* FirebaseAnalytics */; - targetProxy = 2B8A7DF5B74DB781BBBA64EB96E56A17 /* PBXContainerItemProxy */; - }; - 87568C4A155C6FE7A4C315D5F199AC64 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "QBImagePickerController-QBImagePicker"; - target = 21D4CE3FA96D3BE5B8237D082505C188 /* QBImagePickerController-QBImagePicker */; - targetProxy = 221B7DA2A8C42C51C5102CFD7F21F0BA /* PBXContainerItemProxy */; - }; 8882760E90572404776E5D760A37F4EF /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = nanopb; target = 2543734D0A332B2588202904B99CC151 /* nanopb */; targetProxy = 33B78007BAC95CB937CF2DFE82E76C79 /* PBXContainerItemProxy */; }; + 88F4CBC37EDC22A18C73D6723A7C8552 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCore; + target = 4412C5F689DD128EFB8F42F11C502D2C /* UMCore */; + targetProxy = F694606F8A3B5D15625E633C00EB1AC8 /* PBXContainerItemProxy */; + }; 8C00E3FF0B5CEFE1A868AC9062D115FF /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; target = 29FC2A0EC130F2F2AF7AC9AE94A583B4 /* glog */; targetProxy = AADD210D1F940E270E559A5AE73B7D04 /* PBXContainerItemProxy */; }; - 8F48CF9C3CD881AEC1405F17EC3AF3AA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNImageCropPicker; - target = 19B86FE3A045FD3536FCD8DC39B415D3 /* RNImageCropPicker */; - targetProxy = D9498F25B2EDFDBE0DC80A5689FB82A4 /* PBXContainerItemProxy */; - }; - 8FA192134DD273CEC0E7532A015C13C0 /* PBXTargetDependency */ = { + 8C77AC59973A15BF055DD70B918D0425 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; - targetProxy = 37741C1C5AB21BAD1E3305A5671E7D7A /* PBXContainerItemProxy */; + targetProxy = 11E58C7A1C9939FA18BA11B76BD0791B /* PBXContainerItemProxy */; + }; + 8FAAEFB05E132240B0B963B7ABDB3A27 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXPermissions; + target = 5ED05858D3E3C1599A062FB1C45FE359 /* EXPermissions */; + targetProxy = C8E64F1F2FBEBFA4B059D35B1EEF2B4C /* PBXContainerItemProxy */; + }; + 902BB8686A0FE9AA3973C9B0A3563691 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMConstantsInterface; + target = D6CDBA4F567B018F442382D2520D6D27 /* UMConstantsInterface */; + targetProxy = A57FA5C40A1BE5F5C481358F3D88E137 /* PBXContainerItemProxy */; }; 904DE3584EB00D12608E1233E5B029A8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -5485,28 +7205,59 @@ target = 7969F0F17682790DCAF63BC9AF2176ED /* GoogleUtilities */; targetProxy = 5D4696B5DC0410EBB318096CDEA1B03B /* PBXContainerItemProxy */; }; + 90A6C00124A662B1850907EEF2B50812 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMConstantsInterface; + target = D6CDBA4F567B018F442382D2520D6D27 /* UMConstantsInterface */; + targetProxy = E9E0A2F87A1D25582F36E9E2611ECDBE /* PBXContainerItemProxy */; + }; 92C3989E553E6EC006EA46423878085E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 7969F0F17682790DCAF63BC9AF2176ED /* GoogleUtilities */; targetProxy = 94E9A5D5D73EADA398147912908A9311 /* PBXContainerItemProxy */; }; - 9F30F6D4E564C51989A55A6098470CA4 /* PBXTargetDependency */ = { + 954A84D7EDDF07D2678357B399D2274B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 7969F0F17682790DCAF63BC9AF2176ED /* GoogleUtilities */; - targetProxy = 2EE116F6C770D5147861DD22F11D0681 /* PBXContainerItemProxy */; + name = EXConstants; + target = 2F8CF410B0326B6DEB5A2CDA4E2A2D8B /* EXConstants */; + targetProxy = 3111D1F776E3E8F84BBAE7626ACF9468 /* PBXContainerItemProxy */; }; - A29FDA2CE6FFCFD7F136DAEA96FC32D0 /* PBXTargetDependency */ = { + 99A9CD54499C6108AB0CA60B6845D466 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Fabric; - target = D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */; - targetProxy = CA29ED922E3724930A52B5F2CC9FE789 /* PBXContainerItemProxy */; + name = DoubleConversion; + target = 1414ADEE4A421F3C5F9A229345CE3F61 /* DoubleConversion */; + targetProxy = F43545755CE3D8AAF1A22468AC1DA47D /* PBXContainerItemProxy */; }; - A45691EA58B6E574C2E13635985DCF61 /* PBXTargetDependency */ = { + 9BF8CEF107CF6EAD57176FA06FDCE2AB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - targetProxy = 0545D06269AACD0CA47D771CF60B0F00 /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 368FB7FBA34E3323BB42D13325551C95 /* FirebaseCore */; + targetProxy = 59AEE8D73B959701282CA1263A1A949C /* PBXContainerItemProxy */; + }; + 9C393894ABF178324E94F1BE6C4AAB63 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Firebase; + target = 97C8CD7E4179727E4F374CABD338D2BB /* Firebase */; + targetProxy = E679CABC1D66C8FF16C7B39FAF19E953 /* PBXContainerItemProxy */; + }; + 9D1026DB090BABD29385DBF37854FD8F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "QBImagePickerController-QBImagePicker"; + target = 88986567DE4DF8D6F1183EC5ABBE4218 /* QBImagePickerController-QBImagePicker */; + targetProxy = 03F67C71C1BCF7AB38C99B50F6A65CB4 /* PBXContainerItemProxy */; + }; + A2252316696E284099BFABDC59E5A27F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMBarCodeScannerInterface; + target = EF4A49EB410755DB3CEB3DAA961FFB19 /* UMBarCodeScannerInterface */; + targetProxy = 30B83DE9BC3E24DFA790E9A8DD211F6F /* PBXContainerItemProxy */; + }; + A2EB06F316C769EC04C1F542DDD6CEF8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMReactNativeAdapter; + target = BA4B096D64C945C50DBB633908388787 /* UMReactNativeAdapter */; + targetProxy = DE8E24A82187DC723D28DE1E90FB6AC0 /* PBXContainerItemProxy */; }; A5544C8F397EAF94A9618C8BDFE832B7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -5514,29 +7265,46 @@ target = 2543734D0A332B2588202904B99CC151 /* nanopb */; targetProxy = E60C05616D024BAA46966F3E6B4EDC1B /* PBXContainerItemProxy */; }; + A70623127511E913FEEE42F9D2464D59 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-webview"; + target = 24F769FA9B03BA265696664C50C70828 /* react-native-webview */; + targetProxy = 4B9A2556D195911252C20C2706806A71 /* PBXContainerItemProxy */; + }; A77F0B68567841AA6CC89B462D035C95 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; target = 368FB7FBA34E3323BB42D13325551C95 /* FirebaseCore */; targetProxy = 05F88362B58CA661718541D4C8D84A46 /* PBXContainerItemProxy */; }; - A7E5B4992DC5B43F34AE8FDA98041CC1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNScreens; - target = 0AFC585C520484341005ED314DD6F26D /* RNScreens */; - targetProxy = A5EA18562BAE13C9796465157D20887C /* PBXContainerItemProxy */; - }; - AC8213C965CC0B6892E812B40CF405E5 /* PBXTargetDependency */ = { + AC73E8D9C7A5C41F5D50451126B32040 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = QBImagePickerController; - target = 928F6D091147C82DAB685010E23BA90B /* QBImagePickerController */; - targetProxy = 4159CF65AEE99AA12261F3E3D5E5D7F2 /* PBXContainerItemProxy */; + target = 8A247007F4F0BF7C2DD4DD8A7FC765B1 /* QBImagePickerController */; + targetProxy = EE1597441C2BE2C9C67FC2536DDBB551 /* PBXContainerItemProxy */; }; - AD28CE542250990DF0E602CCA3B2F9FC /* PBXTargetDependency */ = { + ACB6A09D544541F9C92DAF79B781C6FB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = DoubleConversion; - target = 1414ADEE4A421F3C5F9A229345CE3F61 /* DoubleConversion */; - targetProxy = D516972C7248EB94C3523FECC8F43B02 /* PBXContainerItemProxy */; + name = FirebaseInstanceID; + target = 586739D116442BA7FCD2EC0353EA0FA4 /* FirebaseInstanceID */; + targetProxy = F761E12C6AD8B50A8AEED8F08F2A9909 /* PBXContainerItemProxy */; + }; + AD552445FE08A3C436741273F8D27D06 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + targetProxy = EECE9787B6622FB7DF4B626AF14AD3D8 /* PBXContainerItemProxy */; + }; + AFFB724A3269068F5A437D1FD442E77B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCore; + target = 4412C5F689DD128EFB8F42F11C502D2C /* UMCore */; + targetProxy = AB8863F7B37D57C169E621FF284054D1 /* PBXContainerItemProxy */; + }; + B45ECE57254214C6E23A3F10200B80C7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = yoga; + target = B7A9163CFC06AA914218608942A70B50 /* yoga */; + targetProxy = 1CC755C2CC7D7110C7BB131E9E87E2DB /* PBXContainerItemProxy */; }; BD2C22AF6121E6B72DFB98F8BBAB9A69 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -5544,17 +7312,11 @@ target = 66641B93FAF80FF325B2D7B4AD85056F /* boost-for-react-native */; targetProxy = EB266CA52E321F1A5BD9E62115470A38 /* PBXContainerItemProxy */; }; - BE91C8C4683D018320B1701A4268F504 /* PBXTargetDependency */ = { + BE9425443C7EC909A142F2631058D036 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleIDFASupport; - target = 7C36E7C600F8DE2BE1819059C80F2182 /* GoogleIDFASupport */; - targetProxy = ACE0C8F90E0997DB82D276BD7D191BC9 /* PBXContainerItemProxy */; - }; - BEA32859FF87767B50C4B47DCA6BB3DF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = yoga; - target = 10D172205FBF5536819F94D0AD56DE78 /* yoga */; - targetProxy = 0EE71388025283D337DDEAE1DAEAF7CC /* PBXContainerItemProxy */; + name = glog; + target = 29FC2A0EC130F2F2AF7AC9AE94A583B4 /* glog */; + targetProxy = 848B9359A4D6F254C446229A98E92037 /* PBXContainerItemProxy */; }; C1B980A7F0177B327C6A07EFF5A60013 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -5562,11 +7324,11 @@ target = E3A3FB14CD4ACD21565913CF4A4B097C /* GTMSessionFetcher */; targetProxy = A560693278F98FFD671DF28C1A701DFB /* PBXContainerItemProxy */; }; - C608C56CAA4EF15736C7199AF015DD08 /* PBXTargetDependency */ = { + C4E16E71B1E0ADD833EB93F09C1E323C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseABTesting; - target = 39E0403E3ACE39BC0D878D82FAB8F012 /* FirebaseABTesting */; - targetProxy = B02308BAF12B25193B0ADC5112A87C37 /* PBXContainerItemProxy */; + name = GoogleIDFASupport; + target = 7C36E7C600F8DE2BE1819059C80F2182 /* GoogleIDFASupport */; + targetProxy = 56E2A5F3ACCD8E382AD5CC8D2F3F450F /* PBXContainerItemProxy */; }; C83FC2C3E8CEC32DD8932E44896D7CFB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -5574,22 +7336,64 @@ target = 1414ADEE4A421F3C5F9A229345CE3F61 /* DoubleConversion */; targetProxy = CEE3627BDFC98BF4E34AB2269676FAFF /* PBXContainerItemProxy */; }; - C8D65277401A23C4E19B19A4F69D2842 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - targetProxy = DAE3D9937C5AEA59775DD33F7C612EA5 /* PBXContainerItemProxy */; - }; C9CEFEFAAAEDB8CD947737FA56C849D4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Fabric; target = D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */; targetProxy = D465047540D12FD9D95291AE82A76DB9 /* PBXContainerItemProxy */; }; - CD63972B4134F25B8E8A3E8CB486FED0 /* PBXTargetDependency */ = { + CCDE874751B238FB10A142545CB73799 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RSKImageCropper; - target = 111EE270AF30FB09FC9EB73638F2E16A /* RSKImageCropper */; - targetProxy = 21F171CC2DB6203D5358EEA10CC79569 /* PBXContainerItemProxy */; + name = UMFontInterface; + target = F285EFD8528706D9EB51D7540269B791 /* UMFontInterface */; + targetProxy = 399078C04D515EC69797A2FAF9D3B88A /* PBXContainerItemProxy */; + }; + CD439E956730DBA084BCDDBB019B0D1C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMTaskManagerInterface; + target = 3FCFE37F3115CF59C06A7F46C1F6C92A /* UMTaskManagerInterface */; + targetProxy = 867F7CA5E4D34156D61E0C13D4850E2D /* PBXContainerItemProxy */; + }; + CDFFE52ED1E44B2967EA58B021D26E6B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-orientation-locker"; + target = 3C9001F23F58850FCB7FAEFA0C72E507 /* react-native-orientation-locker */; + targetProxy = 63DB774D4FA9EE42B4CAD951CFCDA6C8 /* PBXContainerItemProxy */; + }; + CF3BE720017C950BC4B6E8F78A73C60A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + targetProxy = FC0E0CAF02AB8E4333B704330144D427 /* PBXContainerItemProxy */; + }; + D1993F5D9DD13C88FB0F8D8867A60FDF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXWebBrowser; + target = 240504C276270018DE05B3D0F038B1E5 /* EXWebBrowser */; + targetProxy = 8B1A21420B20243B742AF4A555F13D54 /* PBXContainerItemProxy */; + }; + D1FF767E91A9B97ADBFFACB01D29051A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXFileSystem; + target = 8F9FB30742F24E06348CA6BB7BE816B4 /* EXFileSystem */; + targetProxy = 81FCF1570B91167CA7DB3B02E3D3E0CD /* PBXContainerItemProxy */; + }; + D745E0D64D619779C130E77EC7CE79F5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXAppLoaderProvider; + target = F42432668A0F81BE898F1FEA0D6A83B7 /* EXAppLoaderProvider */; + targetProxy = 64789DC79A7E15D05A20B428CA16565B /* PBXContainerItemProxy */; + }; + DCB198CDCEF0D067DE1D58873F64D0F9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Folly; + target = DF470A1028ED32C9E70DBDAA805F8802 /* Folly */; + targetProxy = C97AA34E88570CC3AEF6B7B50B479805 /* PBXContainerItemProxy */; + }; + DFAFF56203EB894591E417203AFCCE50 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleAppMeasurement; + target = AB021401ADE9E1431240BBA948E7965E /* GoogleAppMeasurement */; + targetProxy = 63240E8EEA72621B43B1DC133E52685A /* PBXContainerItemProxy */; }; E2FBD41025C0CD2C30325C28D5CB7AC6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -5597,29 +7401,22 @@ target = 586739D116442BA7FCD2EC0353EA0FA4 /* FirebaseInstanceID */; targetProxy = 48B8A5D360038B198CB9ABDEC205C1F7 /* PBXContainerItemProxy */; }; - E6CEA59BA25823474019F81CD609CC35 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Protobuf; - target = F1DE11E9221F196A8A9D3464F96A345A /* Protobuf */; - targetProxy = 3DABC68FE6684D99C7CD71AB16B0EEC1 /* PBXContainerItemProxy */; - }; - E719B3D9BE82D836E5D1471138C38008 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Crashlytics; - target = ABA9A411BB5A359862E5F1AA6238278E /* Crashlytics */; - targetProxy = 570A54C4F60052B8EFEB0116752DB026 /* PBXContainerItemProxy */; - }; - EB8F128A1508B6D3F88C9E8B23414DBB /* PBXTargetDependency */ = { + E4090F97701EE27F379F9846BBEB0F67 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = nanopb; target = 2543734D0A332B2588202904B99CC151 /* nanopb */; - targetProxy = B7DB4A65C7496ACDC31C4E67585AAC44 /* PBXContainerItemProxy */; + targetProxy = 92B737EB261D896805118EF82D7A5349 /* PBXContainerItemProxy */; }; - F016C9A7AD465D4B2595107BD6AE906B /* PBXTargetDependency */ = { + E6EEC87DFD38AADDC38ABA62C8165C49 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-splash-screen"; - target = 57954C49E918563AF7054B31EACBAB93 /* react-native-splash-screen */; - targetProxy = 89E34E29502C44BA69D64D5478824EEC /* PBXContainerItemProxy */; + name = React; + targetProxy = F320BF3400D1E628728774CB8DED96EB /* PBXContainerItemProxy */; + }; + EB13383E77D35BB23DABCC6F16565CE4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFileSystemInterface; + target = 031F6220C2D49E4AD5F61FAA0ECADF64 /* UMFileSystemInterface */; + targetProxy = F39EA041A45BF69A4E6E78614B7A5D48 /* PBXContainerItemProxy */; }; F541B0BB5C228843BB87EB1868782C56 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -5627,38 +7424,27 @@ target = F1DE11E9221F196A8A9D3464F96A345A /* Protobuf */; targetProxy = 3D342107E8BB2E1AAA760A57543C5A06 /* PBXContainerItemProxy */; }; - F6764A16E5F9B54E1F7A8B214681D69C /* PBXTargetDependency */ = { + FBF22B08572B8004330FD47E0D07AC6F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 368FB7FBA34E3323BB42D13325551C95 /* FirebaseCore */; - targetProxy = E8B9963F832AFE8E2A5593B2555C7D89 /* PBXContainerItemProxy */; + name = UMCore; + target = 4412C5F689DD128EFB8F42F11C502D2C /* UMCore */; + targetProxy = BE0D9CA338918985910CFAB12661D90F /* PBXContainerItemProxy */; + }; + FCFBFABA86770F207C1E195D75FD5190 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = QBImagePickerController; + target = 8A247007F4F0BF7C2DD4DD8A7FC765B1 /* QBImagePickerController */; + targetProxy = 37B519CC86E1443CFD42904C9A455579 /* PBXContainerItemProxy */; + }; + FF684D0FC6B49662CAC11992F333F7B4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCore; + target = 4412C5F689DD128EFB8F42F11C502D2C /* UMCore */; + targetProxy = 5C18A82DEC1E4DFCD36BD4D17F0E9ED3 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ - 00B20AB0320FF6479C18363886DD4FC0 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 142940214879FB9B072E376B7620751E /* react-native-webview.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-webview/react-native-webview-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_webview; - PRODUCT_NAME = "react-native-webview"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; 014A207A97F0C6A93126D955F5325EE1 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 6D4F1380084C5CF876DBC28B169C3B82 /* Folly.xcconfig */; @@ -5682,6 +7468,21 @@ }; name = Debug; }; + 036F2868AC47228938B0CF03ED3506DA /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = CC79492F10C68D733950852842E2074E /* UMImageLoaderInterface.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 056C009C442A698606C063320C8BF25A /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = A00EC29B08CF617E218E21BB30A22296 /* Fabric.xcconfig */; @@ -5719,6 +7520,21 @@ }; name = Debug; }; + 0B30BB5B731F5757214EDD1246A97D4D /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DAE1F79C74E621124BCDC16841975A31 /* UMFaceDetectorInterface.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 0C78739B7F25FB17EE1F9D802091DB12 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = A044E0132DBBFC186CC1967069B89DDA /* nanopb.xcconfig */; @@ -5744,30 +7560,6 @@ }; name = Release; }; - 0F1BE876977A6707F34C2C9B44D3B589 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 495AF3D800175BD4B68CB72DFAC170DF /* react-native-orientation-locker.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-orientation-locker/react-native-orientation-locker-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_orientation_locker; - PRODUCT_NAME = "react-native-orientation-locker"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 1133C2D1B98ADF1CCB50633D37616F74 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = AC7124E4822DB66558352E10DD54CBFA /* GTMSessionFetcher.xcconfig */; @@ -5791,49 +7583,35 @@ }; name = Debug; }; - 16FC204DAC78BFA7BAD90BF15BDCF1E5 /* Debug */ = { + 116DD04455E1E1BA8C8FC4FE5091E82C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 931E1E88664BF29C0559B61CDF1BD5BA /* RSKImageCropper.xcconfig */; + baseConfigurationReference = 19F468ECED73EE466BAFBC96CAD74433 /* UMFileSystemInterface.xcconfig */; buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + 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/RSKImageCropper/RSKImageCropper-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RSKImageCropper; - PRODUCT_NAME = RSKImageCropper; - PUBLIC_HEADERS_FOLDER_PATH = ""; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - 179224206F36EA5E46EA060A1F8254AF /* Debug */ = { + 13C1590A3FB438506C49ACEE1D3DFBE6 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FF36BF4F706AA77F33A0FAC553A39934 /* Pods-RocketChatRN.debug.xcconfig */; + baseConfigurationReference = 636E9E7C4545EEAF5E9A4B8F99F8C16B /* UMSensorsInterface.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + 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 = 9.0; - MACH_O_TYPE = staticlib; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; - SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; 18226030D404434E1F689DA621C8BC2B /* Debug */ = { isa = XCBuildConfiguration; @@ -5848,773 +7626,7 @@ }; name = Debug; }; - 200CD2396E713A87F09DF2D0477FFC0C /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 53563E1385145D00720C7953AD9E0E74 /* Crashlytics.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 23D5BEBA41EB0C45D1EE5EB2F36ECBE2 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 53563E1385145D00720C7953AD9E0E74 /* Crashlytics.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 23E962D392779A57790E56703A2964AC /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = D9154A2A59EE836C6B4C8ABE26903A93 /* FirebaseInstanceID.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = FirebaseInstanceID; - PRODUCT_NAME = FirebaseInstanceID; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 258BB43E9254CBA29EA5233E0DE60FA9 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 167F23E91459E9C1B4C7525DC2B73D56 /* RNImageCropPicker.xcconfig */; - buildSettings = { - 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/RNImageCropPicker/RNImageCropPicker-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNImageCropPicker; - PRODUCT_NAME = RNImageCropPicker; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 2B0700AB98548866873D1B6D1A9C3F99 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 378AAB43F6447375572F48EAA16ACF04 /* FirebaseCore.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = FirebaseCore; - PRODUCT_NAME = FirebaseCore; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 2F804D193F84038AB9CA88312F62479E /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C9E29F269A06919AA1FD1E466BCF137C /* GoogleIDFASupport.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 319CFFE4A2612311284732EF37F35110 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 36BDCE6A03EBE2DE106F2E905C173FC2 /* RNDeviceInfo.xcconfig */; - buildSettings = { - 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/RNDeviceInfo/RNDeviceInfo-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNDeviceInfo; - PRODUCT_NAME = RNDeviceInfo; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 37567867305BC89AD0FBD447257E4895 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = D6CE75889A37BBAFA6619B2E2D0A9152 /* GoogleUtilities.xcconfig */; - buildSettings = { - 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/GoogleUtilities/GoogleUtilities-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = GoogleUtilities; - PRODUCT_NAME = GoogleUtilities; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 3F9893011771ABBFEAFD81AF1EA5926F /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 6D4F1380084C5CF876DBC28B169C3B82 /* Folly.xcconfig */; - buildSettings = { - 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/Folly/Folly-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = folly; - PRODUCT_NAME = Folly; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 408ADA4444D509BB1E3B7F87631D11C7 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 378AAB43F6447375572F48EAA16ACF04 /* FirebaseCore.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = FirebaseCore; - PRODUCT_NAME = FirebaseCore; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 40E4B5C9E39D2A84C21FE63191BC69DD /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 5A601E6330B922C4911EB6709D982A87 /* boost-for-react-native.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 430A223AB97555D1914309DC37429D33 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = D3697C3A80F55A1372F7514127AAE01A /* glog.xcconfig */; - buildSettings = { - 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/glog/glog-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = glog; - PRODUCT_NAME = glog; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 44023DAE7AE0CBD142F00375664FF928 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = AC8434B866014A6EFB365E99B4784657 /* yoga.xcconfig */; - buildSettings = { - 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/yoga/yoga-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = yoga; - PRODUCT_NAME = yoga; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 456682B469493AE0DCC9A0071B5529EF /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = D3697C3A80F55A1372F7514127AAE01A /* glog.xcconfig */; - buildSettings = { - 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/glog/glog-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = glog; - PRODUCT_NAME = glog; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 4574006F7B0394AAB7D47CB6CC077708 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 808D6DDACE2479D44956ECE70452EEDB /* FirebaseRemoteConfig.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 49360EE4EC682595562534B5EF87A9CE /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = AC8434B866014A6EFB365E99B4784657 /* yoga.xcconfig */; - buildSettings = { - 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/yoga/yoga-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = yoga; - PRODUCT_NAME = yoga; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 4AA17959E2D109FBFF806C320CAE502A /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 495AF3D800175BD4B68CB72DFAC170DF /* react-native-orientation-locker.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-orientation-locker/react-native-orientation-locker-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_orientation_locker; - PRODUCT_NAME = "react-native-orientation-locker"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 4F4036DA6E482BC5EE01DBFF9ACEB927 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = EB054FF8A5D97A01475935D8C8EF580E /* QBImagePickerController.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/QBImagePickerController"; - INFOPLIST_FILE = "Target Support Files/QBImagePickerController/ResourceBundle-QBImagePicker-QBImagePickerController-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - PRODUCT_NAME = QBImagePicker; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - 5151AC219790743E51C0CF242C3475EE /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = A044E0132DBBFC186CC1967069B89DDA /* nanopb.xcconfig */; - buildSettings = { - 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/nanopb/nanopb-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 4.3; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = nanopb; - PRODUCT_NAME = nanopb; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 51C97F8F9301F99650267AAF2C0D7D22 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C9E29F269A06919AA1FD1E466BCF137C /* GoogleIDFASupport.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 5470A48A275EBA435586FD3E1231075D /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 36BDCE6A03EBE2DE106F2E905C173FC2 /* RNDeviceInfo.xcconfig */; - buildSettings = { - 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/RNDeviceInfo/RNDeviceInfo-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNDeviceInfo; - PRODUCT_NAME = RNDeviceInfo; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 56B455F6A359341CB73B2A5F6C578694 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = CB151BF6B6F22A525E316E9CC21FBF6C /* Pods-RocketChatRN.release.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 9.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; - }; - 57AB0923263500619B1BB635FB897DB1 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 808D6DDACE2479D44956ECE70452EEDB /* FirebaseRemoteConfig.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 5A6F01E01976EC67F4416E24E6DE4A8A /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = EB054FF8A5D97A01475935D8C8EF580E /* QBImagePickerController.xcconfig */; - buildSettings = { - 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/QBImagePickerController/QBImagePickerController-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = QBImagePickerController; - PRODUCT_NAME = QBImagePickerController; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 5E3226F84289DE6ED0D0A0DC73556D4C /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 931E1E88664BF29C0559B61CDF1BD5BA /* RSKImageCropper.xcconfig */; - buildSettings = { - 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/RSKImageCropper/RSKImageCropper-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RSKImageCropper; - PRODUCT_NAME = RSKImageCropper; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 6505094E64DBC0E6638E1CEE80339AB6 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = EB054FF8A5D97A01475935D8C8EF580E /* QBImagePickerController.xcconfig */; - buildSettings = { - 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/QBImagePickerController/QBImagePickerController-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = QBImagePickerController; - PRODUCT_NAME = QBImagePickerController; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 662534C46861FF1C86B17E2251A33709 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B2CCC1A2B854A5AE761220034F5EFBF7 /* FirebaseAnalytics.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 6C26F05766BDE84CD9476FFC4F0C85EB /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 824CA65A50D94CA1CAE58408CB4B035F /* FirebaseABTesting.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 7B7E9D7FAB7E45B9F4ADF8DC4822703B /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = A00EC29B08CF617E218E21BB30A22296 /* Fabric.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 7EDF101C74DF619862132B17AAA29411 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 167F23E91459E9C1B4C7525DC2B73D56 /* RNImageCropPicker.xcconfig */; - buildSettings = { - 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/RNImageCropPicker/RNImageCropPicker-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNImageCropPicker; - PRODUCT_NAME = RNImageCropPicker; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 89177EE2EFA05CE0B14BB9A8620EFBE0 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 824CA65A50D94CA1CAE58408CB4B035F /* FirebaseABTesting.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 8DF93C63591B4A727DE4A97CFB43C7DC /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = EBE07153C75AA5C1C38348F1B3A27364 /* DoubleConversion.xcconfig */; - buildSettings = { - 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/DoubleConversion/DoubleConversion-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = DoubleConversion; - PRODUCT_NAME = DoubleConversion; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 8E0E603174B76F108D5182EB4FFD5BFE /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B8CE294D987D45655A14860086BE1365 /* GoogleAppMeasurement.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 8F17DC3A99F99FBAD606CE6963886315 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_ENABLE_OBJC_WEAK = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "POD_CONFIGURATION_RELEASE=1", - "$(inherited)", - ); - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - MTL_ENABLE_DEBUG_INFO = NO; - MTL_FAST_MATH = YES; - PRODUCT_NAME = "$(TARGET_NAME)"; - STRIP_INSTALLED_PRODUCT = NO; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; - SWIFT_VERSION = 5.0; - SYMROOT = "${SRCROOT}/../build"; - }; - name = Release; - }; - 8FED4CCB30525A2CB7467E0DAC2A8799 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 2ED73F696CD986B8483EF549CD502B8A /* Protobuf.xcconfig */; - buildSettings = { - 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/Protobuf/Protobuf-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = Protobuf; - PRODUCT_NAME = Protobuf; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 90BE1D7AA42A3833A1CCC6BA7DA3DB38 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E8AEFB1150634D9928D55650AD9D9BB2 /* RNScreens.xcconfig */; - buildSettings = { - 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/RNScreens/RNScreens-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNScreens; - PRODUCT_NAME = RNScreens; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 90D00C1381B64E10ED224DB27D232217 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B8CE294D987D45655A14860086BE1365 /* GoogleAppMeasurement.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 916E0404255105F480DC4950B7625F7A /* Debug */ = { + 196DFA3E4A09A28224918543529A1885 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; @@ -6665,7 +7677,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; ONLY_ACTIVE_ARCH = YES; @@ -6678,6 +7690,1101 @@ }; name = Debug; }; + 1C8606BF4E6EF908F5BAA29D6E73197A /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F267446490FA8DA114D5B34CBB45CC9E /* EXPermissions.xcconfig */; + buildSettings = { + 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/EXPermissions/EXPermissions-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = EXPermissions; + PRODUCT_NAME = EXPermissions; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 1DD88038036D0F6BF936E2DF900AB0A9 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FCF67B474FD6C82910218CA6951D04E6 /* RNDeviceInfo.xcconfig */; + buildSettings = { + 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/RNDeviceInfo/RNDeviceInfo-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNDeviceInfo; + PRODUCT_NAME = RNDeviceInfo; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 200CD2396E713A87F09DF2D0477FFC0C /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 53563E1385145D00720C7953AD9E0E74 /* Crashlytics.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 7.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 204A751F561EFD9E1F672A7916112FD9 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = CC79492F10C68D733950852842E2074E /* UMImageLoaderInterface.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 23D5BEBA41EB0C45D1EE5EB2F36ECBE2 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 53563E1385145D00720C7953AD9E0E74 /* Crashlytics.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 7.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 23E962D392779A57790E56703A2964AC /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D9154A2A59EE836C6B4C8ABE26903A93 /* FirebaseInstanceID.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = FirebaseInstanceID; + PRODUCT_NAME = FirebaseInstanceID; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 287025C0572F219F56FB752EC2B035B1 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 637CAE97AF4E3BD9F5116ADB7395BEDA /* react-native-webview.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-webview/react-native-webview-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_webview; + PRODUCT_NAME = "react-native-webview"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 2B0700AB98548866873D1B6D1A9C3F99 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 378AAB43F6447375572F48EAA16ACF04 /* FirebaseCore.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = FirebaseCore; + PRODUCT_NAME = FirebaseCore; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 2F804D193F84038AB9CA88312F62479E /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C9E29F269A06919AA1FD1E466BCF137C /* GoogleIDFASupport.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 3179CD362597796ADDB77FEA72C0A86A /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F117947FDCBF46D936DE38C848DD9260 /* UMCameraInterface.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 37567867305BC89AD0FBD447257E4895 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D6CE75889A37BBAFA6619B2E2D0A9152 /* GoogleUtilities.xcconfig */; + buildSettings = { + 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/GoogleUtilities/GoogleUtilities-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = GoogleUtilities; + PRODUCT_NAME = GoogleUtilities; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 3AAD750723922ECE803373BC18D1C678 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DAE1F79C74E621124BCDC16841975A31 /* UMFaceDetectorInterface.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 3F9893011771ABBFEAFD81AF1EA5926F /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6D4F1380084C5CF876DBC28B169C3B82 /* Folly.xcconfig */; + buildSettings = { + 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/Folly/Folly-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = folly; + PRODUCT_NAME = Folly; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 4075298D788F900817EB942FFF5F8D06 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 263A175F8122E3AEB637230C1BCB3C11 /* RNImageCropPicker.xcconfig */; + buildSettings = { + 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/RNImageCropPicker/RNImageCropPicker-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNImageCropPicker; + PRODUCT_NAME = RNImageCropPicker; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 408ADA4444D509BB1E3B7F87631D11C7 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 378AAB43F6447375572F48EAA16ACF04 /* FirebaseCore.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = FirebaseCore; + PRODUCT_NAME = FirebaseCore; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 40E4B5C9E39D2A84C21FE63191BC69DD /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 5A601E6330B922C4911EB6709D982A87 /* boost-for-react-native.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 42C1C6C6538755D689F6ADC9ECFDDDF6 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 01EF4CD4ED20556FD7894D5A97740BEF /* UMBarCodeScannerInterface.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 430A223AB97555D1914309DC37429D33 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D3697C3A80F55A1372F7514127AAE01A /* glog.xcconfig */; + buildSettings = { + 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/glog/glog-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = glog; + PRODUCT_NAME = glog; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 456682B469493AE0DCC9A0071B5529EF /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D3697C3A80F55A1372F7514127AAE01A /* glog.xcconfig */; + buildSettings = { + 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/glog/glog-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = glog; + PRODUCT_NAME = glog; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 4574006F7B0394AAB7D47CB6CC077708 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 808D6DDACE2479D44956ECE70452EEDB /* FirebaseRemoteConfig.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 458DFB50B9C7BFD244D3DF62123992B5 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B14901E39FDB13489A437EEC07959233 /* EXAppLoaderProvider.xcconfig */; + buildSettings = { + 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/EXAppLoaderProvider/EXAppLoaderProvider-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = EXAppLoaderProvider; + PRODUCT_NAME = EXAppLoaderProvider; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 468FCD38F5E820819A520FE30227E559 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = EB054FF8A5D97A01475935D8C8EF580E /* QBImagePickerController.xcconfig */; + buildSettings = { + 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/QBImagePickerController/QBImagePickerController-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = QBImagePickerController; + PRODUCT_NAME = QBImagePickerController; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 49081121E9D393ECEE8A829BD82015D3 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 01EF4CD4ED20556FD7894D5A97740BEF /* UMBarCodeScannerInterface.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 4A8804DCACD355A73487EC0BC64A88CC /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8A8B63C3C3E9B008F60DB8D49B691793 /* UMConstantsInterface.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 4B2BB05B538EB6FE5878292C8F3FA203 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6D2E0E8B2C2AF5062A4F72C4175E115E /* UMPermissionsInterface.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 4E6BCD26BFD2562EF801356564832C73 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 19F468ECED73EE466BAFBC96CAD74433 /* UMFileSystemInterface.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 514556A671B9B290CDECF2779B3577FE /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 637CAE97AF4E3BD9F5116ADB7395BEDA /* react-native-webview.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-webview/react-native-webview-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_webview; + PRODUCT_NAME = "react-native-webview"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 5151AC219790743E51C0CF242C3475EE /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = A044E0132DBBFC186CC1967069B89DDA /* nanopb.xcconfig */; + buildSettings = { + 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/nanopb/nanopb-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 4.3; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = nanopb; + PRODUCT_NAME = nanopb; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 51C97F8F9301F99650267AAF2C0D7D22 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C9E29F269A06919AA1FD1E466BCF137C /* GoogleIDFASupport.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 523E81D68392618ACF57360560532BFF /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C7B63CE840909FCBB17155958D8928D5 /* UMReactNativeAdapter.xcconfig */; + buildSettings = { + 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/UMReactNativeAdapter/UMReactNativeAdapter-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = UMReactNativeAdapter; + PRODUCT_NAME = UMReactNativeAdapter; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 57AB0923263500619B1BB635FB897DB1 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 808D6DDACE2479D44956ECE70452EEDB /* FirebaseRemoteConfig.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 5B210036ABA3A023173C5E43C77450E5 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F117947FDCBF46D936DE38C848DD9260 /* UMCameraInterface.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 5DFD03D7C55CDFA43FC793A2C425E56E /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 4CDD0F63AC79E800DC98A2459434B926 /* EXFileSystem.xcconfig */; + buildSettings = { + 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/EXFileSystem/EXFileSystem-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = EXFileSystem; + PRODUCT_NAME = EXFileSystem; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 662534C46861FF1C86B17E2251A33709 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B2CCC1A2B854A5AE761220034F5EFBF7 /* FirebaseAnalytics.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 668E75BDB9C04E8B0E599AD796D750D4 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2B78865D53A81FB2F6E1D3C6A4E1FDE8 /* yoga.xcconfig */; + buildSettings = { + 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/yoga/yoga-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = yoga; + PRODUCT_NAME = yoga; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 6B12A26F53B37A8A0AEA7C236E964DB6 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 853F0AA59EC46DDAB5C2D3047930FDAD /* EXConstants.xcconfig */; + buildSettings = { + 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/EXConstants/EXConstants-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = EXConstants; + PRODUCT_NAME = EXConstants; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 6C20551DC921D6AA536DCF59A12890BA /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 63E8726393D906F3550C9EAF21B73214 /* react-native-orientation-locker.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-orientation-locker/react-native-orientation-locker-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_orientation_locker; + PRODUCT_NAME = "react-native-orientation-locker"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 6C26F05766BDE84CD9476FFC4F0C85EB /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 824CA65A50D94CA1CAE58408CB4B035F /* FirebaseABTesting.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 6E72336AD38780C89F6C04EE36D44734 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F18AEA147687945A46A8F74C1DA453F6 /* UMFontInterface.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 725C485C45E98F93D2A4067C610CE240 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F18AEA147687945A46A8F74C1DA453F6 /* UMFontInterface.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 78EB8FC0CFE60181F91B292A0724F745 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FCF67B474FD6C82910218CA6951D04E6 /* RNDeviceInfo.xcconfig */; + buildSettings = { + 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/RNDeviceInfo/RNDeviceInfo-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNDeviceInfo; + PRODUCT_NAME = RNDeviceInfo; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 7A1A2992DCDF44B8A1A9B692068EA1CD /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FCA8325578A3ADCBD85ACA8AF477EC2A /* EXWebBrowser.xcconfig */; + buildSettings = { + 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/EXWebBrowser/EXWebBrowser-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = EXWebBrowser; + PRODUCT_NAME = EXWebBrowser; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 7AE529953632FC36A3B99268766784E6 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = EB054FF8A5D97A01475935D8C8EF580E /* QBImagePickerController.xcconfig */; + buildSettings = { + 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/QBImagePickerController/QBImagePickerController-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = QBImagePickerController; + PRODUCT_NAME = QBImagePickerController; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 7B7E9D7FAB7E45B9F4ADF8DC4822703B /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = A00EC29B08CF617E218E21BB30A22296 /* Fabric.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 7.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 7CA5B14DEEEAAAE3A29DEF19951F0187 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0B7455BDD0D3F7C4DC7CD1786044042C /* UMCore.xcconfig */; + buildSettings = { + 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/UMCore/UMCore-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = UMCore; + PRODUCT_NAME = UMCore; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 807ADC5EB1EDCBB710CF57C49E78E4A2 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 4423B01053400EB5AA18B2C1AEB6124B /* react-native-splash-screen.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-splash-screen/react-native-splash-screen-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 7.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_splash_screen; + PRODUCT_NAME = "react-native-splash-screen"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 80C0B87BAE2B8E29B3BC313A2A65769F /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B14901E39FDB13489A437EEC07959233 /* EXAppLoaderProvider.xcconfig */; + buildSettings = { + 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/EXAppLoaderProvider/EXAppLoaderProvider-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = EXAppLoaderProvider; + PRODUCT_NAME = EXAppLoaderProvider; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 8278BDEF4A7700CC8610F93548D587D7 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2B78865D53A81FB2F6E1D3C6A4E1FDE8 /* yoga.xcconfig */; + buildSettings = { + 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/yoga/yoga-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = yoga; + PRODUCT_NAME = yoga; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 82AEE51FE241D8A83212385F1F553BD8 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 4423B01053400EB5AA18B2C1AEB6124B /* react-native-splash-screen.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-splash-screen/react-native-splash-screen-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 7.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_splash_screen; + PRODUCT_NAME = "react-native-splash-screen"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 89177EE2EFA05CE0B14BB9A8620EFBE0 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 824CA65A50D94CA1CAE58408CB4B035F /* FirebaseABTesting.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 8D2503ADA0CD5B8003F93339087421B8 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 4CDD0F63AC79E800DC98A2459434B926 /* EXFileSystem.xcconfig */; + buildSettings = { + 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/EXFileSystem/EXFileSystem-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = EXFileSystem; + PRODUCT_NAME = EXFileSystem; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 8DF93C63591B4A727DE4A97CFB43C7DC /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = EBE07153C75AA5C1C38348F1B3A27364 /* DoubleConversion.xcconfig */; + buildSettings = { + 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/DoubleConversion/DoubleConversion-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = DoubleConversion; + PRODUCT_NAME = DoubleConversion; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 8E0E603174B76F108D5182EB4FFD5BFE /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B8CE294D987D45655A14860086BE1365 /* GoogleAppMeasurement.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 8FED4CCB30525A2CB7467E0DAC2A8799 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2ED73F696CD986B8483EF549CD502B8A /* Protobuf.xcconfig */; + buildSettings = { + 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/Protobuf/Protobuf-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 7.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = Protobuf; + PRODUCT_NAME = Protobuf; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 90D00C1381B64E10ED224DB27D232217 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B8CE294D987D45655A14860086BE1365 /* GoogleAppMeasurement.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 91F3A9CC7915838C262E8A2BAA158A89 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8FC389D054A6997C92405D2AC6F438F0 /* RNScreens.xcconfig */; + buildSettings = { + 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/RNScreens/RNScreens-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 7.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNScreens; + PRODUCT_NAME = RNScreens; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 94538DC1F52A4DC061A416D9745641F7 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 2F33FE55A531ACD9F959B3E74F720F24 /* FirebasePerformance.xcconfig */; @@ -6692,6 +8799,29 @@ }; name = Release; }; + 95705E6E57A288BF0544AA6206387E8D /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 931E1E88664BF29C0559B61CDF1BD5BA /* RSKImageCropper.xcconfig */; + buildSettings = { + 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/RSKImageCropper/RSKImageCropper-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RSKImageCropper; + PRODUCT_NAME = RSKImageCropper; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 95A5E0105B63F9C3D13FF2B55ACADC0A /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 2ED73F696CD986B8483EF549CD502B8A /* Protobuf.xcconfig */; @@ -6776,6 +8906,30 @@ }; name = Debug; }; + 9DA13223533DC4F4227E68E00463DA74 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 63E8726393D906F3550C9EAF21B73214 /* react-native-orientation-locker.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-orientation-locker/react-native-orientation-locker-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_orientation_locker; + PRODUCT_NAME = "react-native-orientation-locker"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 9FFDFB3D1B4CCB092B41BC84836F7762 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = D9154A2A59EE836C6B4C8ABE26903A93 /* FirebaseInstanceID.xcconfig */; @@ -6812,21 +8966,102 @@ }; name = Release; }; - A9933AAF0B86C8822487C37AFDB3B032 /* Debug */ = { + A49012AA9AE58744005F4F812FBD857D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EB054FF8A5D97A01475935D8C8EF580E /* QBImagePickerController.xcconfig */; + baseConfigurationReference = 636E9E7C4545EEAF5E9A4B8F99F8C16B /* UMSensorsInterface.xcconfig */; buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/QBImagePickerController"; - INFOPLIST_FILE = "Target Support Files/QBImagePickerController/ResourceBundle-QBImagePicker-QBImagePickerController-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - PRODUCT_NAME = QBImagePicker; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + AC9C303DF233F20C065C17752A69309C /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = CB151BF6B6F22A525E316E9CC21FBF6C /* Pods-RocketChatRN.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = 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"; - WRAPPER_EXTENSION = bundle; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; + }; + B01D14FDC83DCF9D4BE53066BEA96D05 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREPROCESSOR_DEFINITIONS = ( + "POD_CONFIGURATION_RELEASE=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; + STRIP_INSTALLED_PRODUCT = NO; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_VERSION = 5.0; + SYMROOT = "${SRCROOT}/../build"; + }; + name = Release; }; BAD185FC4ADC5361D9A178279A515607 /* Debug */ = { isa = XCBuildConfiguration; @@ -6874,6 +9109,31 @@ }; name = Debug; }; + BC218C2A14D7F9749C095CCFD4F611ED /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0B7455BDD0D3F7C4DC7CD1786044042C /* UMCore.xcconfig */; + buildSettings = { + 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/UMCore/UMCore-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = UMCore; + PRODUCT_NAME = UMCore; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; BCED374361B9387A457B9F7B3685F9FE /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 5A601E6330B922C4911EB6709D982A87 /* boost-for-react-native.xcconfig */; @@ -6887,29 +9147,43 @@ }; name = Debug; }; - C11248EEC21FCCF110B2B200D2BEF660 /* Release */ = { + C2C6610EF910D00DF43A4BA88AEE28CD /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 142940214879FB9B072E376B7620751E /* react-native-webview.xcconfig */; + baseConfigurationReference = C7B63CE840909FCBB17155958D8928D5 /* UMReactNativeAdapter.xcconfig */; buildSettings = { + 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/react-native-webview/react-native-webview-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; + GCC_PREFIX_HEADER = "Target Support Files/UMReactNativeAdapter/UMReactNativeAdapter-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_webview; - PRODUCT_NAME = "react-native-webview"; + PRODUCT_MODULE_NAME = UMReactNativeAdapter; + PRODUCT_NAME = UMReactNativeAdapter; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; + name = Debug; + }; + C7062C626C1EACE06427B3F480DAD082 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8A8B63C3C3E9B008F60DB8D49B691793 /* UMConstantsInterface.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; }; CB29CAE45A745050ED5251BE6F68B166 /* Release */ = { isa = XCBuildConfiguration; @@ -6925,9 +9199,226 @@ }; name = Release; }; - CC24728FCE8BA8982E5C1DBB67BFCA24 /* Release */ = { + D1DB0A54D32D6019590ED542D986592A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E8AEFB1150634D9928D55650AD9D9BB2 /* RNScreens.xcconfig */; + baseConfigurationReference = 853F0AA59EC46DDAB5C2D3047930FDAD /* EXConstants.xcconfig */; + buildSettings = { + 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/EXConstants/EXConstants-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = EXConstants; + PRODUCT_NAME = EXConstants; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + DF3EDDB35E58107086C15B401AD72ACF /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = EB054FF8A5D97A01475935D8C8EF580E /* QBImagePickerController.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "iPhone Developer"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/QBImagePickerController"; + INFOPLIST_FILE = "Target Support Files/QBImagePickerController/ResourceBundle-QBImagePicker-QBImagePickerController-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + PRODUCT_NAME = QBImagePicker; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + E27697C1EB8064490E395645DDE436E9 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 32B24EADC92EA0C4E9D26F18D6C42B3A /* UMTaskManagerInterface.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + E62F6174B6589BFDE958A843DE568DFC /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 32B24EADC92EA0C4E9D26F18D6C42B3A /* UMTaskManagerInterface.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + EBF034A097009DA705B0ED4F266E2F52 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 931E1E88664BF29C0559B61CDF1BD5BA /* RSKImageCropper.xcconfig */; + buildSettings = { + 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/RSKImageCropper/RSKImageCropper-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RSKImageCropper; + PRODUCT_NAME = RSKImageCropper; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + F2A55B011BC38D7E4FB64E630FB5AE10 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 263A175F8122E3AEB637230C1BCB3C11 /* RNImageCropPicker.xcconfig */; + buildSettings = { + 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/RNImageCropPicker/RNImageCropPicker-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNImageCropPicker; + PRODUCT_NAME = RNImageCropPicker; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + F3CFAECD7BD5B6FCA4FCFD353AEB8BD1 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = EB054FF8A5D97A01475935D8C8EF580E /* QBImagePickerController.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "iPhone Developer"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/QBImagePickerController"; + INFOPLIST_FILE = "Target Support Files/QBImagePickerController/ResourceBundle-QBImagePicker-QBImagePickerController-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + PRODUCT_NAME = QBImagePicker; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + F3F94DBACD2700053FDFC076D3C11D39 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FF36BF4F706AA77F33A0FAC553A39934 /* Pods-RocketChatRN.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = 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; + }; + FA2F95C9F876AF9A6BB216332B991CF2 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FCA8325578A3ADCBD85ACA8AF477EC2A /* EXWebBrowser.xcconfig */; + buildSettings = { + 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/EXWebBrowser/EXWebBrowser-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = EXWebBrowser; + PRODUCT_NAME = EXWebBrowser; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + FC425346B597C5B1E88C183830F09539 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F267446490FA8DA114D5B34CBB45CC9E /* EXPermissions.xcconfig */; + buildSettings = { + 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/EXPermissions/EXPermissions-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = EXPermissions; + PRODUCT_NAME = EXPermissions; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + FEA78C29A9EF0705F7CC5E722CB2A155 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6D2E0E8B2C2AF5062A4F72C4175E115E /* UMPermissionsInterface.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + FF5E87DBEEC450367A47CCDAB919E72F /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8FC389D054A6997C92405D2AC6F438F0 /* RNScreens.xcconfig */; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -6949,56 +9440,45 @@ }; name = Release; }; - EBCD682A0B65F2DAD746E1A27D43E308 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 92F7EE09869EE82AEF4C8BBF75990045 /* react-native-splash-screen.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-splash-screen/react-native-splash-screen-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_splash_screen; - PRODUCT_NAME = "react-native-splash-screen"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - FC9E150EB587E6912C64F5E6D6430BE3 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 92F7EE09869EE82AEF4C8BBF75990045 /* react-native-splash-screen.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-splash-screen/react-native-splash-screen-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_splash_screen; - PRODUCT_NAME = "react-native-splash-screen"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ + 03160BB405EBDB90E0A91F63D79DBB7E /* Build configuration list for PBXNativeTarget "RSKImageCropper" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 95705E6E57A288BF0544AA6206387E8D /* Debug */, + EBF034A097009DA705B0ED4F266E2F52 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 0AEE3B884AE65D5E5F077CCD06AD8643 /* Build configuration list for PBXAggregateTarget "UMFileSystemInterface" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 4E6BCD26BFD2562EF801356564832C73 /* Debug */, + 116DD04455E1E1BA8C8FC4FE5091E82C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 0B32AE3FDA4C897E6FBF82663DF0F0A6 /* Build configuration list for PBXNativeTarget "react-native-splash-screen" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 82AEE51FE241D8A83212385F1F553BD8 /* Debug */, + 807ADC5EB1EDCBB710CF57C49E78E4A2 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 126AE8970754A6BA5FE9DA02CA010B2A /* Build configuration list for PBXNativeTarget "EXFileSystem" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 8D2503ADA0CD5B8003F93339087421B8 /* Debug */, + 5DFD03D7C55CDFA43FC793A2C425E56E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 13B185864087F75D556AC109B2D70BF7 /* Build configuration list for PBXAggregateTarget "Fabric" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -7026,6 +9506,24 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 1534B279F029732F6F068F9DCBC7244D /* Build configuration list for PBXNativeTarget "RNScreens" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 91F3A9CC7915838C262E8A2BAA158A89 /* Debug */, + FF5E87DBEEC450367A47CCDAB919E72F /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 1C32006CC07DA731A4A3EB74DE490502 /* Build configuration list for PBXNativeTarget "EXAppLoaderProvider" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 80C0B87BAE2B8E29B3BC313A2A65769F /* Debug */, + 458DFB50B9C7BFD244D3DF62123992B5 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 2814D5F6B46466474CE6DD5CE093DDB4 /* Build configuration list for PBXAggregateTarget "GoogleIDFASupport" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -7044,42 +9542,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 33C74750FD26131EF4C1C417BC1AFD2B /* Build configuration list for PBXNativeTarget "react-native-webview" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 00B20AB0320FF6479C18363886DD4FC0 /* Debug */, - C11248EEC21FCCF110B2B200D2BEF660 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 343CE8D9175DDFFDFA876EC429096B2F /* Build configuration list for PBXNativeTarget "RNImageCropPicker" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 258BB43E9254CBA29EA5233E0DE60FA9 /* Debug */, - 7EDF101C74DF619862132B17AAA29411 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 36799555636DDD7D02CD009A2C1F784C /* Build configuration list for PBXNativeTarget "RSKImageCropper" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 16FC204DAC78BFA7BAD90BF15BDCF1E5 /* Debug */, - 5E3226F84289DE6ED0D0A0DC73556D4C /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 380DCC218518FC399C5243294EBEAEEB /* Build configuration list for PBXNativeTarget "react-native-splash-screen" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - EBCD682A0B65F2DAD746E1A27D43E308 /* Debug */, - FC9E150EB587E6912C64F5E6D6430BE3 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 38EC704BA10E3FB0DC5FB8DF2FA59187 /* Build configuration list for PBXNativeTarget "GoogleToolboxForMac" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -7107,11 +9569,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 44B1206A4CD67DBEE02778F61B0F0995 /* Build configuration list for PBXAggregateTarget "UMFaceDetectorInterface" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 3AAD750723922ECE803373BC18D1C678 /* Debug */, + 0B30BB5B731F5757214EDD1246A97D4D /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { isa = XCConfigurationList; buildConfigurations = ( - 916E0404255105F480DC4950B7625F7A /* Debug */, - 8F17DC3A99F99FBAD606CE6963886315 /* Release */, + 196DFA3E4A09A28224918543529A1885 /* Debug */, + B01D14FDC83DCF9D4BE53066BEA96D05 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -7125,6 +9596,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 51C66BBB4BF416CDA4D6EB626E21DA79 /* Build configuration list for PBXAggregateTarget "UMConstantsInterface" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C7062C626C1EACE06427B3F480DAD082 /* Debug */, + 4A8804DCACD355A73487EC0BC64A88CC /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 5AE3722DD39C3B2C37D89B1AC2A0A4C0 /* Build configuration list for PBXAggregateTarget "boost-for-react-native" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -7152,6 +9632,42 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 6938A94AF739B9819D20E572908D3D5E /* Build configuration list for PBXNativeTarget "EXPermissions" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FC425346B597C5B1E88C183830F09539 /* Debug */, + 1C8606BF4E6EF908F5BAA29D6E73197A /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 74566EA55AFBA560F2ECF92B9E8233D3 /* Build configuration list for PBXAggregateTarget "UMPermissionsInterface" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FEA78C29A9EF0705F7CC5E722CB2A155 /* Debug */, + 4B2BB05B538EB6FE5878292C8F3FA203 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 7E752EC516A9C7A3CD6B251DE46C6992 /* Build configuration list for PBXNativeTarget "yoga" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 8278BDEF4A7700CC8610F93548D587D7 /* Debug */, + 668E75BDB9C04E8B0E599AD796D750D4 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 8BB472139D3ECDA53A44FD1DBBB24808 /* Build configuration list for PBXNativeTarget "EXConstants" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 6B12A26F53B37A8A0AEA7C236E964DB6 /* Debug */, + D1DB0A54D32D6019590ED542D986592A /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 8D737EA61FBFEFB85394C3D203C4252A /* Build configuration list for PBXAggregateTarget "Firebase" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -7161,24 +9677,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 906A82087D5966DC4902543B44F027E8 /* Build configuration list for PBXNativeTarget "QBImagePickerController-QBImagePicker" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - A9933AAF0B86C8822487C37AFDB3B032 /* Debug */, - 4F4036DA6E482BC5EE01DBFF9ACEB927 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 91C7068D46AC6DBEE4998389AE685A6B /* Build configuration list for PBXNativeTarget "QBImagePickerController" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 5A6F01E01976EC67F4416E24E6DE4A8A /* Debug */, - 6505094E64DBC0E6638E1CEE80339AB6 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 9811B54698490F73C0B6CC6E1889626F /* Build configuration list for PBXNativeTarget "Folly" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -7197,20 +9695,92 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - CACBFCE2137E378F83096124F0915208 /* Build configuration list for PBXNativeTarget "react-native-orientation-locker" */ = { + A67C7184E2C5B89BECADE830E1024B7C /* Build configuration list for PBXAggregateTarget "UMBarCodeScannerInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - 4AA17959E2D109FBFF806C320CAE502A /* Debug */, - 0F1BE876977A6707F34C2C9B44D3B589 /* Release */, + 49081121E9D393ECEE8A829BD82015D3 /* Debug */, + 42C1C6C6538755D689F6ADC9ECFDDDF6 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - DCD9B94B08D39C5F2343CA2487FE8144 /* Build configuration list for PBXNativeTarget "RNScreens" */ = { + ACDC5CC6540B559FEDB07A648B1076B7 /* Build configuration list for PBXNativeTarget "react-native-orientation-locker" */ = { isa = XCConfigurationList; buildConfigurations = ( - 90BE1D7AA42A3833A1CCC6BA7DA3DB38 /* Debug */, - CC24728FCE8BA8982E5C1DBB67BFCA24 /* Release */, + 6C20551DC921D6AA536DCF59A12890BA /* Debug */, + 9DA13223533DC4F4227E68E00463DA74 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + B083B49949D80F2794686649D56D0AC5 /* Build configuration list for PBXNativeTarget "QBImagePickerController-QBImagePicker" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + F3CFAECD7BD5B6FCA4FCFD353AEB8BD1 /* Debug */, + DF3EDDB35E58107086C15B401AD72ACF /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + BC40F95231AB52A6F3F3B7448F6EB9A2 /* Build configuration list for PBXNativeTarget "RNImageCropPicker" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + F2A55B011BC38D7E4FB64E630FB5AE10 /* Debug */, + 4075298D788F900817EB942FFF5F8D06 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + BD8F156CD9D3A40D4355F50B38D96DE1 /* Build configuration list for PBXNativeTarget "QBImagePickerController" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 7AE529953632FC36A3B99268766784E6 /* Debug */, + 468FCD38F5E820819A520FE30227E559 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + CB97C076225DC55B9B4D746BCDD41E96 /* Build configuration list for PBXNativeTarget "UMCore" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 7CA5B14DEEEAAAE3A29DEF19951F0187 /* Debug */, + BC218C2A14D7F9749C095CCFD4F611ED /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + CC3B8958A2965669C0A321A46414DD85 /* Build configuration list for PBXNativeTarget "EXWebBrowser" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FA2F95C9F876AF9A6BB216332B991CF2 /* Debug */, + 7A1A2992DCDF44B8A1A9B692068EA1CD /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + D00BCB6B5F7A81292C2131C476B1FDFA /* Build configuration list for PBXNativeTarget "react-native-webview" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 514556A671B9B290CDECF2779B3577FE /* Debug */, + 287025C0572F219F56FB752EC2B035B1 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + D54F3F88981D6A4479E117769A4AAB3D /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + F3F94DBACD2700053FDFC076D3C11D39 /* Debug */, + AC9C303DF233F20C065C17752A69309C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + D6194BA4B17FB0CFD3D0FEF1CD44E023 /* Build configuration list for PBXAggregateTarget "UMTaskManagerInterface" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + E62F6174B6589BFDE958A843DE568DFC /* Debug */, + E27697C1EB8064490E395645DDE436E9 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -7224,29 +9794,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - DF669BF377752277DB0B79DEDEC17027 /* Build configuration list for PBXNativeTarget "RNDeviceInfo" */ = { + E46803E1D5324684853A741A9EE1A2C0 /* Build configuration list for PBXNativeTarget "UMReactNativeAdapter" */ = { isa = XCConfigurationList; buildConfigurations = ( - 319CFFE4A2612311284732EF37F35110 /* Debug */, - 5470A48A275EBA435586FD3E1231075D /* Release */, + C2C6610EF910D00DF43A4BA88AEE28CD /* Debug */, + 523E81D68392618ACF57360560532BFF /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E6B00793B94610781E2218D01B1B9817 /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */ = { + E814066082AFCAE886CDCA8CCC0E6400 /* Build configuration list for PBXAggregateTarget "UMSensorsInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - 179224206F36EA5E46EA060A1F8254AF /* Debug */, - 56B455F6A359341CB73B2A5F6C578694 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - E6D388BB274F6B6CB9A3CCF39356652C /* Build configuration list for PBXNativeTarget "yoga" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 49360EE4EC682595562534B5EF87A9CE /* Debug */, - 44023DAE7AE0CBD142F00375664FF928 /* Release */, + A49012AA9AE58744005F4F812FBD857D /* Debug */, + 13C1590A3FB438506C49ACEE1D3DFBE6 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -7260,6 +9821,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + EE6C1094FC7D9861BF1BD7BB5C0CCAEB /* Build configuration list for PBXAggregateTarget "UMImageLoaderInterface" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 204A751F561EFD9E1F672A7916112FD9 /* Debug */, + 036F2868AC47228938B0CF03ED3506DA /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; EE90B36F22114F8D0D633EC22567EB29 /* Build configuration list for PBXAggregateTarget "FirebaseRemoteConfig" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -7278,6 +9848,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + F0D00D6F1A1703D2BFEA1CB998A48DB8 /* Build configuration list for PBXAggregateTarget "UMCameraInterface" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 5B210036ABA3A023173C5E43C77450E5 /* Debug */, + 3179CD362597796ADDB77FEA72C0A86A /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; F84B7C34B5C42B3E1A56DAC5E2FC6AB4 /* Build configuration list for PBXNativeTarget "GoogleUtilities" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -7287,6 +9866,24 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + FAE6CDD5D07D07D0E079393E1FC309A0 /* Build configuration list for PBXNativeTarget "RNDeviceInfo" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 1DD88038036D0F6BF936E2DF900AB0A9 /* Debug */, + 78EB8FC0CFE60181F91B292A0724F745 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FF529BA1B25A4F29765E8C2ABB0CE7FD /* Build configuration list for PBXAggregateTarget "UMFontInterface" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 6E72336AD38780C89F6C04EE36D44734 /* Debug */, + 725C485C45E98F93D2A4067C610CE240 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; /* End XCConfigurationList section */ }; rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */; diff --git a/ios/Pods/Target Support Files/EXAppLoaderProvider/EXAppLoaderProvider-dummy.m b/ios/Pods/Target Support Files/EXAppLoaderProvider/EXAppLoaderProvider-dummy.m new file mode 100644 index 000000000..6e8e3f810 --- /dev/null +++ b/ios/Pods/Target Support Files/EXAppLoaderProvider/EXAppLoaderProvider-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_EXAppLoaderProvider : NSObject +@end +@implementation PodsDummy_EXAppLoaderProvider +@end diff --git a/ios/Pods/Target Support Files/EXAppLoaderProvider/EXAppLoaderProvider-prefix.pch b/ios/Pods/Target Support Files/EXAppLoaderProvider/EXAppLoaderProvider-prefix.pch new file mode 100644 index 000000000..beb2a2441 --- /dev/null +++ b/ios/Pods/Target Support Files/EXAppLoaderProvider/EXAppLoaderProvider-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/EXAppLoaderProvider/EXAppLoaderProvider.xcconfig b/ios/Pods/Target Support Files/EXAppLoaderProvider/EXAppLoaderProvider.xcconfig new file mode 100644 index 000000000..33872a97d --- /dev/null +++ b/ios/Pods/Target Support Files/EXAppLoaderProvider/EXAppLoaderProvider.xcconfig @@ -0,0 +1,9 @@ +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/EXAppLoaderProvider +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" +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-app-loader-provider/ios +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/ios/Pods/Target Support Files/EXConstants/EXConstants-dummy.m b/ios/Pods/Target Support Files/EXConstants/EXConstants-dummy.m new file mode 100644 index 000000000..ed90a7c3c --- /dev/null +++ b/ios/Pods/Target Support Files/EXConstants/EXConstants-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_EXConstants : NSObject +@end +@implementation PodsDummy_EXConstants +@end diff --git a/ios/Pods/Target Support Files/EXConstants/EXConstants-prefix.pch b/ios/Pods/Target Support Files/EXConstants/EXConstants-prefix.pch new file mode 100644 index 000000000..beb2a2441 --- /dev/null +++ b/ios/Pods/Target Support Files/EXConstants/EXConstants-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/EXConstants/EXConstants.xcconfig b/ios/Pods/Target Support Files/EXConstants/EXConstants.xcconfig new file mode 100644 index 000000000..81049bbbe --- /dev/null +++ b/ios/Pods/Target Support Files/EXConstants/EXConstants.xcconfig @@ -0,0 +1,9 @@ +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/EXConstants +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/EXConstants" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/EXConstants" "${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-constants/ios +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/ios/Pods/Target Support Files/EXFileSystem/EXFileSystem-dummy.m b/ios/Pods/Target Support Files/EXFileSystem/EXFileSystem-dummy.m new file mode 100644 index 000000000..5e5c8a076 --- /dev/null +++ b/ios/Pods/Target Support Files/EXFileSystem/EXFileSystem-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_EXFileSystem : NSObject +@end +@implementation PodsDummy_EXFileSystem +@end diff --git a/ios/Pods/Target Support Files/EXFileSystem/EXFileSystem-prefix.pch b/ios/Pods/Target Support Files/EXFileSystem/EXFileSystem-prefix.pch new file mode 100644 index 000000000..beb2a2441 --- /dev/null +++ b/ios/Pods/Target Support Files/EXFileSystem/EXFileSystem-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/EXFileSystem/EXFileSystem.xcconfig b/ios/Pods/Target Support Files/EXFileSystem/EXFileSystem.xcconfig new file mode 100644 index 000000000..625e13a60 --- /dev/null +++ b/ios/Pods/Target Support Files/EXFileSystem/EXFileSystem.xcconfig @@ -0,0 +1,9 @@ +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/EXFileSystem" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" +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-file-system/ios +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/ios/Pods/Target Support Files/EXPermissions/EXPermissions-dummy.m b/ios/Pods/Target Support Files/EXPermissions/EXPermissions-dummy.m new file mode 100644 index 000000000..5c7df88da --- /dev/null +++ b/ios/Pods/Target Support Files/EXPermissions/EXPermissions-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_EXPermissions : NSObject +@end +@implementation PodsDummy_EXPermissions +@end diff --git a/ios/Pods/Target Support Files/EXPermissions/EXPermissions-prefix.pch b/ios/Pods/Target Support Files/EXPermissions/EXPermissions-prefix.pch new file mode 100644 index 000000000..beb2a2441 --- /dev/null +++ b/ios/Pods/Target Support Files/EXPermissions/EXPermissions-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/EXPermissions/EXPermissions.xcconfig b/ios/Pods/Target Support Files/EXPermissions/EXPermissions.xcconfig new file mode 100644 index 000000000..e75f9692d --- /dev/null +++ b/ios/Pods/Target Support Files/EXPermissions/EXPermissions.xcconfig @@ -0,0 +1,9 @@ +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/EXPermissions" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" +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-permissions/ios +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/ios/Pods/Target Support Files/EXWebBrowser/EXWebBrowser-dummy.m b/ios/Pods/Target Support Files/EXWebBrowser/EXWebBrowser-dummy.m new file mode 100644 index 000000000..5ad051d74 --- /dev/null +++ b/ios/Pods/Target Support Files/EXWebBrowser/EXWebBrowser-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_EXWebBrowser : NSObject +@end +@implementation PodsDummy_EXWebBrowser +@end diff --git a/ios/Pods/Target Support Files/EXWebBrowser/EXWebBrowser-prefix.pch b/ios/Pods/Target Support Files/EXWebBrowser/EXWebBrowser-prefix.pch new file mode 100644 index 000000000..beb2a2441 --- /dev/null +++ b/ios/Pods/Target Support Files/EXWebBrowser/EXWebBrowser-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/EXWebBrowser/EXWebBrowser.xcconfig b/ios/Pods/Target Support Files/EXWebBrowser/EXWebBrowser.xcconfig new file mode 100644 index 000000000..8ce6ac88b --- /dev/null +++ b/ios/Pods/Target Support Files/EXWebBrowser/EXWebBrowser.xcconfig @@ -0,0 +1,9 @@ +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/EXWebBrowser" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${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-web-browser/ios +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = 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 ff3fc9ec6..0f7575cb1 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,8 +1,8 @@ FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseABTesting/Frameworks" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/FirebasePerformance/Frameworks" "${PODS_ROOT}/FirebaseRemoteConfig/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=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/DoubleConversion" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GTMSessionFetcher" "${PODS_ROOT}/Headers/Public/GoogleToolboxForMac" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/Protobuf" "${PODS_ROOT}/Headers/Public/QBImagePickerController" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-splash-screen" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/yoga" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleToolboxForMac" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/Protobuf" "${PODS_CONFIGURATION_BUILD_DIR}/QBImagePickerController" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-splash-screen" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/yoga" "${PODS_ROOT}/GoogleIDFASupport/Libraries" -OTHER_LDFLAGS = $(inherited) -ObjC -l"AdIdAccessLibrary" -l"DoubleConversion" -l"FirebaseCore" -l"FirebaseInstanceID" -l"Folly" -l"GTMSessionFetcher" -l"GoogleToolboxForMac" -l"GoogleUtilities" -l"Protobuf" -l"QBImagePickerController" -l"RNDeviceInfo" -l"RNImageCropPicker" -l"RNScreens" -l"RSKImageCropper" -l"React" -l"c++" -l"glog" -l"nanopb" -l"react-native-orientation-locker" -l"react-native-splash-screen" -l"react-native-webview" -l"sqlite3" -l"stdc++" -l"yoga" -l"z" -framework "AdSupport" -framework "CoreTelephony" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseABTesting" -framework "FirebaseAnalytics" -framework "FirebaseCoreDiagnostics" -framework "FirebasePerformance" -framework "FirebaseRemoteConfig" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "JavaScriptCore" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GTMSessionFetcher" "${PODS_ROOT}/Headers/Public/GoogleToolboxForMac" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/Protobuf" "${PODS_ROOT}/Headers/Public/QBImagePickerController" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React" "${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/glog" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-splash-screen" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/yoga" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppLoaderProvider" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleToolboxForMac" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/Protobuf" "${PODS_CONFIGURATION_BUILD_DIR}/QBImagePickerController" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-splash-screen" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/yoga" "${PODS_ROOT}/GoogleIDFASupport/Libraries" +OTHER_LDFLAGS = $(inherited) -ObjC -l"AdIdAccessLibrary" -l"DoubleConversion" -l"EXAppLoaderProvider" -l"EXConstants" -l"EXFileSystem" -l"EXPermissions" -l"EXWebBrowser" -l"FirebaseCore" -l"FirebaseInstanceID" -l"Folly" -l"GTMSessionFetcher" -l"GoogleToolboxForMac" -l"GoogleUtilities" -l"Protobuf" -l"QBImagePickerController" -l"RNDeviceInfo" -l"RNImageCropPicker" -l"RNScreens" -l"RSKImageCropper" -l"React" -l"UMCore" -l"UMReactNativeAdapter" -l"c++" -l"glog" -l"nanopb" -l"react-native-orientation-locker" -l"react-native-splash-screen" -l"react-native-webview" -l"sqlite3" -l"stdc++" -l"yoga" -l"z" -framework "AdSupport" -framework "CoreTelephony" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseABTesting" -framework "FirebaseAnalytics" -framework "FirebaseCoreDiagnostics" -framework "FirebasePerformance" -framework "FirebaseRemoteConfig" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "JavaScriptCore" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" 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 ff3fc9ec6..0f7575cb1 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,8 +1,8 @@ FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS" "${PODS_ROOT}/FirebaseABTesting/Frameworks" "${PODS_ROOT}/FirebaseAnalytics/Frameworks" "${PODS_ROOT}/FirebasePerformance/Frameworks" "${PODS_ROOT}/FirebaseRemoteConfig/Frameworks" "${PODS_ROOT}/GoogleAppMeasurement/Frameworks" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=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/DoubleConversion" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GTMSessionFetcher" "${PODS_ROOT}/Headers/Public/GoogleToolboxForMac" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/Protobuf" "${PODS_ROOT}/Headers/Public/QBImagePickerController" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React" "${PODS_ROOT}/Headers/Public/glog" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-splash-screen" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/yoga" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleToolboxForMac" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/Protobuf" "${PODS_CONFIGURATION_BUILD_DIR}/QBImagePickerController" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-splash-screen" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/yoga" "${PODS_ROOT}/GoogleIDFASupport/Libraries" -OTHER_LDFLAGS = $(inherited) -ObjC -l"AdIdAccessLibrary" -l"DoubleConversion" -l"FirebaseCore" -l"FirebaseInstanceID" -l"Folly" -l"GTMSessionFetcher" -l"GoogleToolboxForMac" -l"GoogleUtilities" -l"Protobuf" -l"QBImagePickerController" -l"RNDeviceInfo" -l"RNImageCropPicker" -l"RNScreens" -l"RSKImageCropper" -l"React" -l"c++" -l"glog" -l"nanopb" -l"react-native-orientation-locker" -l"react-native-splash-screen" -l"react-native-webview" -l"sqlite3" -l"stdc++" -l"yoga" -l"z" -framework "AdSupport" -framework "CoreTelephony" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseABTesting" -framework "FirebaseAnalytics" -framework "FirebaseCoreDiagnostics" -framework "FirebasePerformance" -framework "FirebaseRemoteConfig" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "JavaScriptCore" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/Firebase" "${PODS_ROOT}/Headers/Public/FirebaseCore" "${PODS_ROOT}/Headers/Public/FirebaseInstanceID" "${PODS_ROOT}/Headers/Public/GTMSessionFetcher" "${PODS_ROOT}/Headers/Public/GoogleToolboxForMac" "${PODS_ROOT}/Headers/Public/GoogleUtilities" "${PODS_ROOT}/Headers/Public/Protobuf" "${PODS_ROOT}/Headers/Public/QBImagePickerController" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React" "${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/glog" "${PODS_ROOT}/Headers/Public/nanopb" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-splash-screen" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/yoga" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/EXAppLoaderProvider" "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants" "${PODS_CONFIGURATION_BUILD_DIR}/EXFileSystem" "${PODS_CONFIGURATION_BUILD_DIR}/EXPermissions" "${PODS_CONFIGURATION_BUILD_DIR}/EXWebBrowser" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleToolboxForMac" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/Protobuf" "${PODS_CONFIGURATION_BUILD_DIR}/QBImagePickerController" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React" "${PODS_CONFIGURATION_BUILD_DIR}/UMCore" "${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-splash-screen" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/yoga" "${PODS_ROOT}/GoogleIDFASupport/Libraries" +OTHER_LDFLAGS = $(inherited) -ObjC -l"AdIdAccessLibrary" -l"DoubleConversion" -l"EXAppLoaderProvider" -l"EXConstants" -l"EXFileSystem" -l"EXPermissions" -l"EXWebBrowser" -l"FirebaseCore" -l"FirebaseInstanceID" -l"Folly" -l"GTMSessionFetcher" -l"GoogleToolboxForMac" -l"GoogleUtilities" -l"Protobuf" -l"QBImagePickerController" -l"RNDeviceInfo" -l"RNImageCropPicker" -l"RNScreens" -l"RSKImageCropper" -l"React" -l"UMCore" -l"UMReactNativeAdapter" -l"c++" -l"glog" -l"nanopb" -l"react-native-orientation-locker" -l"react-native-splash-screen" -l"react-native-webview" -l"sqlite3" -l"stdc++" -l"yoga" -l"z" -framework "AdSupport" -framework "CoreTelephony" -framework "Crashlytics" -framework "FIRAnalyticsConnector" -framework "Fabric" -framework "FirebaseABTesting" -framework "FirebaseAnalytics" -framework "FirebaseCoreDiagnostics" -framework "FirebasePerformance" -framework "FirebaseRemoteConfig" -framework "Foundation" -framework "GoogleAppMeasurement" -framework "JavaScriptCore" -framework "Photos" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" 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/UMBarCodeScannerInterface/UMBarCodeScannerInterface.xcconfig b/ios/Pods/Target Support Files/UMBarCodeScannerInterface/UMBarCodeScannerInterface.xcconfig new file mode 100644 index 000000000..3a2ab3dc5 --- /dev/null +++ b/ios/Pods/Target Support Files/UMBarCodeScannerInterface/UMBarCodeScannerInterface.xcconfig @@ -0,0 +1,9 @@ +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/UMBarCodeScannerInterface +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/UMBarCodeScannerInterface" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/UMBarCodeScannerInterface" +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/unimodules-barcode-scanner-interface/ios +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/ios/Pods/Target Support Files/UMCameraInterface/UMCameraInterface.xcconfig b/ios/Pods/Target Support Files/UMCameraInterface/UMCameraInterface.xcconfig new file mode 100644 index 000000000..f440f6f6b --- /dev/null +++ b/ios/Pods/Target Support Files/UMCameraInterface/UMCameraInterface.xcconfig @@ -0,0 +1,9 @@ +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/UMCameraInterface +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/UMCameraInterface" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/UMCameraInterface" +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/unimodules-camera-interface/ios +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/ios/Pods/Target Support Files/UMConstantsInterface/UMConstantsInterface.xcconfig b/ios/Pods/Target Support Files/UMConstantsInterface/UMConstantsInterface.xcconfig new file mode 100644 index 000000000..0274a9901 --- /dev/null +++ b/ios/Pods/Target Support Files/UMConstantsInterface/UMConstantsInterface.xcconfig @@ -0,0 +1,9 @@ +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/UMConstantsInterface +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/UMConstantsInterface" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/UMConstantsInterface" +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/unimodules-constants-interface/ios +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/ios/Pods/Target Support Files/UMCore/UMCore-dummy.m b/ios/Pods/Target Support Files/UMCore/UMCore-dummy.m new file mode 100644 index 000000000..386bb0e48 --- /dev/null +++ b/ios/Pods/Target Support Files/UMCore/UMCore-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_UMCore : NSObject +@end +@implementation PodsDummy_UMCore +@end diff --git a/ios/Pods/Target Support Files/UMCore/UMCore-prefix.pch b/ios/Pods/Target Support Files/UMCore/UMCore-prefix.pch new file mode 100644 index 000000000..beb2a2441 --- /dev/null +++ b/ios/Pods/Target Support Files/UMCore/UMCore-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/UMCore/UMCore.xcconfig b/ios/Pods/Target Support Files/UMCore/UMCore.xcconfig new file mode 100644 index 000000000..21081bae6 --- /dev/null +++ b/ios/Pods/Target Support Files/UMCore/UMCore.xcconfig @@ -0,0 +1,9 @@ +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/UMCore +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/UMCore" "${PODS_ROOT}/Headers/Public" "${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/@unimodules/core/ios +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/ios/Pods/Target Support Files/UMFaceDetectorInterface/UMFaceDetectorInterface.xcconfig b/ios/Pods/Target Support Files/UMFaceDetectorInterface/UMFaceDetectorInterface.xcconfig new file mode 100644 index 000000000..38631f390 --- /dev/null +++ b/ios/Pods/Target Support Files/UMFaceDetectorInterface/UMFaceDetectorInterface.xcconfig @@ -0,0 +1,9 @@ +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/UMFaceDetectorInterface +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/UMFaceDetectorInterface" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/UMFaceDetectorInterface" +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/unimodules-face-detector-interface/ios +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/ios/Pods/Target Support Files/UMFileSystemInterface/UMFileSystemInterface.xcconfig b/ios/Pods/Target Support Files/UMFileSystemInterface/UMFileSystemInterface.xcconfig new file mode 100644 index 000000000..06412dbc1 --- /dev/null +++ b/ios/Pods/Target Support Files/UMFileSystemInterface/UMFileSystemInterface.xcconfig @@ -0,0 +1,9 @@ +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/UMFileSystemInterface +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/UMFileSystemInterface" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/UMFileSystemInterface" +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/unimodules-file-system-interface/ios +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/ios/Pods/Target Support Files/UMFontInterface/UMFontInterface.xcconfig b/ios/Pods/Target Support Files/UMFontInterface/UMFontInterface.xcconfig new file mode 100644 index 000000000..a19c238ad --- /dev/null +++ b/ios/Pods/Target Support Files/UMFontInterface/UMFontInterface.xcconfig @@ -0,0 +1,9 @@ +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/UMFontInterface +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/UMFontInterface" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/UMFontInterface" +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/unimodules-font-interface/ios +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/ios/Pods/Target Support Files/UMImageLoaderInterface/UMImageLoaderInterface.xcconfig b/ios/Pods/Target Support Files/UMImageLoaderInterface/UMImageLoaderInterface.xcconfig new file mode 100644 index 000000000..912a44922 --- /dev/null +++ b/ios/Pods/Target Support Files/UMImageLoaderInterface/UMImageLoaderInterface.xcconfig @@ -0,0 +1,9 @@ +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/UMImageLoaderInterface +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/UMImageLoaderInterface" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/UMImageLoaderInterface" +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/unimodules-image-loader-interface/ios +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/ios/Pods/Target Support Files/UMPermissionsInterface/UMPermissionsInterface.xcconfig b/ios/Pods/Target Support Files/UMPermissionsInterface/UMPermissionsInterface.xcconfig new file mode 100644 index 000000000..cabd2283b --- /dev/null +++ b/ios/Pods/Target Support Files/UMPermissionsInterface/UMPermissionsInterface.xcconfig @@ -0,0 +1,9 @@ +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/UMPermissionsInterface +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/UMPermissionsInterface" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/UMPermissionsInterface" +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/unimodules-permissions-interface/ios +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/ios/Pods/Target Support Files/UMReactNativeAdapter/UMReactNativeAdapter-dummy.m b/ios/Pods/Target Support Files/UMReactNativeAdapter/UMReactNativeAdapter-dummy.m new file mode 100644 index 000000000..25bb57d43 --- /dev/null +++ b/ios/Pods/Target Support Files/UMReactNativeAdapter/UMReactNativeAdapter-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_UMReactNativeAdapter : NSObject +@end +@implementation PodsDummy_UMReactNativeAdapter +@end diff --git a/ios/Pods/Target Support Files/UMReactNativeAdapter/UMReactNativeAdapter-prefix.pch b/ios/Pods/Target Support Files/UMReactNativeAdapter/UMReactNativeAdapter-prefix.pch new file mode 100644 index 000000000..beb2a2441 --- /dev/null +++ b/ios/Pods/Target Support Files/UMReactNativeAdapter/UMReactNativeAdapter-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/UMReactNativeAdapter/UMReactNativeAdapter.xcconfig b/ios/Pods/Target Support Files/UMReactNativeAdapter/UMReactNativeAdapter.xcconfig new file mode 100644 index 000000000..cb3463e27 --- /dev/null +++ b/ios/Pods/Target Support Files/UMReactNativeAdapter/UMReactNativeAdapter.xcconfig @@ -0,0 +1,9 @@ +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/UMReactNativeAdapter +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/React" "${PODS_ROOT}/Headers/Public/UMCore" "${PODS_ROOT}/Headers/Public/UMFontInterface" "${PODS_ROOT}/Headers/Public/UMReactNativeAdapter" "${PODS_ROOT}/Headers/Public/yoga" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../node_modules/@unimodules/react-native-adapter/ios +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/ios/Pods/Target Support Files/UMSensorsInterface/UMSensorsInterface.xcconfig b/ios/Pods/Target Support Files/UMSensorsInterface/UMSensorsInterface.xcconfig new file mode 100644 index 000000000..6a406efa8 --- /dev/null +++ b/ios/Pods/Target Support Files/UMSensorsInterface/UMSensorsInterface.xcconfig @@ -0,0 +1,9 @@ +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/UMSensorsInterface +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/UMSensorsInterface" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/UMSensorsInterface" +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/unimodules-sensors-interface/ios +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/ios/Pods/Target Support Files/UMTaskManagerInterface/UMTaskManagerInterface.xcconfig b/ios/Pods/Target Support Files/UMTaskManagerInterface/UMTaskManagerInterface.xcconfig new file mode 100644 index 000000000..1c239085c --- /dev/null +++ b/ios/Pods/Target Support Files/UMTaskManagerInterface/UMTaskManagerInterface.xcconfig @@ -0,0 +1,9 @@ +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/UMTaskManagerInterface +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/UMTaskManagerInterface" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/UMTaskManagerInterface" +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/unimodules-task-manager-interface/ios +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/ios/RocketChatRN.xcodeproj/project.pbxproj b/ios/RocketChatRN.xcodeproj/project.pbxproj index 717866eb0..f879bc003 100644 --- a/ios/RocketChatRN.xcodeproj/project.pbxproj +++ b/ios/RocketChatRN.xcodeproj/project.pbxproj @@ -21,7 +21,6 @@ 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 24A2AEF2383D44B586D31C01 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 06BB44DD4855498082A744AD /* libz.tbd */; }; - 2C800DF680F8451599E80AF1 /* libSafariViewManager.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D3BB00B9ABF44EA9BD71318 /* libSafariViewManager.a */; }; 38CEA0ED468E49CFABCD82FD /* libRNFirebase.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A36F9982B71E4662AA8DEB77 /* libRNFirebase.a */; }; 50046CB6BDA69B9232CF66D9 /* libPods-RocketChatRN.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C235DC7B31A4D1578EDEF219 /* libPods-RocketChatRN.a */; }; 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; @@ -373,13 +372,6 @@ remoteGlobalIDString = 42F559BA1CFC90C400DC3F84; remoteInfo = RNAudio; }; - B810DF90203B10490010C331 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 4019A5E1911B4C61944FBCEC /* SafariViewManager.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 134814201AA4EA6300B7C361; - remoteInfo = SafariViewManager; - }; B88F58451FBF55E200B352B8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = B88F58361FBF55E200B352B8 /* RCTPushNotification.xcodeproj */; @@ -464,7 +456,6 @@ 22A8B76C8EBA443BB97CE82D /* RNVectorIcons.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNVectorIcons.xcodeproj; path = "../node_modules/react-native-vector-icons/RNVectorIcons.xcodeproj"; sourceTree = ""; }; 22D3971EAF2E4660B4FAB3DD /* RNI18n.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNI18n.xcodeproj; path = "../node_modules/react-native-i18n/ios/RNI18n.xcodeproj"; sourceTree = ""; }; 3B696712EE2345A59F007A88 /* libRNImagePicker.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNImagePicker.a; sourceTree = ""; }; - 4019A5E1911B4C61944FBCEC /* SafariViewManager.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = SafariViewManager.xcodeproj; path = "../node_modules/react-native-safari-view/SafariViewManager.xcodeproj"; sourceTree = ""; }; 58E5009FCA8D40E59303C3DD /* libRNGestureHandler.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNGestureHandler.a; sourceTree = ""; }; 5A0EEFAF8AB14F5B9E796CDD /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNVectorIcons.a; sourceTree = ""; }; 5A8684E7C27E426C9206E980 /* RealmReact.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RealmReact.xcodeproj; path = "../node_modules/realm/react-native/ios/RealmReact.xcodeproj"; sourceTree = ""; }; @@ -523,7 +514,6 @@ BED2B77AA660460E8BC9F8E0 /* libRNFetchBlob.a in Frameworks */, 77C35F50C01C43668188886C /* libRNVectorIcons.a in Frameworks */, 8ECBD927DDAC4987B98E102E /* libRCTVideo.a in Frameworks */, - 2C800DF680F8451599E80AF1 /* libSafariViewManager.a in Frameworks */, 74815BBCB91147C08C8F7B3D /* libRNAudio.a in Frameworks */, BAB7DC22804246F3923A1833 /* libFastImage.a in Frameworks */, F5BF54DC78E1411B8343933B /* libRNI18n.a in Frameworks */, @@ -759,7 +749,6 @@ 5A8684E7C27E426C9206E980 /* RealmReact.xcodeproj */, 22A8B76C8EBA443BB97CE82D /* RNVectorIcons.xcodeproj */, AD0379F2BCE84C968538CDAF /* RCTVideo.xcodeproj */, - 4019A5E1911B4C61944FBCEC /* SafariViewManager.xcodeproj */, C21010507E5B4B37BA0E4C9D /* RNAudio.xcodeproj */, 1845C223DA364898A8400573 /* FastImage.xcodeproj */, 22D3971EAF2E4660B4FAB3DD /* RNI18n.xcodeproj */, @@ -818,14 +807,6 @@ name = Resources; sourceTree = ""; }; - B810DF8D203B10480010C331 /* Products */ = { - isa = PBXGroup; - children = ( - B810DF91203B10490010C331 /* libSafariViewManager.a */, - ); - name = Products; - sourceTree = ""; - }; B88F58371FBF55E200B352B8 /* Products */ = { isa = PBXGroup; children = ( @@ -1039,10 +1020,6 @@ ProductGroup = B8E79A8A1F3CCC6C005B464F /* Products */; ProjectRef = 22A8B76C8EBA443BB97CE82D /* RNVectorIcons.xcodeproj */; }, - { - ProductGroup = B810DF8D203B10480010C331 /* Products */; - ProjectRef = 4019A5E1911B4C61944FBCEC /* SafariViewManager.xcodeproj */; - }, ); projectRoot = ""; targets = ( @@ -1381,13 +1358,6 @@ remoteRef = A9A6C944204DD557006B7D9D /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - B810DF91203B10490010C331 /* libSafariViewManager.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libSafariViewManager.a; - remoteRef = B810DF90203B10490010C331 /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; B88F58461FBF55E200B352B8 /* libRCTPushNotification.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; diff --git a/ios/RocketChatRN/AppDelegate.h b/ios/RocketChatRN/AppDelegate.h index 21c8069f8..bead8f245 100644 --- a/ios/RocketChatRN/AppDelegate.h +++ b/ios/RocketChatRN/AppDelegate.h @@ -9,9 +9,11 @@ #import #import +#import @interface AppDelegate : UIResponder @property (nonatomic, strong) UIWindow *window; +@property (nonatomic, strong) UMModuleRegistryAdapter *moduleRegistryAdapter; @end diff --git a/ios/RocketChatRN/AppDelegate.m b/ios/RocketChatRN/AppDelegate.m index 9ab62a81a..b86b7f010 100644 --- a/ios/RocketChatRN/AppDelegate.m +++ b/ios/RocketChatRN/AppDelegate.m @@ -17,12 +17,16 @@ #import "RNSplashScreen.h" #import "Orientation.h" #import +#import +#import +#import @implementation AppDelegate - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { + self.moduleRegistryAdapter = [[UMModuleRegistryAdapter alloc] initWithModuleRegistryProvider:[[UMModuleRegistryProvider alloc] init]]; RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions]; [FIRApp configure]; RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge @@ -40,6 +44,14 @@ return YES; } +- (NSArray> *)extraModulesForBridge:(RCTBridge *)bridge +{ + NSArray> *extraModules = [_moduleRegistryAdapter extraModulesForBridge:bridge]; + // You can inject any extra modules that you would like here, more information at: + // https://facebook.github.io/react-native/docs/native-modules-ios.html#dependency-injection + return extraModules; +} + - (NSURL *)sourceURLForBridge:(RCTBridge *)bridge { #if DEBUG diff --git a/ios/RocketChatRN/Info.plist b/ios/RocketChatRN/Info.plist index d7050a5ab..aafefb84c 100644 --- a/ios/RocketChatRN/Info.plist +++ b/ios/RocketChatRN/Info.plist @@ -62,6 +62,16 @@ This permission stems from a library we use and will never be called anyway. If you see this, deny access NSLocationWhenInUseUsageDescription This permission stems from a library we use and will never be called anyway. If you see this, deny access + NSCalendarsUsageDescription + Allow $(PRODUCT_NAME) to access your calendar + NSContactsUsageDescription + Allow $(PRODUCT_NAME) to access your contacts + NSMotionUsageDescription + Allow $(PRODUCT_NAME) to access your device's accelerometer + NSPhotoLibraryAddUsageDescription + Give $(PRODUCT_NAME) permission to save photos + NSRemindersUsageDescription + Allow $(PRODUCT_NAME) to access your reminders UIAppFonts custom.ttf diff --git a/package.json b/package.json index da0d41c6e..befd08357 100644 --- a/package.json +++ b/package.json @@ -23,6 +23,7 @@ "@rocket.chat/sdk": "1.0.0-alpha.28", "deep-equal": "^1.0.1", "ejson": "^2.1.2", + "expo-web-browser": "^5.0.3", "js-base64": "^2.5.1", "js-sha256": "^0.9.0", "jsc-android": "^241213.2.0", @@ -56,12 +57,12 @@ "react-native-picker-select": "^5.2.3", "react-native-platform-touchable": "^1.1.1", "react-native-responsive-ui": "^1.1.1", - "react-native-safari-view": "^2.1.0", "react-native-screens": "^1.0.0-alpha.22", "react-native-scrollable-tab-view": "0.10.0", "react-native-slider": "^0.11.0", "react-native-slowlog": "^1.0.2", "react-native-splash-screen": "^3.2.0", + "react-native-unimodules": "^0.4.1", "react-native-vector-icons": "^6.4.2", "react-native-video": "^4.4.1", "react-native-video-controls": "^2.2.3", diff --git a/yarn.lock b/yarn.lock index fb5bb0996..f418405c5 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1796,6 +1796,22 @@ resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-12.0.12.tgz#45dd1d0638e8c8f153e87d296907659296873916" integrity sha512-SOhuU4wNBxhhTHxYaiG5NY4HBhDIDnJF60GU+2LqHAdKKer86//e4yg69aENCtQ04n0ovz+tq2YPME5t5yp4pw== +"@unimodules/core@~2.0.0": + version "2.0.1" + resolved "https://registry.yarnpkg.com/@unimodules/core/-/core-2.0.1.tgz#e5d760aa1a01885871d2d5c3f1fd3404552e5fcb" + integrity sha512-evbJUEAf8TvIfzR2/T9npWuqyYE8042qvmE7uWF+uDAt8KclMS9g7clbNTEG1ck5ov9AYWMMgohFaPfDCkJicw== + dependencies: + compare-versions "^3.4.0" + +"@unimodules/react-native-adapter@~2.0.0": + version "2.0.1" + resolved "https://registry.yarnpkg.com/@unimodules/react-native-adapter/-/react-native-adapter-2.0.1.tgz#021f1f7e2247d296986b0d8f1949a4d8e748ce9c" + integrity sha512-D9CSGLIWX0iWLv4Voq0i+xo0YZcraTN1uCdJ+EepwmBplRHDrDCoh2M9Upm4aIso5812pXOBHmGf31AhIKKhYA== + dependencies: + invariant "^2.2.4" + lodash "^4.5.0" + prop-types "^15.6.1" + "@webassemblyjs/ast@1.7.11": version "1.7.11" resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.7.11.tgz#b988582cafbb2b095e8b556526f30c90d057cace" @@ -3528,6 +3544,11 @@ bluebird@3.5.x, bluebird@^3.3.5, bluebird@^3.5.3: resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.3.tgz#7d01c6f9616c9a51ab0f8c549a79dfe6ec33efa7" integrity sha512-/qKPUQlaW1OyR51WeCPBvRnAlnZFUJkCSG5HzGnuIqhgyJtF+T94lFnn33eiazjRm2LAHVy2guNnaq48X9SJuw== +blueimp-md5@^2.10.0: + version "2.10.0" + resolved "https://registry.yarnpkg.com/blueimp-md5/-/blueimp-md5-2.10.0.tgz#02f0843921f90dca14f5b8920a38593201d6964d" + integrity sha512-EkNUOi7tpV68TqjpiUz9D9NcT8um2+qtgntmMbi5UKssVX2m/2PLqotcric0RE63pB3HPN/fjf3cKHN2ufGSUQ== + bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: version "4.11.8" resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" @@ -4259,6 +4280,11 @@ commondir@^1.0.1: resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= +compare-versions@^3.4.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/compare-versions/-/compare-versions-3.4.0.tgz#e0747df5c9cb7f054d6d3dc3e1dbc444f9e92b26" + integrity sha512-tK69D7oNXXqUW3ZNo/z7NXTEz22TCF0pTE+YF9cxvaAM9XnkLo1fV621xCLrRR6aevJlKxExkss0vWqUCUpqdg== + component-emitter@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" @@ -5695,6 +5721,44 @@ expect@^24.8.0: jest-message-util "^24.8.0" jest-regex-util "^24.3.0" +expo-app-loader-provider@~5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/expo-app-loader-provider/-/expo-app-loader-provider-5.0.1.tgz#56f531e189de8407bdf257d5753ccec43dd253f7" + integrity sha512-RrbKXYmy980MdSgroY0fWPEFp4qqRGfE2oixPgN52poXJyrLbFeSmV/92IDsEOFv02jtrbbHJ8i3tiIF63czXA== + +expo-asset@~5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/expo-asset/-/expo-asset-5.0.1.tgz#02445aeb695b8449cb7239e11fc3a8d34e6c86ce" + integrity sha512-dDu2jgFVd5UdBVfCgiznaib7R8bF3fZ0H3cLEO8q05lXV5NwFc/ftC2BXy0+tvV5u/yEtnRvQFAQQBJVhtbvpQ== + dependencies: + blueimp-md5 "^2.10.0" + path-browserify "^1.0.0" + url-parse "^1.4.4" + +expo-constants@~5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/expo-constants/-/expo-constants-5.0.1.tgz#597263397f269d7fe37d9cd6b30e305c16635a00" + integrity sha512-Ny3teALKaE/jFzBg6DHr2GOoHpwQ/OLs3q3VugZOoR6hXCeVcCEP9MyNvhgn/cheeBDAa6UIgarv2Yufb5RMqQ== + dependencies: + ua-parser-js "^0.7.19" + +expo-file-system@~5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/expo-file-system/-/expo-file-system-5.0.1.tgz#c26054e512c3bb2e256325b48e603957a24e6210" + integrity sha512-8AD8Tt0vR8XNIPXOg5akPUPGuf+SCiE9kY5JppUwfJtfIsiH3BZnebu1bkYCVOMojSgFA017kr8VmH57vEWdnQ== + dependencies: + uuid-js "^0.7.5" + +expo-permissions@~5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/expo-permissions/-/expo-permissions-5.0.1.tgz#cc6af49a37ea3ab73e780a8a19f22b7662379941" + integrity sha512-cOg9f9TaV8grORTwLSuoPfviDGcJSALjaALvxdmQD5ujPW6lxO6Ofd/s4/dV4L3lJww4HXiurjPJnT5yo+3ydw== + +expo-web-browser@^5.0.3: + version "5.0.3" + resolved "https://registry.yarnpkg.com/expo-web-browser/-/expo-web-browser-5.0.3.tgz#c382358ece64a4fad5a5996795faea3446072298" + integrity sha512-Etue3QfBki4shFChsVd3Of3xvY7KsXoNINKvckiRCmcCjOC5bGiZ+Grhf70YEHVUB2bEcAUeZhC9Tg0Ip2tdEQ== + express@^4.16.3: version "4.16.4" resolved "https://registry.yarnpkg.com/express/-/express-4.16.4.tgz#fddef61926109e24c515ea97fd2f1bdbf62df12e" @@ -8971,7 +9035,7 @@ lodash.throttle@^4.1.1: resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4" integrity sha1-wj6RtxAkKscMN/HhzaknTMOb8vQ= -lodash@4.x.x, lodash@^4, lodash@^4.0.0, lodash@^4.13.1, lodash@^4.16.4, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.2.1, lodash@^4.3.0, lodash@^4.6.1: +lodash@4.x.x, lodash@^4, lodash@^4.0.0, lodash@^4.13.1, lodash@^4.16.4, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.2.1, lodash@^4.3.0, lodash@^4.5.0, lodash@^4.6.1: version "4.17.11" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d" integrity sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg== @@ -10563,6 +10627,11 @@ path-browserify@0.0.0: resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" integrity sha1-oLhwcpquIUAFt9UDLsLLuw+0RRo= +path-browserify@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.0.tgz#40702a97af46ae00b0ea6fa8998c0b03c0af160d" + integrity sha512-Hkavx/nY4/plImrZPHRk2CL9vpOymZLgEbMNX1U0bjcBL7QN9wODxyx0yaMZURSQaUtSEvDrfAvxa9oPb0at9g== + path-dirname@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" @@ -11542,11 +11611,6 @@ react-native-responsive-ui@^1.1.1: dependencies: lodash "^4.17.4" -react-native-safari-view@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/react-native-safari-view/-/react-native-safari-view-2.1.0.tgz#1e0cd12c62bce79bc1759c7e281646b08b61c959" - integrity sha1-HgzRLGK855vBdZx+KBZGsIthyVk= - react-native-safe-area-view@^0.13.0: version "0.13.1" resolved "https://registry.yarnpkg.com/react-native-safe-area-view/-/react-native-safe-area-view-0.13.1.tgz#834bbb6d22f76a7ff07de56725ee5667ba1386b0" @@ -11604,6 +11668,30 @@ react-native-tab-view@^1.3.4: dependencies: prop-types "^15.6.1" +react-native-unimodules@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/react-native-unimodules/-/react-native-unimodules-0.4.1.tgz#c01491fd3cb7f4786521fbb7477c35882969a20d" + integrity sha512-KU/38iFWdy5LIydmoF21d/dgG6ndOvIyqPZIBr5tFzcZuVArYSp+eyjQ6AXLw9uueyZAq2F2ONqgTJsyfoxwfA== + dependencies: + "@unimodules/core" "~2.0.0" + "@unimodules/react-native-adapter" "~2.0.0" + chalk "^2.4.2" + expo-app-loader-provider "~5.0.0" + expo-asset "~5.0.0" + expo-constants "~5.0.0" + expo-file-system "~5.0.0" + expo-permissions "~5.0.0" + unimodules-barcode-scanner-interface "~2.0.0" + unimodules-camera-interface "~2.0.0" + unimodules-constants-interface "~2.0.0" + unimodules-face-detector-interface "~2.0.0" + unimodules-file-system-interface "~2.0.0" + unimodules-font-interface "~2.0.0" + unimodules-image-loader-interface "~2.0.0" + unimodules-permissions-interface "~2.0.0" + unimodules-sensors-interface "~2.0.0" + unimodules-task-manager-interface "~2.0.0" + react-native-vector-icons@^6.4.2: version "6.4.2" resolved "https://registry.yarnpkg.com/react-native-vector-icons/-/react-native-vector-icons-6.4.2.tgz#ee0b097e783387544ed160a3192a437c097e551d" @@ -14010,6 +14098,11 @@ ua-parser-js@^0.7.18: resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.19.tgz#94151be4c0a7fb1d001af7022fdaca4642659e4b" integrity sha512-T3PVJ6uz8i0HzPxOF9SWzWAlfN/DavlpQqepn22xgve/5QecC+XMCAtmUNnY7C9StehaV6exjUCI801lOI7QlQ== +ua-parser-js@^0.7.19: + version "0.7.20" + resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.20.tgz#7527178b82f6a62a0f243d1f94fd30e3e3c21098" + integrity sha512-8OaIKfzL5cpx8eCMAhhvTlft8GYF8b2eQr6JkCyVdrgjcytyOmPCXrqXFcUnhonRpLlh5yxEZVohm6mzaowUOw== + uc.micro@^1.0.1, uc.micro@^1.0.5: version "1.0.6" resolved "https://registry.yarnpkg.com/uc.micro/-/uc.micro-1.0.6.tgz#9c411a802a409a91fc6cf74081baba34b24499ac" @@ -14094,6 +14187,56 @@ unicode-property-aliases-ecmascript@^1.0.4: resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.4.tgz#5a533f31b4317ea76f17d807fa0d116546111dd0" integrity sha512-2WSLa6OdYd2ng8oqiGIWnJqyFArvhn+5vgx5GTxMbUYjCYKUcuKS62YLFF0R/BDGlB1yzXjQOLtPAfHsgirEpg== +unimodules-barcode-scanner-interface@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/unimodules-barcode-scanner-interface/-/unimodules-barcode-scanner-interface-2.0.1.tgz#74196fe25c366344ff101540626b8d61cc6c0438" + integrity sha512-Rp3428am/4vCcvVsreqaaGcJNcjtVOMDHVX0yjF2yr8QfD07UVzRYo8ZBhQHc/hYSVWwe+19Pbmk0b+sTnTgkg== + +unimodules-camera-interface@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/unimodules-camera-interface/-/unimodules-camera-interface-2.0.1.tgz#0691ce3282fafaf87aecc3423b1d9c1b729797a4" + integrity sha512-m+sYhFFahaPWYl0aVCq9VU8u6CiLVI4cSywYl9rwbIMAifi83rO5GUKKDIaMfAqMj9z77i/RF53x3nVdpclpyA== + +unimodules-constants-interface@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/unimodules-constants-interface/-/unimodules-constants-interface-2.0.1.tgz#385a8adab7f22b4aa8cca2c302516c0465a64773" + integrity sha512-Ue/5CpfHvc9jrVc9bvDRgMVMQznvgpJ27hQoNia0sUhsMtHDvnFhXrcNfLO4tG5zGgcda6fuKtTMz91vLz8uqw== + +unimodules-face-detector-interface@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/unimodules-face-detector-interface/-/unimodules-face-detector-interface-2.0.1.tgz#a9f3150f69fd8061f6ea920e6ae83c544990b549" + integrity sha512-uM25vRESCRXwhmgVlkiDhxx1R0yGFjoiTYjqG7bfqzSnc964HR3Qy5KaWvJUOtFpLun50pfBw+lzutqFnshCpg== + +unimodules-file-system-interface@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/unimodules-file-system-interface/-/unimodules-file-system-interface-2.0.1.tgz#5fc237b5c4adaa48bd817a9542271d4210d978a9" + integrity sha512-1z//JY7ifBxq3e4dgjID2JgX3uTYEZqVFS1PqlVb9FEmdD+nvuGI2w+ohe+3Y20FYX1lZrffGCeT/Si3xa4tkA== + +unimodules-font-interface@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/unimodules-font-interface/-/unimodules-font-interface-2.0.1.tgz#c2fee253c12d8ae45594adfe8dabff3ac57884de" + integrity sha512-LirIkEZyBJMakQkYwSZBBbqXWY5KFBbBF97CCAaV/uzp6UaNawExD8kYhexajM3+uNdIPlnCIfdqQbpbXBdkVg== + +unimodules-image-loader-interface@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/unimodules-image-loader-interface/-/unimodules-image-loader-interface-2.0.1.tgz#d9d9148638d594bbdb95963449b78b5d0c686eb0" + integrity sha512-o6HHXNcWmDiT8NhBR/wRB/MTf64sQ3c9sSf13BMvmKt2nt64lkhzQC7IVDl1oxx2ejHTfwhC/XK/EafaJvvHWQ== + +unimodules-permissions-interface@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/unimodules-permissions-interface/-/unimodules-permissions-interface-2.0.1.tgz#a8a21807095553a0476a72028ae7f3beab090dbd" + integrity sha512-eqs6Bub19RiUHxCMrrdyro+xOpab1reHjGHBBoMOndY4bKkARpKDN7x1gDxJv3HCtP8a2hAm0xae0cDZ5S38Tw== + +unimodules-sensors-interface@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/unimodules-sensors-interface/-/unimodules-sensors-interface-2.0.1.tgz#5e24964bba0a541b1d4d8d3b82e54efb1aba96b9" + integrity sha512-JvR04JZHqt+EJiGL/9KWsaTpTJQ53qqNMmZAC+MX6NUgnz1bWiUw9eY9MAAIaQbmorCwKyCqfpX9twTUM8z1yA== + +unimodules-task-manager-interface@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/unimodules-task-manager-interface/-/unimodules-task-manager-interface-2.0.1.tgz#77ee744741f3fffe49f0da33aa04a444f66c9ebd" + integrity sha512-dXC9ta54lw23JxOX64OAT7wz6S0IExZZ7tf8iPjnNQPQLSqnuVuC7JRo7ZGV1HYFsR1aIwbrFxS7uiBE5SKCUg== + union-value@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" @@ -14285,6 +14428,11 @@ utils-merge@1.0.1: resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM= +uuid-js@^0.7.5: + version "0.7.5" + resolved "https://registry.yarnpkg.com/uuid-js/-/uuid-js-0.7.5.tgz#6c886d02a53d2d40dcf25d91a170b4a7b25b94d0" + integrity sha1-bIhtAqU9LUDc8l2RoXC0p7JblNA= + uuid@^2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" From e2f924104062cccc347694b7ba1f40be8e09914f Mon Sep 17 00:00:00 2001 From: Diego Mello Date: Wed, 26 Jun 2019 09:33:56 -0300 Subject: [PATCH 9/9] [FIX] App hang on "updating" (#997) * [FIX] App hang on "updating" * Fix iOS notification tap --- app/lib/methods/subscriptions/rooms.js | 13 +++++++------ app/notifications/push/push.ios.js | 5 +++-- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/app/lib/methods/subscriptions/rooms.js b/app/lib/methods/subscriptions/rooms.js index 5b23fbda7..bc70b394a 100644 --- a/app/lib/methods/subscriptions/rooms.js +++ b/app/lib/methods/subscriptions/rooms.js @@ -15,7 +15,7 @@ let disconnectedListener; let streamListener; let subServer; -export default async function subscribeRooms() { +export default function subscribeRooms() { let timer = null; const loop = () => { if (timer) { @@ -156,12 +156,13 @@ export default async function subscribeRooms() { try { // set the server that started this task subServer = this.sdk.client.host; - await this.sdk.subscribeNotifyUser(); + this.sdk.subscribeNotifyUser().catch(e => console.log(e)); + + return { + stop: () => stop() + }; } catch (e) { log('err_subscribe_rooms', e); + return Promise.reject(); } - - return { - stop: () => stop() - }; } diff --git a/app/notifications/push/push.ios.js b/app/notifications/push/push.ios.js index 56cfa3e9f..fe307ee14 100644 --- a/app/notifications/push/push.ios.js +++ b/app/notifications/push/push.ios.js @@ -25,12 +25,13 @@ class PushNotification { NotificationsIOS.setBadgesCount(count); } - configure(params) { + async configure(params) { this.onRegister = params.onRegister; this.onNotification = params.onNotification; + const initial = await NotificationsIOS.getInitialNotification(); NotificationsIOS.consumeBackgroundQueue(); - return Promise.resolve(); + return Promise.resolve(initial); } } export default new PushNotification();