diff --git a/__mocks__/react-native-localize.js b/__mocks__/react-native-localize.js new file mode 100644 index 000000000..2800ee902 --- /dev/null +++ b/__mocks__/react-native-localize.js @@ -0,0 +1,2 @@ +export const initialConstants = null; +export const findBestAvailableLanguage = () => null; diff --git a/android/app/build.gradle b/android/app/build.gradle index 148c2ad02..718d73d56 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -185,7 +185,7 @@ dependencies { }) implementation project(':react-native-gesture-handler') implementation project(':react-native-image-crop-picker') - implementation project(':react-native-i18n') + implementation project(':react-native-localize') implementation project(':react-native-audio') implementation project(":reactnativekeyboardinput") implementation project(':react-native-video') 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 59a66db8b..d87d301f8 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/MainApplication.java +++ b/android/app/src/main/java/chat/rocket/reactnative/MainApplication.java @@ -15,7 +15,7 @@ import com.facebook.react.ReactPackage; import com.facebook.react.shell.MainReactPackage; import com.facebook.soloader.SoLoader; -import com.AlexanderZaytsev.RNI18n.RNI18nPackage; +import com.reactcommunity.rnlocalize.RNLocalizePackage; import com.reactnative.ivpusic.imagepicker.PickerPackage; import com.brentvatne.react.ReactVideoPackage; import com.dylanvann.fastimage.FastImageViewPackage; @@ -78,7 +78,7 @@ public class MainApplication extends Application implements ReactApplication, IN new ReactNativeAudioPackage(), new KeyboardInputPackage(MainApplication.this), new FastImageViewPackage(), - new RNI18nPackage(), + new RNLocalizePackage(), new RNNotificationsPackage(MainApplication.this), new ModuleRegistryAdapter(mModuleRegistryProvider) ); diff --git a/android/settings.gradle b/android/settings.gradle index e29a00fb7..cdbc352b4 100644 --- a/android/settings.gradle +++ b/android/settings.gradle @@ -20,8 +20,8 @@ include ':react-native-gesture-handler' project(':react-native-gesture-handler').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-gesture-handler/android') include ':react-native-image-crop-picker' project(':react-native-image-crop-picker').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-image-crop-picker/android') -include ':react-native-i18n' -project(':react-native-i18n').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-i18n/android') +include ':react-native-localize' +project(':react-native-localize').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-localize/android') include ':react-native-fast-image' project(':react-native-fast-image').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-fast-image/android') include ':react-native-audio' diff --git a/app/containers/MessageBox/index.js b/app/containers/MessageBox/index.js index 1e6974d9a..d662fe960 100644 --- a/app/containers/MessageBox/index.js +++ b/app/containers/MessageBox/index.js @@ -46,20 +46,11 @@ const onlyUnique = function onlyUnique(value, index, self) { const imagePickerConfig = { cropping: true, compressImageQuality: 0.8, - avoidEmptySpaceAroundImage: false, - cropperChooseText: I18n.t('Choose'), - cropperCancelText: I18n.t('Cancel') + avoidEmptySpaceAroundImage: false }; -const fileOptions = [I18n.t('Cancel')]; const FILE_CANCEL_INDEX = 0; - -// Photo -fileOptions.push(I18n.t('Take_a_photo')); const FILE_PHOTO_INDEX = 1; - -// Library -fileOptions.push(I18n.t('Choose_from_library')); const FILE_LIBRARY_INDEX = 2; class MessageBox extends Component { @@ -107,6 +98,16 @@ class MessageBox extends Component { this.customEmojis = []; this.onEmojiSelected = this.onEmojiSelected.bind(this); this.text = ''; + this.fileOptions = [ + I18n.t('Cancel'), + I18n.t('Take_a_photo'), + I18n.t('Choose_from_library') + ]; + this.imagePickerConfig = { + ...imagePickerConfig, + cropperChooseText: I18n.t('Choose'), + cropperCancelText: I18n.t('Cancel') + }; } componentDidMount() { @@ -483,7 +484,7 @@ class MessageBox extends Component { takePhoto = async() => { try { - const image = await ImagePicker.openCamera(imagePickerConfig); + const image = await ImagePicker.openCamera(this.imagePickerConfig); this.showUploadModal(image); } catch (e) { log('err_take_photo', e); @@ -492,7 +493,7 @@ class MessageBox extends Component { chooseFromLibrary = async() => { try { - const image = await ImagePicker.openPicker(imagePickerConfig); + const image = await ImagePicker.openPicker(this.imagePickerConfig); this.showUploadModal(image); } catch (e) { log('err_choose_from_library', e); @@ -505,7 +506,7 @@ class MessageBox extends Component { showFileActions = () => { ActionSheet.showActionSheetWithOptions({ - options: fileOptions, + options: this.fileOptions, cancelButtonIndex: FILE_CANCEL_INDEX }, (actionIndex) => { this.handleFileActionPress(actionIndex); diff --git a/app/i18n/index.js b/app/i18n/index.js index f6521862e..5b4604aec 100644 --- a/app/i18n/index.js +++ b/app/i18n/index.js @@ -1,4 +1,7 @@ -import I18n from 'react-native-i18n'; +import i18n from 'i18n-js'; +import { I18nManager } from 'react-native'; +import * as RNLocalize from 'react-native-localize'; + import en from './locales/en'; import ru from './locales/ru'; import fr from './locales/fr'; @@ -7,11 +10,22 @@ import ptBR from './locales/pt-BR'; import zhCN from './locales/zh-CN'; import ptPT from './locales/pt-PT'; -I18n.fallbacks = true; -I18n.defaultLocale = 'en'; - -I18n.translations = { - en, ru, 'pt-BR': ptBR, 'zh-CN': zhCN, fr, de, 'pt-PT': ptPT +i18n.translations = { + en, + ru, + 'pt-BR': ptBR, + 'zh-CN': zhCN, + fr, + de, + 'pt-PT': ptPT }; +i18n.fallbacks = true; -export default I18n; +const defaultLanguage = { languageTag: 'en', isRTL: false }; +const availableLanguages = Object.keys(i18n.translations); +const { languageTag, isRTL } = RNLocalize.findBestAvailableLanguage(availableLanguages) || defaultLanguage; + +I18nManager.forceRTL(isRTL); +i18n.locale = languageTag; + +export default i18n; diff --git a/app/presentation/RoomItem/index.js b/app/presentation/RoomItem/index.js index 1b5105f62..6ec00cc25 100644 --- a/app/presentation/RoomItem/index.js +++ b/app/presentation/RoomItem/index.js @@ -1,5 +1,4 @@ import React from 'react'; -import moment from 'moment'; import PropTypes from 'prop-types'; import { View, Text, Animated } from 'react-native'; import { RectButton, PanGestureHandler, State } from 'react-native-gesture-handler'; @@ -12,6 +11,7 @@ import styles, { import UnreadBadge from './UnreadBadge'; import TypeIcon from './TypeIcon'; import LastMessage from './LastMessage'; +import { capitalize, formatDate } from '../../utils/room'; import { LeftActions, RightActions } from './Actions'; export { ROW_HEIGHT }; @@ -203,19 +203,12 @@ export default class RoomItem extends React.Component { } } - formatDate = date => moment(date).calendar(null, { - lastDay: `[${ I18n.t('Yesterday') }]`, - sameDay: 'h:mm A', - lastWeek: 'dddd', - sameElse: 'MMM D' - }) - render() { const { unread, userMentions, name, _updatedAt, alert, testID, type, avatarSize, baseUrl, userId, username, token, id, prid, showLastMessage, lastMessage, isRead, width, favorite } = this.props; - const date = this.formatDate(_updatedAt); + const date = formatDate(_updatedAt); let accessibilityLabel = name; if (unread === 1) { @@ -275,7 +268,7 @@ export default class RoomItem extends React.Component { { name } - {_updatedAt ? { date } : null} + {_updatedAt ? { capitalize(date) } : null} diff --git a/app/utils/room.js b/app/utils/room.js new file mode 100644 index 000000000..0e2f5dfb1 --- /dev/null +++ b/app/utils/room.js @@ -0,0 +1,15 @@ +import moment from 'moment'; + +import I18n from '../i18n'; + +export const capitalize = (s) => { + if (typeof s !== 'string') { return ''; } + return s.charAt(0).toUpperCase() + s.slice(1); +}; + +export const formatDate = date => moment(date).calendar(null, { + lastDay: `[${ I18n.t('Yesterday') }]`, + sameDay: 'LT', + lastWeek: 'dddd', + sameElse: 'MMM D' +}); diff --git a/app/views/RoomsListView/index.js b/app/views/RoomsListView/index.js index c2dc0a8a8..60bfbeb2f 100644 --- a/app/views/RoomsListView/index.js +++ b/app/views/RoomsListView/index.js @@ -7,6 +7,8 @@ import { connect } from 'react-redux'; import { isEqual } from 'lodash'; import { SafeAreaView } from 'react-navigation'; import Orientation from 'react-native-orientation-locker'; +import moment from 'moment'; +import 'moment/min/locales'; import database, { safeAddListener } from '../../lib/realm'; import RocketChat from '../../lib/rocketchat'; @@ -54,7 +56,8 @@ const keyExtractor = item => item.rid; showUnread: state.sortPreferences.showUnread, useRealName: state.settings.UI_Use_Real_Name, appState: state.app.ready && state.app.foreground ? 'foreground' : 'background', - StoreLastMessage: state.settings.Store_Last_Message + StoreLastMessage: state.settings.Store_Last_Message, + userLanguage: state.login.user && state.login.user.language }), dispatch => ({ toggleSortDropdown: () => dispatch(toggleSortDropdownAction()), openSearchHeader: () => dispatch(openSearchHeaderAction()), @@ -117,7 +120,8 @@ export default class RoomsListView extends React.Component { closeSearchHeader: PropTypes.func, appStart: PropTypes.func, roomsRequest: PropTypes.func, - isAuthenticated: PropTypes.bool + isAuthenticated: PropTypes.bool, + userLanguage: PropTypes.string } constructor(props) { @@ -148,7 +152,8 @@ export default class RoomsListView extends React.Component { componentDidMount() { this.getSubscriptions(); - const { navigation } = this.props; + const { navigation, userLanguage } = this.props; + moment.locale(userLanguage); navigation.setParams({ onPressItem: this._onPressItem, initSearchingAndroid: this.initSearchingAndroid, diff --git a/ios/Podfile b/ios/Podfile index f5552328a..9a35b876c 100644 --- a/ios/Podfile +++ b/ios/Podfile @@ -27,6 +27,7 @@ target 'RocketChatRN' do pod 'RNImageCropPicker', :path => '../node_modules/react-native-image-crop-picker' pod 'RNDeviceInfo', :path => '../node_modules/react-native-device-info' + pod 'RNLocalize', :path => '../node_modules/react-native-localize' pod 'RNScreens', :path => '../node_modules/react-native-screens' diff --git a/ios/Podfile.lock b/ios/Podfile.lock index a65b96801..515716ab2 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -147,6 +147,8 @@ PODS: - QBImagePickerController - React/Core - RSKImageCropper + - RNLocalize (1.1.4): + - React - RNScreens (1.0.0-alpha.22): - React - RSKImageCropper (2.2.1) @@ -197,6 +199,7 @@ DEPENDENCIES: - React/RCTWebSocket (from `../node_modules/react-native`) - RNDeviceInfo (from `../node_modules/react-native-device-info`) - RNImageCropPicker (from `../node_modules/react-native-image-crop-picker`) + - RNLocalize (from `../node_modules/react-native-localize`) - RNScreens (from `../node_modules/react-native-screens`) - UMBarCodeScannerInterface (from `../node_modules/unimodules-barcode-scanner-interface/ios`) - UMCameraInterface (from `../node_modules/unimodules-camera-interface/ios`) @@ -271,6 +274,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-device-info" RNImageCropPicker: :path: "../node_modules/react-native-image-crop-picker" + RNLocalize: + :path: "../node_modules/react-native-localize" RNScreens: :path: "../node_modules/react-native-screens" UMBarCodeScannerInterface: @@ -346,6 +351,7 @@ SPEC CHECKSUMS: react-native-webview: f3e28b48461c78db833f727feec08b13285e7b61 RNDeviceInfo: 958a1ed6f94e04557b865b8ef848cfc83db0ebba RNImageCropPicker: e608efe182652dc8690268cb99cb5a201f2b5ea3 + RNLocalize: 62a949d2ec5bee0eb8f39a80a48f01e2f4f67080 RNScreens: 720a9e6968beb73e8196239801e887d8401f86ed RSKImageCropper: 98296ad26b41753f796b6898d015509598f13d97 UMBarCodeScannerInterface: d5602e23de37f95bb4ee49ee3b2711e128058ae9 @@ -362,6 +368,6 @@ SPEC CHECKSUMS: UMTaskManagerInterface: 296793ab2a7e181fe5ebe2ba9b40ae208ab4b8fa yoga: 92b2102c3d373d1a790db4ab761d2b0ffc634f64 -PODFILE CHECKSUM: b5e15bac5f306ea636e16393a7a6eb42c017ea99 +PODFILE CHECKSUM: e913a7016ba7fbc295edc5178996383a1f54742e COCOAPODS: 1.6.2 diff --git a/ios/Pods/Headers/Private/RNLocalize/RNLocalize.h b/ios/Pods/Headers/Private/RNLocalize/RNLocalize.h new file mode 120000 index 000000000..ef6264f90 --- /dev/null +++ b/ios/Pods/Headers/Private/RNLocalize/RNLocalize.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-localize/ios/RNLocalize.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/RNLocalize/RNLocalize.h b/ios/Pods/Headers/Public/RNLocalize/RNLocalize.h new file mode 120000 index 000000000..ef6264f90 --- /dev/null +++ b/ios/Pods/Headers/Public/RNLocalize/RNLocalize.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-localize/ios/RNLocalize.h \ No newline at end of file diff --git a/ios/Pods/Local Podspecs/RNLocalize.podspec.json b/ios/Pods/Local Podspecs/RNLocalize.podspec.json new file mode 100644 index 000000000..b0d6fd726 --- /dev/null +++ b/ios/Pods/Local Podspecs/RNLocalize.podspec.json @@ -0,0 +1,22 @@ +{ + "name": "RNLocalize", + "dependencies": { + "React": [ + + ] + }, + "version": "1.1.4", + "license": "MIT", + "description": "A toolbox for your React Native app localization.", + "summary": "A toolbox for your React Native app localization.", + "authors": "Mathieu Acthernoene ", + "homepage": "https://github.com/react-native-community/react-native-localize", + "platforms": { + "ios": "9.0" + }, + "source": { + "git": "https://github.com/react-native-community/react-native-localize.git", + "tag": "1.1.4" + }, + "source_files": "ios/*.{h,m}" +} diff --git a/ios/Pods/Manifest.lock b/ios/Pods/Manifest.lock index a65b96801..515716ab2 100644 --- a/ios/Pods/Manifest.lock +++ b/ios/Pods/Manifest.lock @@ -147,6 +147,8 @@ PODS: - QBImagePickerController - React/Core - RSKImageCropper + - RNLocalize (1.1.4): + - React - RNScreens (1.0.0-alpha.22): - React - RSKImageCropper (2.2.1) @@ -197,6 +199,7 @@ DEPENDENCIES: - React/RCTWebSocket (from `../node_modules/react-native`) - RNDeviceInfo (from `../node_modules/react-native-device-info`) - RNImageCropPicker (from `../node_modules/react-native-image-crop-picker`) + - RNLocalize (from `../node_modules/react-native-localize`) - RNScreens (from `../node_modules/react-native-screens`) - UMBarCodeScannerInterface (from `../node_modules/unimodules-barcode-scanner-interface/ios`) - UMCameraInterface (from `../node_modules/unimodules-camera-interface/ios`) @@ -271,6 +274,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-device-info" RNImageCropPicker: :path: "../node_modules/react-native-image-crop-picker" + RNLocalize: + :path: "../node_modules/react-native-localize" RNScreens: :path: "../node_modules/react-native-screens" UMBarCodeScannerInterface: @@ -346,6 +351,7 @@ SPEC CHECKSUMS: react-native-webview: f3e28b48461c78db833f727feec08b13285e7b61 RNDeviceInfo: 958a1ed6f94e04557b865b8ef848cfc83db0ebba RNImageCropPicker: e608efe182652dc8690268cb99cb5a201f2b5ea3 + RNLocalize: 62a949d2ec5bee0eb8f39a80a48f01e2f4f67080 RNScreens: 720a9e6968beb73e8196239801e887d8401f86ed RSKImageCropper: 98296ad26b41753f796b6898d015509598f13d97 UMBarCodeScannerInterface: d5602e23de37f95bb4ee49ee3b2711e128058ae9 @@ -362,6 +368,6 @@ SPEC CHECKSUMS: UMTaskManagerInterface: 296793ab2a7e181fe5ebe2ba9b40ae208ab4b8fa yoga: 92b2102c3d373d1a790db4ab761d2b0ffc634f64 -PODFILE CHECKSUM: b5e15bac5f306ea636e16393a7a6eb42c017ea99 +PODFILE CHECKSUM: e913a7016ba7fbc295edc5178996383a1f54742e COCOAPODS: 1.6.2 diff --git a/ios/Pods/Pods.xcodeproj/project.pbxproj b/ios/Pods/Pods.xcodeproj/project.pbxproj index 5ce01236c..132b35cf6 100644 --- a/ios/Pods/Pods.xcodeproj/project.pbxproj +++ b/ios/Pods/Pods.xcodeproj/project.pbxproj @@ -7,24 +7,6 @@ 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" */; @@ -39,6 +21,15 @@ ); name = FirebaseAnalytics; }; + 2CC3173E2B9D15AACE1F8C582CA6C3B4 /* UMImageLoaderInterface */ = { + isa = PBXAggregateTarget; + buildConfigurationList = 8B7A20C52F49987974FBBF52A6047803 /* Build configuration list for PBXAggregateTarget "UMImageLoaderInterface" */; + buildPhases = ( + ); + dependencies = ( + ); + name = UMImageLoaderInterface; + }; 39E0403E3ACE39BC0D878D82FAB8F012 /* FirebaseABTesting */ = { isa = PBXAggregateTarget; buildConfigurationList = EDE4D9C83A65084FDD68DC55411111CD /* Build configuration list for PBXAggregateTarget "FirebaseABTesting" */; @@ -50,15 +41,6 @@ ); name = FirebaseABTesting; }; - 3B41CF884EED60EBD44EAEA9D3D255C6 /* UMFontInterface */ = { - isa = PBXAggregateTarget; - buildConfigurationList = C5B6C27A570AEFC781C128468CC3420C /* Build configuration list for PBXAggregateTarget "UMFontInterface" */; - buildPhases = ( - ); - dependencies = ( - ); - name = UMFontInterface; - }; 42F7AF66FD1178857DC3A2834552BE76 /* FirebasePerformance */ = { isa = PBXAggregateTarget; buildConfigurationList = 1517040FB8F3211E3574BAA7ECC7AA3A /* Build configuration list for PBXAggregateTarget "FirebasePerformance" */; @@ -75,6 +57,33 @@ ); name = FirebasePerformance; }; + 458293E00EF1C1F42778F9425AD34AA4 /* UMConstantsInterface */ = { + isa = PBXAggregateTarget; + buildConfigurationList = 0D1C58C4F3C697682657D483AF1081D3 /* Build configuration list for PBXAggregateTarget "UMConstantsInterface" */; + buildPhases = ( + ); + dependencies = ( + ); + name = UMConstantsInterface; + }; + 4A819E0AAACF1DCA78FD8E5552709919 /* UMFontInterface */ = { + isa = PBXAggregateTarget; + buildConfigurationList = EA6C8F1D19FA86C8BD650D2161021975 /* Build configuration list for PBXAggregateTarget "UMFontInterface" */; + buildPhases = ( + ); + dependencies = ( + ); + name = UMFontInterface; + }; + 59DC5D9A524CE398BCF64FEAD7E6FBF1 /* UMFaceDetectorInterface */ = { + isa = PBXAggregateTarget; + buildConfigurationList = A92E9AC6F35DE9CFC00A36979B7A166E /* Build configuration list for PBXAggregateTarget "UMFaceDetectorInterface" */; + buildPhases = ( + ); + dependencies = ( + ); + name = UMFaceDetectorInterface; + }; 5AAD465FECAE9083F45E3DB9252A8302 /* FirebaseRemoteConfig */ = { isa = PBXAggregateTarget; buildConfigurationList = EE90B36F22114F8D0D633EC22567EB29 /* Build configuration list for PBXAggregateTarget "FirebaseRemoteConfig" */; @@ -99,14 +108,23 @@ ); name = "boost-for-react-native"; }; - 697F1B537EEB4F371E0205934B9E8BEE /* UMBarCodeScannerInterface */ = { + 76CC3A2D036B8B64B5F70A7078274100 /* UMPermissionsInterface */ = { isa = PBXAggregateTarget; - buildConfigurationList = 186EBA3AB48C7B460B41E9527EC0376E /* Build configuration list for PBXAggregateTarget "UMBarCodeScannerInterface" */; + buildConfigurationList = 19B649D415B23577700588DC3FB19565 /* Build configuration list for PBXAggregateTarget "UMPermissionsInterface" */; buildPhases = ( ); dependencies = ( ); - name = UMBarCodeScannerInterface; + name = UMPermissionsInterface; + }; + 7825F222F53EF434DE74A6C6FAF290E9 /* UMFileSystemInterface */ = { + isa = PBXAggregateTarget; + buildConfigurationList = 1CB324CFC7C9FDAD43D409360A8F980B /* Build configuration list for PBXAggregateTarget "UMFileSystemInterface" */; + buildPhases = ( + ); + dependencies = ( + ); + name = UMFileSystemInterface; }; 7C36E7C600F8DE2BE1819059C80F2182 /* GoogleIDFASupport */ = { isa = PBXAggregateTarget; @@ -117,15 +135,6 @@ ); name = GoogleIDFASupport; }; - 9594E8EA6B999DFB255E43422B537B4A /* UMFaceDetectorInterface */ = { - isa = PBXAggregateTarget; - buildConfigurationList = E357E8292C0D9205CA7C1CD6B7FC9D3D /* Build configuration list for PBXAggregateTarget "UMFaceDetectorInterface" */; - buildPhases = ( - ); - dependencies = ( - ); - name = UMFaceDetectorInterface; - }; 97C8CD7E4179727E4F374CABD338D2BB /* Firebase */ = { isa = PBXAggregateTarget; buildConfigurationList = 8D737EA61FBFEFB85394C3D203C4252A /* Build configuration list for PBXAggregateTarget "Firebase" */; @@ -159,32 +168,23 @@ ); name = Crashlytics; }; - AF79516C61CAF63B0032AFC55FF9B727 /* UMTaskManagerInterface */ = { + B156F9573C6B7A72D1C3C5709747221C /* UMCameraInterface */ = { isa = PBXAggregateTarget; - buildConfigurationList = 07CD24213F6F86BE55BC867D46CB4BFE /* Build configuration list for PBXAggregateTarget "UMTaskManagerInterface" */; + buildConfigurationList = 21CEF0B04F44D6C05A97D363AAED4498 /* Build configuration list for PBXAggregateTarget "UMCameraInterface" */; buildPhases = ( ); dependencies = ( ); - name = UMTaskManagerInterface; + name = UMCameraInterface; }; - BDEC894DA99DF9E9D232AD2BDBB2D87B /* UMImageLoaderInterface */ = { + BB9572F1566792491630510569E89516 /* UMBarCodeScannerInterface */ = { isa = PBXAggregateTarget; - buildConfigurationList = 206B8D70C42CF0B6421D0BB41D7B6B1C /* Build configuration list for PBXAggregateTarget "UMImageLoaderInterface" */; + buildConfigurationList = DFA7D47CC12477C71F1170FC593B9C02 /* Build configuration list for PBXAggregateTarget "UMBarCodeScannerInterface" */; buildPhases = ( ); dependencies = ( ); - name = UMImageLoaderInterface; - }; - BF2CBBCE075E16438BFE38CBBD612F23 /* UMSensorsInterface */ = { - isa = PBXAggregateTarget; - buildConfigurationList = 532DE14CF37BA69A8A0BC7D0141D6838 /* Build configuration list for PBXAggregateTarget "UMSensorsInterface" */; - buildPhases = ( - ); - dependencies = ( - ); - name = UMSensorsInterface; + name = UMBarCodeScannerInterface; }; D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */ = { isa = PBXAggregateTarget; @@ -195,515 +195,518 @@ ); name = Fabric; }; - D6CDBA4F567B018F442382D2520D6D27 /* UMConstantsInterface */ = { + DE51FBD286F169F98270DF6BA53F5886 /* UMSensorsInterface */ = { isa = PBXAggregateTarget; - buildConfigurationList = 51C66BBB4BF416CDA4D6EB626E21DA79 /* Build configuration list for PBXAggregateTarget "UMConstantsInterface" */; + buildConfigurationList = 1146692C6E3856D877AE8A0FCBEDC90D /* Build configuration list for PBXAggregateTarget "UMSensorsInterface" */; buildPhases = ( ); dependencies = ( ); - name = UMConstantsInterface; + name = UMSensorsInterface; }; - F73DB2D340074674E9F439EFB938E4EB /* UMCameraInterface */ = { + F3EB3F69725213A107EBE1D88295232A /* UMTaskManagerInterface */ = { isa = PBXAggregateTarget; - buildConfigurationList = C5634010506281E41F873589FEE9F310 /* Build configuration list for PBXAggregateTarget "UMCameraInterface" */; + buildConfigurationList = 9C877173540C230076E76F9965B95E3E /* Build configuration list for PBXAggregateTarget "UMTaskManagerInterface" */; buildPhases = ( ); dependencies = ( ); - name = UMCameraInterface; + name = UMTaskManagerInterface; }; /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ + 011A77AE2F540844992BAB9676FB8004 /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B6EB8ABBF4DBB75EEAE28A420846B0D /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0219B694AE3D0E38DF1D4A956F09D1A9 /* GPBCodedInputStream_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 078FF8EC0ECED7B97D6279D0D49840E0 /* GPBCodedInputStream_PackagePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02AC2E0F8684EB425FA13499B3AA0B12 /* Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E0C49F12A12309D11B852442959A76BB /* Folly-dummy.m */; }; 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 = 69B7A75C19066DFC7937F2A35BE5CB58 /* EXContactsRequester.m */; }; - 0649814FCE8D1A872EEEE4760938BF7E /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F35B8067CB38799161B342B07CF317B9 /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 068F141A4D4F93685151DDA6BC5270D0 /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 25A0F9F90A3E5DDE34E9890D15D5526C /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 07B2B5B42E9A1E6735EEE0DBA854B6B6 /* UIApplication+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = F3BCBFAD374F9A20E01958A9D04855DC /* UIApplication+RSKImageCropper.m */; }; + 077451C8631A73C09351280BA916393E /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = C352EE6E151EDC8523F4F13C165280E6 /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 07F8D080E8BF101BCF8A70FCAEBE060F /* FIRErrors.m in Sources */ = {isa = PBXBuildFile; fileRef = B70DF0D054083CCB1DE9AC9B8D3926B0 /* FIRErrors.m */; }; - 08AA3599F2E941302E152C039AEEAA98 /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 27F428D24220F221FBAE8C7A461B3373 /* 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, ); }; }; + 08CFEBF8C87EED02D29D227E80C3CDFF /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 7281FAA6FD69716BD70ACDBA76979CC5 /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; 093B41BC8332F6869816B37BEE274ED5 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = D7D23CD108787BFAAD18B7070B91E9C1 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 097FAB099558BE69C5B07C5CBF958442 /* EXCameraPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = C20130DD700D9E05AB9819EA9F50EC0A /* EXCameraPermissionRequester.m */; }; - 098A6271D0AD2498BF26BA35970062B0 /* RSKImageCropViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B4EDA879A5FBC25007AEDD3699E0135E /* RSKImageCropViewController.m */; }; - 0A22011D34F56D40C55D8124106DAAD3 /* EXLocationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 60F2AA45F675CC3245D0A35C97A88A34 /* EXLocationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A42B05646032C26BCD812C94D27B004 /* EXRemoteNotificationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 4310BC0C9C3FF5CAD594564086096322 /* 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 */; }; + 0B2D30F38EB2951F5650351BB4C018E6 /* EXRemoteNotificationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = A3B7D4F4BE0590417DB305B6E335BBC8 /* EXRemoteNotificationRequester.m */; }; + 0BA1054EEC1116F37A2631A2580F1D8F /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 73739BDA5E3CFF0277762732A1F44DBA /* RNSScreenContainer.m */; }; + 0BCDAAA35BCBF05B263352DA635A3AFA /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = B3EEAC8253B1EFDCC135AB22DCFCF52F /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0BF9B8F2B76271CE55DD91FEAAD2857C /* ColdClass.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51DB1D488B9CD90333D4917C16942248 /* ColdClass.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1"; }; }; + 0C2A5DC47FE2D6837EA44C99ABFD5834 /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C747CB7B27F13309836226E4FD6D254 /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0C3B7C372E8CCD83F33E490FFA6FC98E /* FIRInstanceIDKeychain.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D9623D4DB3EC29B6AD964E55373B73D /* FIRInstanceIDKeychain.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D0B316EB31C82970EA3CDD77771677F /* RSKInternalUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 59AFCE36072473C2A6DFE33FD5ED1CB2 /* RSKInternalUtility.m */; }; + 0C631B56D84BB38DC0844EBACC4893C5 /* EXLocationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = EB9FF0DF4C75B9340F9CDC0C66BD64CE /* EXLocationRequester.m */; }; + 0CC4F7DCEE16F07BD1A2F66B04A3CE94 /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E93B22E06F3F818C0549A563FA597AC /* Format.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1"; }; }; + 0CD8F20434FF990AD37A2BE53B96C2CE /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = FC508D515D80F54B5CB658FC4FE3802A /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D0890CA940BB0293A255C0E94B42F55 /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B5E45B354A0254C5B403D2CAD4B7E5D /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0D2EC3F4873B4B4E7B1FC9F4CC2E22B9 /* FIRInstanceIDLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C0A208B50BC7DD0CB91ED9CAC3066BE /* FIRInstanceIDLogger.m */; }; - 0D30CD390B6D3320577F2E31BF2D1D75 /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 15031C15CF029161D4506B5E7E21353B /* UMViewManagerAdapterClassesRegistry.m */; }; - 0E1F82B0315E6EF2CD942294686F45C3 /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 2764389E8ABD26D34BCDEF08DA7253D4 /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0FBC3916AAAFD9B34F65BFE3DDF349FE /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BCEE58EC2C9BB07E7BF2D8577775B77 /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0FBF6BE462F9B1EDF1D24CF41C77BC94 /* EXCalendarRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 42542E933DBB082E05C49AF7672B44B4 /* 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, ); }; }; - 114DC25941DB483B5F1B4CCC88E846EB /* RSKInternalUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E94C6CB02605A72F32BBE9875D6AC50 /* RSKInternalUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D6B79FEEA4E650E33F459FE3082C787 /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 08917358529F92D17A1A10E42995569A /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10079CBE0B4BBC23ACA55C510D9AEBBC /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1963F1B64E822FFD9F85C845E96CDD3 /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 103DA7B414BF49A08BA50D069FB6B023 /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = EAFCA8120582B09E114FCFDD9A23AE72 /* UMNativeModulesProxy.m */; }; + 108779003B600957723828970010030B /* UIApplication+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = C74F06CA3396E64F308DC487B0BD1373 /* UIApplication+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1095E8FC04BF5D67388CD27AF735EA00 /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F85AC598FF2F29296A236C680DCA985 /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 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 = AED47D832918D2F773C361B9E879A300 /* UMAppDelegateWrapper.m */; }; - 12F4239975FB8BB879FDFFE9B21DF366 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = B869CDD3AC893C911F4D11369122E112 /* UMReactNativeEventEmitter.m */; }; + 120A4380D0839C6F5B6B68F7016C0670 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = C2549B1AC6EA7BD6F62C4E7941527711 /* bignum.cc */; }; + 1283DAA1D9FC84DF5395D2C8E052B779 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = C825FBB26BF52BDEC26C94B66C3A232F /* EXWebBrowser.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, ); }; }; - 15272A9EF9C66562FE248F896E4960A8 /* RNCWKWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C84EC04AA33468AE8AD356D9EE50376 /* RNCWKWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14990E19CC1F4AAB0A67F65B096306A2 /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = D31213551926432FA2202EC56108DB24 /* bignum-dtoa.cc */; }; + 14E99D03ADF7EFE1CA79395D9D2725C7 /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = DDA9A501E1D2AD694BAF879CAC6322DE /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15102F2D3CDAC808EB918EF23A079DCC /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 6BEC5CB1F4874AAD0138959794C1CF02 /* QBImagePicker.storyboard */; }; + 15C551AC7F38881525D0F642D73D1C3A /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AB34758CB6226F31950615104850E69 /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1673D44D7A590A1B50A0CAED06E77AF7 /* Duration.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AE3A44AE964E532BF5CCB7C7ECBF108 /* Duration.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 16899D5B9029FB6D5A400783A624C1C8 /* EXWebBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = 47679C92B0F5F5D2E31EB99308F97D6A /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; 16CBCCDFDB0D21E6C825EAEC1409161D /* FIRInstanceIDConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = C028BB3DFE4D8493D4B9D24B9C3BFDDE /* FIRInstanceIDConstants.m */; }; - 16E7AD971A8C64747F7B1E5207EB28F0 /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = EE2AA20E2AD02717CF275C0E9189A190 /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 16F116F4E36C6D1AB836AAF616C6AB78 /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8EAABB04C2CF955ECC9E123EE5FB00E5 /* json.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1"; }; }; 16FB16123FF73194DE095D2013CC244F /* FIRComponentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 4124992184BAF918EAD45DF0D83DA693 /* FIRComponentType.m */; }; 173458C6AD8D4F6E0191F1C0B4A48CFC /* FIRInstanceID+Private.m in Sources */ = {isa = PBXBuildFile; fileRef = 59B18FAFDBF7C97CA820446A7A40E385 /* FIRInstanceID+Private.m */; }; + 17A36219C987CD12C5A1C50EA590D11A /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = B82BE299CE92A0CA59F698F43CCAC2CD /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17B03B21474472F7EB23CCA083EB6CE0 /* EXCameraRollRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 294737B114A0D475D14C2052D6A30469 /* EXCameraRollRequester.m */; }; 17E0E641870D2DF76133B0E009B014C4 /* Duration.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = 630D96CF42C5D421F8148108C056654D /* Duration.pbobjc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17F16EFB28E1F873E9631C1A44DE6664 /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = D091FC0DC178A789854D3E0FB04C0E1D /* UMModuleRegistryAdapter.m */; }; + 18508BF0F3BB7FB5771E7208D859296F /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 3728B77F228FC2A67AF140F11276EAE5 /* EXHapticsModule.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, ); }; }; - 191C15F88ACEC13860AD338F208BDDB5 /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = ADD49CF465CC1C1013069EDC541177B8 /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 193DF369F46034C60741C9763C1502D4 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 181D20640F43D8CB7EC6EAB505B86318 /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19DA459F76141465AD1CF04F5EA09CD9 /* RSKImageScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E62079D73ED4FA523DE774809C97A9F /* RSKImageScrollView.m */; }; - 1A6BB3682752BA9D73FB55FEFB1AB20D /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 22293BA067850112F37BE2951B912138 /* signalhandler.cc */; }; - 1A9415BEA6DB23DA7731B2A53D359C80 /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = F7EA11BE35B7CA5D5E7E11A26C8F6926 /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1B5BCA7CE5BC8921E2C38DF493C52578 /* FIRErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = B18FD72A3EB5A96181A5E65A20158C48 /* FIRErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B9046261DFEF117ACDC9B34FA8DEE06 /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F500F244A8BE5C011E7A633CBF2C1C48 /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1DB06C995ABDDD738BFD40217EC07EF7 /* FIRLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = A7FB755B6494E4CBB67B357467B03FBB /* FIRLogger.m */; }; - 1DEBCB73B19589825892640DDE292CB0 /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8C0384F4A1B46D20CEA298035E7C5855 /* symbolize.cc */; }; - 1E6278602D1CF09ADE3403A594CF970C /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 652511981B0F8642FA9502EA4DD3F578 /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E7F403014ACA53DDDFB3DEF4C6AA08C /* EXCameraRollRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D6F821E2B93CB3EAEBB300E3BC4C28E /* EXCameraRollRequester.m */; }; - 1EBAFA1A03F2E3E913EEB82D2E336529 /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = 86144205600214BECA2C93CEDC2A76D7 /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E08C088A919FA2420743DA08223E0BC /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD302C365DF1C82AA1668E93CD114EE4 /* ScopeGuard.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1"; }; }; + 1E0AE700C88768E5EDA7B4563BC1A3A3 /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 444245D3CCBAB1A0DEEB6D89589ABEE7 /* cached-powers.cc */; }; 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, ); }; }; - 1FDE19E4BA8FB59C0436EE946176B1F7 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5C33BC63D922FE7C50AA2D12F22D7B7 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 1FE4B39F4357606FF23D1632FD3BD1FA /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C92D3016EE0A05A1A5AB6FF66E30D27 /* UMModuleRegistry.m */; }; + 1FF0C7270BFDDC1D6C414CCE7C568B17 /* RNCWKWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = F6A7BBE3D4CD65903B4EFF815ABDE360 /* RNCWKWebView.m */; }; 20BA40C421853310C98499D9267451D0 /* GULNetworkURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B254C6B665958AB2EE0FF41B55E87D9 /* GULNetworkURLSession.m */; }; - 20C667BDA560C5D5EE23F8A14D3BA8CE /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = A8CDA8BFB119B77D80923A53428B46D2 /* 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, ); }; }; 21FB802D68798B4FC220407A9B8493F8 /* FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 3898F03FA6F5B8EC91001D51A7ADCBF2 /* FIRApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 236ECF383B5A8106E444B22147FCD04C /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1306A874922522A25C5081B057468E59 /* QBSlomoIconView.m */; }; + 2383940FE81981D16147620523B0D57F /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 31E8C0EC908EFBF797BDA3886C3D1853 /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 23AE483DD4588EDF9F5589977687F69F /* FIRComponentContainerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = EB42AB4A769B8206971D52BD7228724B /* FIRComponentContainerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24725EF526B66947DFCFB06F8B0442D9 /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A2B404A204EC7ECF8D87A17A9BEA94A /* EXPermissions.m */; }; + 24989034B4FF36923DB70901F6A931AC /* RSKImageScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E62079D73ED4FA523DE774809C97A9F /* RSKImageScrollView.m */; }; + 24A2C85FAF0283C13C58379503EEBC1C /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 88D5B80B7892B20000CBBC322AFEB611 /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24F673E57574E56F22930ED472B9690E /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 98B5299791527DBA7C5792E72B21C9A1 /* UMReactNativeEventEmitter.m */; }; 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, ); }; }; - 25FB2C4E77E7812B7D8C0D3A7D414EF4 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 8C12D44C3342E3DCF923AFC75D90DFC1 /* en.lproj */; }; + 26668FB66EE4CACAC65091E5860FAEC8 /* CGGeometry+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BFD6F1262D7CFD8E1E86E5A80CB5B15 /* CGGeometry+RSKImageCropper.m */; }; + 267A50C4F892793B3ABF4C5AD43020BF /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 85CB4225592A21E0AD70BE53C1742166 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26975DFC30DC5BBD7D1BCA6E41299E6A /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = EB02A3ED5321F1790F5279780F7469BB /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2737F6E6340E86FBD4A9E4BB6A3A0AB2 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 8C12D44C3342E3DCF923AFC75D90DFC1 /* en.lproj */; }; + 27DF9FBE452E6ED38780CF74380DDCEF /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4640D3CB0EE847C77BD022CCBE88A4D /* dynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1"; }; }; 28AA073E13CAF3B9F03213FB3DBB51D1 /* FIRInstanceIDCheckinPreferences+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B18D92F9CCA81F237800EF33FA92CB4D /* FIRInstanceIDCheckinPreferences+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29009255CC9C1CDDBEBA9CB9BE62E37A /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = 40F491DE7356E729E0D9AF02081FC86F /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A71C48032E1E98E73C093F9EF830C5E /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 6BEC5CB1F4874AAD0138959794C1CF02 /* QBImagePicker.storyboard */; }; + 2A7E8E0D029B7F57CE46E63F64C088DE /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3E8F76B40B500DCEA87C0C65F9EC408B /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 2ABD5D9936F366E87BB7EA022DE746CF /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 07BA55325F41EE4F1999CF6A35B14607 /* EXPermissions-dummy.m */; }; 2ABE0C837D40AAB898715DEBF573F8A0 /* GULLoggerCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = A2412265E936E16EF8CAFEA80AC61815 /* GULLoggerCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2AC667A039C6F93324C8BEABFAC7B22B /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 04387AC8C6AE41C3100B505F8335F30D /* QBVideoIndicatorView.m */; }; 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, ); }; }; + 2B746BDF7C2F5346A16F9C0DACE09C94 /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 92539DBA7C237CC37CC174B30BE17026 /* QBVideoIconView.m */; }; + 2C4587AD15A7973ECE6637EDA1DFBF08 /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = C236DFB790202119E3C3AEF84324195D /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C520E5225CE3BE7F6AADECA719E57AF /* FIRInstanceIDCheckinPreferences_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DFC645B36E2820CBD47C45BF1DFEE72 /* FIRInstanceIDCheckinPreferences_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C744E87E37D5236489A29A0CB2AF69C /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = 86144205600214BECA2C93CEDC2A76D7 /* QBCheckmarkView.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, ); }; }; - 2DAE27CAF22831958211EB5425DAA133 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6296729557B4C266FB879564A0339D94 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E5F4C17467F811E838B7A317CDB774E /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A5877F204271B75F61979E4D62EED9DE /* UMReactLogHandler.m */; }; - 2F059F9ED96D5557315B4A75F8ED7E1E /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D31FB16267CEDFE0A248C8808965ACFF /* UMReactNativeAdapter-dummy.m */; }; + 2D61A2747A7ED3643B239BF6F190E30A /* EXLocationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 88E76D5B5A7228C45C5F7EE61BF267C1 /* EXLocationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D822AD060B6E93CBF52A50B8AC79A16 /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B5BE265E3B784CD1EE0E130ACA7A6B34 /* UMCore-dummy.m */; }; + 2D82EFED8669F9B1A6C32C34350B3B15 /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FDCA142EC43F5FD5C4EDD8B11E95115D /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D889A37C6B0DCFAC73E5AC673F56C1C /* EXCameraRollRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = B1DA2D11537DEEE2E880AE95F8F1A720 /* EXCameraRollRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E23AF988F9FA0125124EA01ED7A2EBE /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D595738BAEF34FC2D4B34A21C7C9A6D9 /* RNImageCropPicker-dummy.m */; }; + 2E31E0B3EBD402CEFF64891929293A70 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 6946B862376ED5B6185DFD59CE9BB4A5 /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E4931E8207986206E7AB09BFBB585EB /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ACD7F22D2ADFFF061F44FD5B68C50B1 /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2F663F4A45768143AA9425436399F4CC /* GPBDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E2D1F54C052F13ABE73A9D113CC6625 /* GPBDictionary.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 30620B0A2DF2E4674996FC7F3EB7AFF7 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F7BD618CB825D89B530EBB0353AD3C2 /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 307CB65169E8986E7C907168C1FDDF66 /* EXAppLoaderProvider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F19FED734B7F70EF9D3B42F74FC53593 /* EXAppLoaderProvider-dummy.m */; }; 309BB13F15CBF5522705735F160B9AEF /* GPBWireFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = ECDE53F648C58F537F5674A4108DEB3E /* GPBWireFormat.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 30EED7A34D9A1000D1EB522E97493972 /* EXCalendarRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DAF1F1F927AA08E3439B90E191B28F7 /* EXCalendarRequester.m */; }; - 31652EE4865923E9E0621F588CCE0F59 /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ADB6ED8A29496CC4553AA21ECE75FF8 /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32223005684D6CF88183D9D23DD0314B /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 29B90A4C820988D90E6E749DD6C6BE27 /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 30F5C06168F46353FFBFD6E912C68A85 /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 92D0C869550966421DB4CB3F899284E3 /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 31CBD3568692203AD941D320448A0167 /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = B3048495178F469E7CABD01B41AF85B5 /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 330B6B072E57ED740584170F1D33629C /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 103574EE79ABBE811AEB17950476C49E /* EXFileSystemLocalFileHandler.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 = 6C38D0ACCB62EC24B6C136B2BA7C082C /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33519CEB7A0FFF0BDB8526C28B0B5F42 /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = D32A10C7B12C103D25936C5D0DD6A572 /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33D30069E5C75CB326A461575D87B8B7 /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 3C8C72EC2BF76E610A9317B92C3CE3B4 /* es.lproj */; }; 340C84373AAEB32501315E9FDB7B595D /* GULReachabilityChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = A56F7E48750D68E7167D657A3975D705 /* GULReachabilityChecker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34586DC0FB99C76FD4D412960D4B6770 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F92900861A1536FC2C06F634018F7F6A /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1"; }; }; 3487EFEBA5B19AA89C3A61E8C80C1346 /* GPBCodedOutputStream_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D1B92FF422855E7F24CBC59BA2A31C4 /* GPBCodedOutputStream_PackagePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 35622243F9987DB6618121E3E18B1CD3 /* UIImage+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 27BA61510074129562C639CBA224030B /* UIImage+RSKImageCropper.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, ); }; }; + 36FCF3244E77DBC026EDC0EA1256FEFF /* Pods-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DB26A8DCF5A6E3B4A1BC4152C6D9DC6C /* Pods-RocketChatRN-dummy.m */; }; 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, ); }; }; 3830C1B857C5717C7DBC2CCC16306EA8 /* GPBExtensionRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AF2CE3186BE637555516FB742354EB9 /* GPBExtensionRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3860A26424CCEE7DE5045519CD46BD87 /* Pods-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DB26A8DCF5A6E3B4A1BC4152C6D9DC6C /* Pods-RocketChatRN-dummy.m */; }; - 388D2B4B446E01C7E46D8FD1833087BD /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4677F4B7C5DD8E2D1715C503AD8503C7 /* 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 = 89DC3DEAE2A8575D95A57DBECABE3E18 /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3975A189814E8B3B79F9566A9FECC624 /* FieldMask.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D1AC57504505A93DD8D0EA687056CBB /* FieldMask.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 39BAD9A143AE7162CFB5A315931C5CED /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0A3DA35AEA3A1AB76A6F9C584C532630 /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 398B24E1324131CA404AD9281F798AE2 /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D9CDB7FF6CC72986A7254EFF8F2BDA82 /* UMReactNativeAdapter-dummy.m */; }; + 3A388B259D09FB8E25423C08A1A047B4 /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 44DDF2BAF0C925DEE6EBCDE3097B3BC9 /* RNLocalize-dummy.m */; }; 3B1FAF90703091E00ADB644BFFBFC2B2 /* Wrappers.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = 19D813648EB603BAF163D4B61F2C5691 /* Wrappers.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 3B3BF28187C434736C2B00DB53738A7D /* RSKInternalUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E94C6CB02605A72F32BBE9875D6AC50 /* RSKInternalUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B61486774311C2034D9B8F7C0AE137A /* RSKImageCropper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FE503EE8D17258B72EFA6478A1EE7BB2 /* RSKImageCropper-dummy.m */; }; 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, ); }; }; - 3CB870645A4C7576B545666AD935A67E /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = D3DBBC941A09E991D876BEC8E8857BC8 /* zh-Hans.lproj */; }; + 3CED9B0AF23F6823DC41248D93C778DB /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = D3D924AF6D72DD9606771699E3E1312A /* double-conversion.cc */; }; 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, ); }; }; + 3D3E47E5F83FB0562F67CCE9A4AAA4F1 /* EXSystemBrightnessRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 50FBCE2B22EE450CFFE2969D7BC90CE9 /* EXSystemBrightnessRequester.m */; }; 3D7A9D2E7CDDE746200A0F28D5EC3F0C /* FIRInstanceIDKeyPairUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = D4D269F2C9249EB3191A02DBF3D4391C /* FIRInstanceIDKeyPairUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; 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"; }; }; + 3E5151D480C1069B6D43F1F4CC07AF74 /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5E12617144A23133BF6F8F4556C822FE /* logging.cc */; }; + 3E63E9AC7EBE362EB7937198398E566C /* RSKImageScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 13D445095FC98E1953690D565C881FDD /* RSKImageScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E860CB0288263AD9E4AC0ED1F3B32AD /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FC457114AD13CE6579C59563744717C /* UMReactFontManager.m */; }; 3EE027B293A0E5D138231C2B2DCCB39F /* GTMSessionUploadFetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 42D616CF93145F8AA0A8CCC0613DF94B /* GTMSessionUploadFetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 402BF1ABC5BFC9A332A8CB429A117AFA /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CDA25D70181B834891ABAA4688D1436 /* react-native-orientation-locker-dummy.m */; }; + 3FAA78E7F45F7BAA1325594718AAA891 /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = ADD49CF465CC1C1013069EDC541177B8 /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40E02135B467F425AA7FC5D7C7DA09FD /* EXContactsRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = C129E87286A5E0A944F80256EEA129C4 /* EXContactsRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4123AEB246F2BE1F3D2BC7F5456F6701 /* FIRInstanceIDKeyPairStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BC6169FE9172EC3ECF6AD711B177B87 /* FIRInstanceIDKeyPairStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 416814C2D48B4A295BCA87D2928193B3 /* RNSplashScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = C5D09C724074FFB6B3993510F3FDF0CC /* RNSplashScreen.m */; }; - 41C9EA6EEEE1D42DD14D721F1BF3DEBF /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = F8B76EAD3E3566DCBE6DE74D2760AB72 /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 412512DFE06BF80C29382028C8AD6410 /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = A2B5536C4DF71588F097DDAB97B554F5 /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; 43A4BDBFF6D33D4C678CD2282411B3C6 /* GPBUnknownField.m in Sources */ = {isa = PBXBuildFile; fileRef = 83A553FB3363877DF058636D631A348A /* GPBUnknownField.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 43B9F3FEC650EF0D7558B4C678EA6AF3 /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A037BCB051F40EE86B2C4B8F2057269 /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 441AB0B9092C11279AF285D94AA51C76 /* RNCWKWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 96EC93A96E6C4FB5BC6E78022F57080A /* RNCWKWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 441CC59E05CD1798A940EABEC9260FCC /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A5DCF2AFD8FE857EDD6C25965368B6AF /* EXConstants-dummy.m */; }; 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"; }; }; - 47503BC45734FF1EFF631B855D001825 /* YGMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 87238A610E2D73623ABB5A901A698AFF /* YGMarker.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 4866135362D9C0BD12AE44F4E5B4ECC5 /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = A5E0B7FF3A4315169CAFF25EF261953C /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 488CDAE7D04BDDE829743A0A96D791E9 /* EXRemindersRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 87C4A69892016B0B60C8BA6B6EF12DDD /* EXRemindersRequester.m */; }; - 49D5AE148EDE23C66E04C17A9DF3CD0E /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = D3D924AF6D72DD9606771699E3E1312A /* double-conversion.cc */; }; - 49F7A69B92772CB80D83DA5C3D49D322 /* RNCWKWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9F8AC8C58E24BED5CED6DACF4BB663 /* RNCWKWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46AC4867CC0CAA171EFCA1441C26D3F8 /* glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1590D6871326CFE7CA44DFFEA384FD03 /* glog-dummy.m */; }; + 4747F8766746305A6925482005F441C1 /* EXCameraPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 73BACE1E26C389EBA51AA40934853955 /* EXCameraPermissionRequester.m */; }; + 47FA7FBF77B1213A486EDFD2800F77B8 /* DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 413420DD213E1ED35AB2EE5950DB489F /* DoubleConversion-dummy.m */; }; + 481EA95DDF7F93A39B23F9F3E52A4015 /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AE74B13A862110F930B2402431A65AB6 /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A6CB5D2B75FBD7AD0D61CEE7025FF99 /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F0F7FF534B0EB951C7D599177A02A07 /* Orientation.m */; }; 4A91A6BCDAD59855BD5D82CE6550FCB8 /* GPBUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 50BC3074BB06BC98F23931C70A9B5C19 /* GPBUtilities.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 4AD199607CDC465914C0BBFD0E9B1E3C /* YGMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C1650F4EB619145F2D719F0300CC33E /* YGMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4AE2B72734E977F168DB5A87605B41E7 /* CGGeometry+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = D3BF9F21DC67AEF716304B2F5468563F /* CGGeometry+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B36E488844F33246DD27858C65EDED5 /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = A5A4EBD6153F5BA37A774CCDBFF7CBAA /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C1B1DE4A1750030209E75D1C6CC5BD5 /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8C0384F4A1B46D20CEA298035E7C5855 /* symbolize.cc */; }; 4C51A4D164F0402E77AE447E5D8F9760 /* GPBUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 565D524286473269CBBCCFB3B6EDD6AC /* GPBUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C5DDE8C2F6EA492258B20EB6EA23E2C /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 56E22C479E2A34E95DEE6C2FB1082AC9 /* UMModuleRegistryAdapter.m */; }; + 4C90C559212E7C72ACE990BF3F98A6AF /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3219006E7D6EEA1CA01EC2AD1F8F1AC6 /* QBAlbumCell.m */; }; 4CB7E74A4643875B43BC4F7B400D0674 /* FIRInstanceIDTokenStore.m in Sources */ = {isa = PBXBuildFile; fileRef = CC02B9C0F1CEDC2E11D97AAFA570B60F /* FIRInstanceIDTokenStore.m */; }; + 4CB929E427FE18007FE5916C3564C473 /* bignum-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 3209D52223DC90072F96949AAFFFEF3F /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4CBC9D1BAC0F29544CD76808F4C57760 /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 56FE2D4F756CFFB6D0493194DCCEFA79 /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4D6204372A459395461F7EF95EAA3E23 /* GPBExtensionRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = A0682B4FACC89766A12837374BA1E199 /* GPBExtensionRegistry.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 4DA88515CE26D1A0C228E7FB7EC34D8F /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 92D0C869550966421DB4CB3F899284E3 /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 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"; }; }; - 4E0B77D7B1576BD705F2190A63B0CC6C /* RNCUIWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F07D8DD9CF1C67C9C705550A34FDB2A /* RNCUIWebViewManager.m */; }; - 50177B324A41A9073653BC0A0C5B3A49 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 21F6D17D876AFD5FF656F7D8EAD43104 /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 505ABB94FF730E0E224C8DF507B599E6 /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 256F73640791D9E203ABC811B5F47544 /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4EAC303956D8C220AD690CEAA3F90684 /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = 579E21F0E94CEF5650570F6CF8841CC8 /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4EE336A784B5B34B6E71FE95F933F1AF /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FE8D0571806DA652678B5BDAD0778B2 /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 50754F2E6A21FF214AF3BF6D6EE31B2B /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D7001F9CBB5C587EE6303E5F0CB948FE /* QBAssetsViewController.m */; }; + 509F8E74467ABEF4F6A5662CB44A300A /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 34E0A28899DD0A74E41D4C7D43982744 /* fixed-dtoa.cc */; }; + 513E9CF20C582C287B8297EB1C08AF22 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 181D20640F43D8CB7EC6EAB505B86318 /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51C79C88820B5197AB3CDB9376396195 /* EXCalendarRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = F8412DDE4D4E3A70EECC7B94EB62FE8F /* EXCalendarRequester.m */; }; 51E9C1CE19E5F6374631FAF47DF80AEA /* FIRInstanceID.m in Sources */ = {isa = PBXBuildFile; fileRef = 1949B0542A654E7317ADAEEADCD4683C /* FIRInstanceID.m */; }; 52A745CB46EF3FB68AF264176DED6FF6 /* FIRInstanceIDKeychain.m in Sources */ = {isa = PBXBuildFile; fileRef = 644949DB617A048149E047010C6D0980 /* FIRInstanceIDKeychain.m */; }; + 52F3C55FB5CEA5AAC312CE5C2FE47A77 /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DC7C3515580940D0C1C64597E302966 /* QBAlbumsViewController.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"; }; }; + 552D800685C369CABE1C181900114A52 /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F070DB8778F84DDDEFFBD0B665025401 /* QBAssetCell.m */; }; 56190CE5DD772C01F08022D6215F5298 /* FIRInstanceIDTokenManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D37C4A1FC44FCFDA1CA04CE747500EC8 /* FIRInstanceIDTokenManager.m */; }; + 5626EEA5122A67231A1B681E76F8AFDA /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = A4B37481584A56108ED41687F5618E98 /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 563242DBDA35DDC44EF47B2F10248BB3 /* FIRInstanceIDTokenFetchOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = FFFA6C4730580F08F48B1B15E8603BB6 /* FIRInstanceIDTokenFetchOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5726EBA4AE4D92C9B795ABF869D8B532 /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 08917358529F92D17A1A10E42995569A /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 589B2A83B601095E16EB8F824BC0BAB9 /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 66080C4B1F21D38156943C8CEF895FEE /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 590169C3BE81E6FE9B67E19D5DCFC107 /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EA29490485CCCD275CA36AE44EFF99A /* EXWebBrowser-dummy.m */; }; - 592F5C115D492157BAB057FC36627C58 /* EXLocationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = DF554FB95B009429E79E59424B3DA457 /* EXLocationRequester.m */; }; + 5672F848FF959C3A5CCFA56FE0288E79 /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F1FEB9D9D8CE14E47D73F5BAC2F1100 /* UMAppDelegateWrapper.m */; }; + 58029C39AEDF4A9633DF41BDB28DB9A4 /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = 836041EC0AD5DDF38A82E7BCE68A038D /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5863FE965FFB2C06DEBE2C663352A2B4 /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = CA51B3E7AC9492D6D8433A8F45D032C4 /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 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 */; }; + 594680F9B579D06A192B669A7B3CA711 /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 61ADF25B04F0CA8332EF8296165904D3 /* UMModuleRegistryProvider.m */; }; 59DE09E33DAEFA2A3334C37FCF7D5349 /* FIRInstanceIDCheckinService.m in Sources */ = {isa = PBXBuildFile; fileRef = E587B3F2F5ACE664165F9212BAC58A0B /* FIRInstanceIDCheckinService.m */; }; 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 */; }; - 5B24C61116DA3149D83CCAC5B8D4F6F1 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C88386675428D169FA0E1D4B4DA5968C /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C25F0E8F29D70CD722B76C5B5E10385 /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FD3F039FB2B2EE427D3AA41C69F3B553 /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5AD2D50EA0EA95CD2488782E90B478B6 /* EXAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 77EFD59CE8873E857BFA58366E5D2E9D /* EXAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BF763F8EF91BF90AEC8E80EDA35C4F8 /* EXAppLoaderProvider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F24BDA301DF015046877497F11CA84B0 /* EXAppLoaderProvider-dummy.m */; }; 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 */; }; 5CEF4EDF45E80D8B5AA903EBDE690166 /* FIRInstanceID.h in Headers */ = {isa = PBXBuildFile; fileRef = 822E127F41D73E1A442BAE48920F7F3E /* FIRInstanceID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5DBBB91027255885AAE7B300C895779A /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B2DEE9D6605950D85764B62EDB52E7C /* EXConstants.m */; }; - 5DF5101487DF8545DD8F50F68AEDAF45 /* EXAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 50FB219D676A89DE3DF6CA01AB58EA75 /* EXAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5DB6F74643B970AA82BC0826D897B76F /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9D1F22F7FE6DF1B9159506E4F4C3A19 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 5E0FD4DD66EA3A012339F12362F0F7E8 /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 45703846CE1DB61639D42106EFF7B9E0 /* ImageCropPicker.m */; }; + 5F45BCC8EC94CF7438E750250129B41D /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = B74D29A2F898D94C5350EBC0366E0678 /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F8E7272D376155681119E46E67DE455 /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 533EBD8A99F93F6E2944044F0931F51D /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 603EFF9C2425B63CCD4172D7C4F6137B /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C8B860B45EC3D0A6958A4F91C0490A3 /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; 60D20AECA7D7AEC05834C1EE9F61C483 /* FIRLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 35327675F6CED1B41870E375518BCEF8 /* FIRLibrary.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61BB6BAC8B94E35CBEA12F7DCD520F8B /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BD2901D3D060B3500A5D1F553BBDCCB6 /* RNCWKProcessPoolManager.m */; }; + 61C78497A5B5B2C9EB5B0763B880A982 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = B48203EA174ED2282FC881C38A2BA481 /* de.lproj */; }; + 61DD7BF22840C068207B9CFDC5E7CC4E /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B8DEEC8ED6085B5E1A67FC82B28BCEB7 /* RNDeviceInfo-dummy.m */; }; + 61E3828CFD80117D5A174F61CDFD4F5D /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ACD875EB7DA766798B3BC381F195E89 /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6202F0EEEFCB1ABE4656F4975FF294BC /* FIRInstanceIDVersionUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = A9209D5A37DA753BC42A9DD8365F66BF /* FIRInstanceIDVersionUtilities.m */; }; - 6262BBFAEBD554FF9B9CB958D38B9AD5 /* EXSystemBrightnessRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = F7E663509EA96636AC0E176E79FAD244 /* EXSystemBrightnessRequester.m */; }; - 62825760B895542D30194A59B53D82EA /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = BE50045174443690244903BDE53B9ED7 /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 625B3FBE5DB5D7FFA8E6A04E481B6A86 /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F11B93ADAAB6E4B537D574E0594197D /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 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, ); }; }; - 648A6D0CA6388A9FCC2F726528935B24 /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D1CDE9B63F7E1740A5800E02B9A0CC1 /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64BBD69E7CDFA57FAD0D8A9EEB9DE66C /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 6697EA434D23502A2D809B6B7E6E3A4B /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 63BB559BC6DDA8726779E5435731BBF1 /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F47148CA0E691E6075E92F8BD369FF3 /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 643A8231B8A3EDAC13A260049454CDE2 /* RSKInternalUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 59AFCE36072473C2A6DFE33FD5ED1CB2 /* RSKInternalUtility.m */; }; 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"; }; }; + 65E649693149B794075B660C12F91164 /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 03B897573520966C84E88B1BBC37057F /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; 661CC08A40D06826CCC5F38ADBF35DA9 /* FIRInstanceIDUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F2B2C4D4A5F2B2E0F49A001AFFFA329 /* FIRInstanceIDUtilities.m */; }; 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, ); }; }; + 688ED48F88FBB74BA23DB7104B2B82A8 /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 55D0B57585A24C53FE4784D0EAC36D02 /* UMViewManagerAdapter.m */; }; 68A30E4A38A40F3C00132E825FFB1295 /* GULNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = B7076D6BE9B38FC1611B4AF166C11FB5 /* GULNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 695B07F6181C65831FF9393444383EC3 /* UIImage+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = D5C124EA6E1C40165CF089F6400F47EF /* UIImage+RSKImageCropper.m */; }; + 694EF4024A7E6F3ECF40BEE8283FA8F6 /* RNCUIWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BEA35EB4497F17E40B95397FBC0555F /* RNCUIWebView.m */; }; + 69503456C4222FE524622847A80EBFAF /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4256FD74190E181955C125070B01CCF3 /* QBImagePickerController.m */; }; + 698D396178A8C90E5E6D03AA69FE4EB1 /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 131A33F73617323A59A2341E446E70C6 /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6ADF36D4F87995F68DAE551D7C4974E6 /* FIRInstanceIDAuthService.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BA7175A9908886E248699428C067D56 /* FIRInstanceIDAuthService.m */; }; - 6B31930D61CE82588E6115C8E41479CA /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 8912ACB78DA0AEB7F2A25A5FF3B2F359 /* EXFileSystemLocalFileHandler.m */; }; - 6D3913895B99C9CA1AC7B01A3FDB3E40 /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F679BDFCED3A61C87F3B0D401DDD7B7 /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6EE78D91771E29D2D7E741FCA2F1A07B /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 22341E1A85056C1D8783FB8D8ACBB465 /* 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"; }; }; + 6B24587056B43B44A33D33481C1F0B7C /* EXCalendarRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 24CEBF77A8430360D09CF0952646D530 /* EXCalendarRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B9FEB48DD6D36185DA6626F5867E42A /* YGMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1028CB80A5A9E17F7C33235DA2DF6975 /* YGMarker.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 6BB06CB7446BCBD59FD95F327DF028BF /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = C1F7D91F79DF3ECBB3A4888BEE5178A7 /* EXConstantsService.m */; }; + 6E06CAAD35AEC74FAF0E9509E7364CCD /* RNCWKWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 88AE41598E7A1040BE84A14DACF0D164 /* RNCWKWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E793C782492F5837A74844E4CF90694 /* react-native-splash-screen-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A878A65FCD21B42522DAB206BF0A19C1 /* react-native-splash-screen-dummy.m */; }; + 6F4F11E9A35E255F494C4DD173A16519 /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = EC099F1FF656258700287FB2F0D597B4 /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 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 */; }; - 70035D2233ED70D360A747104C05FF12 /* RSKImageScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 13D445095FC98E1953690D565C881FDD /* RSKImageScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 708B5E67847F332FFC954B77D1526F4B /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = AAEC02D46FF3FDA7E25A8D9C4F0EA4B2 /* EXAudioRecordingPermissionRequester.m */; }; + 7008E067E9843C26A3E59B6C95690465 /* RSKImageCropViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B4EDA879A5FBC25007AEDD3699E0135E /* RSKImageCropViewController.m */; }; 709AE21BF5777B1E8A4232861440024F /* GULOriginalIMPConvenienceMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = AC827C8C29D1F41334B1DB02F51E1472 /* GULOriginalIMPConvenienceMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 70E9397C6BB30FA1DBDF9A38F51C7250 /* RNCWKWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = E2BCC7850DC89B9B85C8AC790046B7AD /* RNCWKWebView.m */; }; 70FC943F496D3240C9137A4DE738E07E /* FirebaseInstanceID-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D19E2F79B0006C6B374700D05DB3D121 /* FirebaseInstanceID-dummy.m */; }; - 71A3E5C89259F58C0806BFDC533996C6 /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5411838FCE29199BF69C2638D1FBD5EB /* RNDeviceInfo-dummy.m */; }; 72149BE83C816B41E8FFE418B46AFB6A /* GULNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 05449E32192EDFA22803A46B68E16576 /* GULNetwork.m */; }; - 72F769711E01B4FD1FAD993242D3F395 /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 444245D3CCBAB1A0DEEB6D89589ABEE7 /* cached-powers.cc */; }; - 7349832191051EF23410975D0DDC12C9 /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 907624C2949E93EA378ECBF48948684B /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 73C6958D837DEF22E03B20754914A653 /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 92539DBA7C237CC37CC174B30BE17026 /* QBVideoIconView.m */; }; - 73E22A82990FEF2C708146F5C729A265 /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = BFD1A9691D63084D5A6DCF9E62ADE95A /* RNSScreenContainer.m */; }; - 73F555B0BEB623056B12ABAF5ECC32F8 /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A6A78AF7C4FBA72DCD931B7BC3EA363 /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 741BE50BA5F881A3983CB7F192225344 /* EXDownloadDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 65037438147F52283E3C971FB2D6FB2B /* EXDownloadDelegate.m */; }; - 757F5F4560089A27289BFC45B8E28881 /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = 7261558D673771339424C5D58B879B6B /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7276EDB91E6966C52CB5B4B372D9B1E1 /* QBImagePickerController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D38A9993CEE1E3C4E749510217E641A6 /* QBImagePickerController-dummy.m */; }; + 7563D4DBE0016DD8A873BB45F22E702D /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E300540F6845ABF97AD2DE0C032B9F00 /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 75F990944B9DC6C6D5B1716536437CA3 /* FIRConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C2812A321DB28C5A37D494A1705FA3C /* FIRConfiguration.m */; }; - 761010BA374317F8FF28DA5C6CAFF92A /* EXRemindersRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 8273F374BFF1861CEF7C786EAE150E18 /* EXRemindersRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 761996780CA163E128F28ABD31CEEFCD /* RNCWKWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 68B0335C8C9575C0D4D35D706F2044F8 /* RNCWKWebViewManager.m */; }; 761A99105ACF81FBABD996E0599C87F1 /* FIRInstanceIDTokenOperation+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = BAB0B55F0D83C13F4A93E9693F1E3CC0 /* FIRInstanceIDTokenOperation+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 76FA5693948D668AC5217EC0AF1C6B43 /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 599A4418AF75B9750AABACF579E38163 /* fast-dtoa.cc */; }; 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 = 343B71FB74F4137D4BD196841FF15BDD /* EXCameraRollRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; 77F8FA7C6F79F4D75F272601252E1F9C /* Type.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = F4769E4FD51434A8166BF6744B6DECCB /* Type.pbobjc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78BF1F947D28284C6C5B06636B83AEF7 /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = A104D2B5F9BD5AC254937A67532E27D7 /* EXAudioRecordingPermissionRequester.m */; }; 78F0EDF42B5AC108BCFD1344336F1A80 /* FIRConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = ED6B7E5A61EF834B72AD4268D2B5F4D1 /* FIRConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7966A7B37EDE4A16158C6E51151957D3 /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DAC47E18182F546764D55FB581B0E3A /* UMSingletonModule.m */; }; 7A0993D795B2B5412F5FC95EC6D0ECCD /* GPBUnknownField.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E1346157A8E9BD0479DB40C4BC2EA76 /* GPBUnknownField.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7AE7E376F2962DCCF0FD50168FEF415C /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = 101999AB5B0B97C082C2CECED8DBC351 /* Orientation.m */; }; 7AF3EBDE1C484B8530345B0872619C5C /* GULObjectSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0497F30F4BA1B5FDDFED9924942263B0 /* GULObjectSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7C0C75175218DFF2C2285DC38C128BDB /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F679BDFCED3A61C87F3B0D401DDD7B7 /* stl_logging.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 */; }; - 7D92567C3D2BB3E3D14D39DDA85C7BED /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 473C72E07377B720F9F4979C70B6BF3D /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 7E2D70653BE7B73F0EC0C16639FB856B /* RNCUIWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 86A72E4085A8D43C3A255DEAF8CC3E20 /* RNCUIWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7EB2FA62EBB5E668DF28A5AF463720E6 /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ACD875EB7DA766798B3BC381F195E89 /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F03EFD015F00706FB5EEEE3C1D42B3F /* RSKImageCropper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FE503EE8D17258B72EFA6478A1EE7BB2 /* RSKImageCropper-dummy.m */; }; - 7F27DC6073A61FD6CE1D3A51E303BB1F /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 58B94351A183601F151A075F186850AC /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F7874E65AED2A890EE014C9C7D58F1D /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = 579E21F0E94CEF5650570F6CF8841CC8 /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E188BC03A9DE76EBE0B9BAAB7EEE5B0 /* UIApplication+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = F3BCBFAD374F9A20E01958A9D04855DC /* UIApplication+RSKImageCropper.m */; }; + 7E245D3D607C8D8EF834BF4D7C21A93A /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C9472CE65B2987AE7EFC2B36FFA5C70 /* RNSScreen.m */; }; + 7E7B3C5710B0965626F2B943F1B87277 /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = 94DE6F857669CECD5259FBEBD3074D77 /* DeviceUID.m */; }; + 7F0CA823DBB91B5DC8EED2F209CECE93 /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 74DC67EAB7F949220770599CAE70C067 /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F48A23EBE7215801723E1DEE8E42B60 /* CGGeometry+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = D3BF9F21DC67AEF716304B2F5468563F /* CGGeometry+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F9C71CD3DC22FA32DDF8C464B64BD33 /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 3C8C72EC2BF76E610A9317B92C3CE3B4 /* es.lproj */; }; 7FC13E30F958F04ED3CD72295E97F1C3 /* GPBDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 711C6598936FBFA8F477E439F6E6A956 /* GPBDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7FF3C3998D7CF5C363AC1CAA696B6162 /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF43FE7122B9CEB6D0FA323C35976D9 /* UMLogManager.m */; }; + 80117C073B0A78AB13D95AC17AC714D3 /* RSKTouchView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D048B65D5401F3B11C2CD7AD3F5FDE2 /* RSKTouchView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 810868979DA15CB69CB0905779AF4DCA /* GPBCodedOutputStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E840F68F5A28B3739B3B51B8661A51C /* GPBCodedOutputStream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 812A16C10C210FF4B8DA78B84B5D1C70 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ED3F83DE07B36FFE21FC3707F2802DDF /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1"; }; }; 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 */; }; - 835E56F9F5292D4F57A447F18A9A9814 /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = FE5FAD27C99A05130348D63CBE4E2FF8 /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82EAB27EFD924F753449B1F4F01E5B36 /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 647CAD3A01C396D13D0A628FFBE2B15E /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 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"; }; }; - 8535E19C22D101F1EAB62C9FADB07224 /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EE49B8A769B1E7AFEABA9B6B0B88B03 /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85AAEAF6EF19A421B39EF55FE984D8B5 /* RSKImageCropViewController+Protected.h in Headers */ = {isa = PBXBuildFile; fileRef = 047F7C14D5BA3D10FDD5C05A933E8CD5 /* RSKImageCropViewController+Protected.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85B1BA370D18F6377A3D700A87F52D38 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1688EE83E950851DBD776306319028FB /* utilities.cc */; }; + 85233251D8E6162F3BC0BBE816ACA76D /* EXCameraPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = C61AB108A528C280D797DE03C7DF9920 /* EXCameraPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; 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, ); }; }; - 87009DE4171E62BC1882437222FE898F /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = DFA81843A3BEA6B23C67E5DB7105587C /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87223E1BEAB415F791755EBF9E002C66 /* Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E0C49F12A12309D11B852442959A76BB /* Folly-dummy.m */; }; + 8630F13E61717BB62E140E2061998045 /* 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"; }; }; + 8693629097C6317357D73FBBC11B68DB /* EXUserNotificationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 58C7F8430005FE0D9332F7E3CD0F2432 /* EXUserNotificationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 872A5EC6FBE21FFF0FBD35EBFC0AE94A /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8A867EAD11B13B4DCC454577E2E2F6D /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 87573135D3A3F281DFC82BFC3C2FB8B2 /* RNCWKWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C7E0B8C93DD0538EA0CAF8DAFBA04C9 /* RNCWKWebViewManager.m */; }; + 88451B6544DE9EDF9985C2E2BF8ACFF6 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AF7C91C90119BE95E102133FBF3DE500 /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 888A102CD6AD2792AEF9939A05FA723D /* FIRInstanceIDKeyPairUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 16DC3363E3A5DD93919EA65165E1DD2D /* FIRInstanceIDKeyPairUtilities.m */; }; - 89A91379BA936471ABD92062A42FE14C /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = AD804BCA6E3359356AE3E6DCD0AE9032 /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88E4BC9E8966A28D3466EA2342BE2599 /* RSKTouchView.m in Sources */ = {isa = PBXBuildFile; fileRef = 47A6A31F9EB2B51ADD0931A873E89C5D /* RSKTouchView.m */; }; + 89C94F8BA2EC8B117DB57592A8FE0FFC /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = 62F8F485A5510811BDB32502C8A5D81E /* RNLocalize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89E7411C03C755C3FC31BB47E9F3FFA8 /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DD0857E374501B3A29D206003C86476 /* UMReactLogHandler.m */; }; 89F3CC088617A30811815DFAC3D94D0F /* Any.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = 32DBB9B2B059385BF7CBC7C10F071CC9 /* Any.pbobjc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A78F6525B0B706FB3CAF33DDA6A023A /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 9273C9D88A0111ECC013272D7BB5B64A /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8ABB9154AF58BEE92ACA7C4E8BB9795B /* EXUserNotificationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 75CF3C0457352665415A7DD0648B5274 /* EXUserNotificationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B041A9A3235A5AA18E6A80643781583 /* RSKTouchView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D048B65D5401F3B11C2CD7AD3F5FDE2 /* RSKTouchView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A8AA5FC0D15E53DFA77F2468C6738A5 /* UIImage+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = D5C124EA6E1C40165CF089F6400F47EF /* UIImage+RSKImageCropper.m */; }; 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, ); }; }; - 8D47D902B89DCD2A92DEDDE21C74D541 /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 50C51F300E268E186AE672D4AC42FC22 /* EXFileSystem.m */; }; - 8D8FB7421481115A6EA8E29134A4F1A9 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 09A78AE91C0AB9A9980300C4A7BD3248 /* RNScreens-dummy.m */; }; - 8DC28C90BD92931405D316451F68040B /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = C352EE6E151EDC8523F4F13C165280E6 /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C7A15FBAE7271D2AB49E08463F5BC95 /* EXContactsRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 41BF3A144DA86DBD2266916A619A12B0 /* EXContactsRequester.m */; }; + 8CCE0C74913F36C96D7F761410CE6817 /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = B8129131786B32C6E003AD92EDAD5A56 /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D0599795E90EF4A25BBF4EE1EDBD94D /* yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A628A9F1D28002879C71D75F544425B5 /* yoga-dummy.m */; }; + 8DBA09F01CD9D933DB71015346F645B0 /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = D5405FEBAC392B770AD99B5AC7687E55 /* raw_logging.cc */; }; 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, ); }; }; + 8E92399003C7A8D9CFEB8F195B00D896 /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 8B8A65EF6D756E78D1E16ACF41C31AEB /* ja.lproj */; }; + 8E9F5774EFB5BF06C6978C50056204B3 /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = 314D05E5073ED296968D8672E5E83DF4 /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8EA8EB6D6C9C3ED99D58F36BE69D85E1 /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C882770B6489F41E8DDA4A264637E63 /* UMDefines.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"; }; }; - 8F5DFEFFC8843AE241583BA68D493A7D /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B94F4A7DAACD1880519239245DF3F5EC /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 8F717D59C6CA0E34F03E35E0A4213B24 /* FIRInstanceIDKeyPair.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E27655892D05466617A8A07FDBD8687 /* FIRInstanceIDKeyPair.m */; }; 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 */; }; - 91C6049EE7B3A427B00ABDA6756D48CE /* RNCUIWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = ABC46FE48BA2DEE30F9D771C6471DB9B /* RNCUIWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91C88BBB4D58DE4F230D9B75482C1AF8 /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D777AC3D8EE6C735B30A17B7E10CB86 /* UMCore-dummy.m */; }; - 91F882A24D909E8C3934CBB19D8E1438 /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 27C025A92309D57C00D524C722C4478D /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 91134A60C950AC2E16DEA6C7EFFDE85C /* RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = A4F2AA49E1687DFB015A34423BE87536 /* RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 91446633BDBBF72BFFE0F45182D49D33 /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 71B6E007CFC596FCA8917CB6E0E005A2 /* EXFileSystemAssetLibraryHandler.m */; }; + 92A8544B73B2FA29B9CFDE72C5FDDBB6 /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = BB9118D470BB9F2108A60D3ADF6C1EC3 /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; 92B30541095647B6D6B900D6C3E78A76 /* FIRInstanceIDCheckinStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 68A1E84C5B4C1FA0364534DF5FA9CA2B /* FIRInstanceIDCheckinStore.m */; }; - 934BF8388331FB129A20DB0B63644921 /* EXCameraPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 8941D9DF6FF070935F15CE6E424386B6 /* EXCameraPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; 935D6DADC932A5753137DE4605BBEC76 /* FIRInstanceIDTokenDeleteOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = B6BD6BC1B1EA23C048BA0ED9D296238E /* FIRInstanceIDTokenDeleteOperation.m */; }; 9404CB7E5B9C19F294217952B68D458B /* FIRInstanceIDKeyPairStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 6513B153A69122DA4C3567D902EF3824 /* FIRInstanceIDKeyPairStore.m */; }; 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"; }; }; + 94A8D8A9611DA06EA04052B89B7EBD97 /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 69191110D228F9C8A023B23FADAB2737 /* RNDeviceInfo.m */; }; 9524BFAAAE6E5588F9615CEEFFAB8F74 /* Protobuf-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CECDA20FE3432D2A0FD84D45349110D /* Protobuf-dummy.m */; }; - 955BFF93D8121DE0C093114C197B6BDC /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DC9BD0AA11B2883A19616A198AEA2012 /* UMReactFontManager.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, ); }; }; - 96693844C50716001E11A1A1B0FAB3F3 /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CD738B15E547075EE757C406514C161 /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 971A797D1573C90846EC7847F3529E49 /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 567385FE24142A67287A3E4750BC901E /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99FCA10852C44775B1FC3B6004D56A1D /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 995A7AB9746D3A244ACEE545EB4537DF /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95BE5568013930830A49B1D0B10C85F6 /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = C255B9FEEC57F3F344E3CC5A6FA25BEF /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96FD686C41E663615A658BF61C0B8576 /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = C373CDF42DA75FFD29673936B59DC087 /* UMExportedModule.m */; }; + 9754888C740FC43171599AAF7A45B4AA /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 644AE7BA2E15D241F25F80FA50F13421 /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 979FE135AD6F5501E856E33EC5CA8E15 /* EXAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B3F6FFAF4ECC6E65BB8748B62A09D16 /* EXAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 981224718E9486D48AAF227F2F7C1CD5 /* RNCUIWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C28639AE4CE2CFA7280CFA1E0448D8FA /* RNCUIWebViewManager.m */; }; + 98421702115DBCA4482F0F571D4ED379 /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = E9E3C593A2AA318C8D8A095ACD66CA55 /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A41AC34AF874C2878961727CCE6C723 /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = D3DBBC941A09E991D876BEC8E8857BC8 /* zh-Hans.lproj */; }; + 9ACEE6FA896DE6419CFE03E0465C1B9D /* RNCUIWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EB6E121E7640AE36CF1600C047CBA13 /* RNCUIWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9AE90D1360625450CC828AB283D9C337 /* GPBWellKnownTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 9632C230C1B82662D3DAB3FAF6426F38 /* GPBWellKnownTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9AF1BFA6907534C76EE8DC454BFE3B6D /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F522B04B6820F32291BE20351F2B3FD /* UMReactNativeAdapter.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"; }; }; + 9C2121F5D96BDE54DA8B179237762DE2 /* EXHapticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF4E8056F9588AED1DDE2D274F2D598 /* EXHapticsModule.m */; }; 9C256455B0ED145A471E33181813B7D2 /* FIRInstanceIDUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = CB8724C8D4D696AD4C067B9326224A01 /* FIRInstanceIDUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9C6B2507E9604E5C22317814C5D12B31 /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AEE0D54ECCD2FDB1FAF07FA0C8100E95 /* RNCWKProcessPoolManager.m */; }; - 9CC93ADB2D684C3C17362AFF7491B77D /* UIApplication+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = C74F06CA3396E64F308DC487B0BD1373 /* UIApplication+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D3100ACF474922057D60AEFC59E8DBD /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6382F111C6E6725DED86068507C906E4 /* EXPermissions.m */; }; - 9E10E2434A4A6CF2540ABA0954A36579 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 5290808C37723CB0BC4DCF45FF29DC9A /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9EABF709B3DBA7CBEAF91BDBACE8444B /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 011AC49904E60DBE7374EF4C6C46CCC5 /* SpookyHashV2.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1"; }; }; 9ECB423EFCF9267DA37AFDEB8F03F568 /* FIRInstanceIDTokenInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = AA015B42B94D08FF3C4C36EA989F13DE /* FIRInstanceIDTokenInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9ED1327CBB716D67115A7B94FB862A66 /* UIImage+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 27BA61510074129562C639CBA224030B /* UIImage+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F777CBD04816F19CF33C734C125DC1A /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 599A4418AF75B9750AABACF579E38163 /* fast-dtoa.cc */; }; + 9FA76154E3FCD9B2227F6E7356295B86 /* RNSplashScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = B2B4D354F0A7C4BCC171DC00AD46FB98 /* RNSplashScreen.m */; }; + A026F0A9355450451E1558F3A87AABEC /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F8987C7A184D022D6C2647ABC636D62 /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; 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, ); }; }; A1485CDE13598E782F45A64AEF864316 /* GPBDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = D3D856CFC6310D66AC7461C87AFE11D4 /* GPBDescriptor.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - A3A4A35A1C64A718EC4590D3B64EDBCB /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 04387AC8C6AE41C3100B505F8335F30D /* QBVideoIndicatorView.m */; }; + A189673CE87F612ED3488113F9DAFE98 /* ieee.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DBE5B5C519267A9659862AF6C8F3EC7 /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A1F4DADE46BB9823C16F0582D38CA637 /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C68D2CEE38E5A9ABF52523980C592CE /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2A70CD096FE24B7E48EA8C86BC112BD /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = ECEE1BDC40E8C2C4CFF1A1E82FAFE7D2 /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3B33574C82F38A9087B056DF9CED726 /* EXRemindersRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E67E30C16E6296E46355DF3BB1B203D /* EXRemindersRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; 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"; }; }; - A4C08509731EFA292F4FD60A3307833A /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 644B8070975A8EC1C5728C413E649649 /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4C5FC9C08D6B0293EBA89A6C295E169 /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 85138410928599A555E8A23D10A63890 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A5C2C9A87ABEA51968F34749801E3E19 /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FBC67C179159BA8ADB22BCBB9B85044A /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3D42C0DEC7A6D9F0A4E5D07E75FC32A /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B20E5B4BD15B15F8C5AA88C58E64829 /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + A3DA13F2F5DB418C2D8DDAC342D63120 /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CC1EA5EF5AC122334A24592ADDB26BC /* MallocImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1"; }; }; + A56765A6FC47977550A6133ED7DD143B /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = 30C2465E8E4F2472D21792948803A692 /* Orientation.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, ); }; }; A68D95130278786381DA115EA4E9B527 /* NSError+FIRInstanceID.m in Sources */ = {isa = PBXBuildFile; fileRef = 7ECB7FF032D4794DA9840A5670C932BB /* NSError+FIRInstanceID.m */; }; + A74DCCDDDE80E12429E31ACFDBF64F30 /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = 768F87DC4852B38BEF00A4A8FCC3AB2B /* UIImage+Resize.m */; }; A7CB4E7AFE7FA70A8C23C368BA15638E /* FIRInstanceIDCombinedHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 451416F601DDE30625DA62A16B92765C /* FIRInstanceIDCombinedHandler.m */; }; - A8A950AC4D68AD848DFAA86FD0CAA73D /* EXWebBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = EC7760EDDE1FFE5D4A997F31568FBFC8 /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8D5113CF95A396D35F179C25A3E27EA /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = 41974FFBB9D38E3002BDC85797836D8C /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8DDA04E73A14BF9054C861A14146A9B /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = 096F14BA72C6F12FB521A0BE09F7074A /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8F8AF145F8BC166C665E60275A1385B /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3219006E7D6EEA1CA01EC2AD1F8F1AC6 /* QBAlbumCell.m */; }; - A9BEF0B50915D2B3AC8BC1A890E4ADF1 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 45E86DAD529F51163935911987BA6E23 /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A9DA59F953FCF4BCD610E5E70342169A /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 39BB85AE2C618E035D1354CC2636DA08 /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA1D6DAF35971D442D08016238844577 /* RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = A4F2AA49E1687DFB015A34423BE87536 /* RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA4AA2B83F17E56F3B8B168652A7A962 /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9EC3159D85D08ED25791315962342573 /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + A8B6D15DA68092B480483FE020894204 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 02C98E82A21DD2A618432C9DEE7A9807 /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8CA106C04C162B078C1AAE3F0AA5F8C /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 33218EF1E52206241B7FCE116C3107BE /* strtod.cc */; }; + A940C75514BB2F28570EAE1F99F2E64E /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9953F62D53B61D0A08E0EF115C40CB95 /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 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, ); }; }; - ABB82B9321DA0B05D64C70DC2C8B3C1F /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BE8C16CA396C3230F20A627AA2E5FB9 /* RNCWKProcessPoolManager.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, ); }; }; AD413437CBBF101330CA8ECA8B18FF37 /* GPBExtensionInternals.h in Headers */ = {isa = PBXBuildFile; fileRef = 0782F9E9096355814719FF9B88161DCB /* GPBExtensionInternals.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF8EC55515847D2EE9AD7ADED2B0B0BD /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = DFB3B3A22A1D883E021456672D098678 /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE50881383D99425658602348D1744B0 /* EXHaptics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AB73FA574D706AF1125FB6A78CF44D8 /* EXHaptics-dummy.m */; }; + AE830D2F88DD54B62B84DB4707CD18EF /* RNSplashScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FA705D50B47AE2B0F8998E1CE9B0A7C /* RNSplashScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AEA0571AD000EA6F97808A38CED466A8 /* EXRemindersRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = B659E2F1677E743FBB48DFD34C80D3A2 /* EXRemindersRequester.m */; }; B00378500E34E873F4275738E8D383F4 /* GPBRootObject_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = FB8F83C766BDABDF47DC628A400C9E8D /* GPBRootObject_PackagePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B01BF0DB4F2C13598BF21D8BAF63FA02 /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 468BF3F19D013D01FB56A0501BACE6EC /* UMLogManager.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, ); }; }; + B1A69A478245CB266F422F9139AEACAA /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 22293BA067850112F37BE2951B912138 /* signalhandler.cc */; }; + B1D15B674E231785448AA95939AE9463 /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = E7E1A2C770AE2663098B8C2984A009DA /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; B3445D4E4EC4058050396D3FA2BEAAD7 /* GULAppDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 01667AE46D9B0857D288D0322E9859D5 /* GULAppDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3B1FC13A5521702328A07067AD77D51 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = B48203EA174ED2282FC881C38A2BA481 /* de.lproj */; }; + B34A22FBA050666AF2979D1B5CCC3636 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 33E9AF75CF68904359D675D2F6B5CA19 /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1"; }; }; 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 */; }; B48B175BF8D11872F05DD9B0BE7A5A02 /* pb_encode.c in Sources */ = {isa = PBXBuildFile; fileRef = A67A93040C93F21781D539C991CCEE83 /* pb_encode.c */; settings = {COMPILER_FLAGS = "-fno-objc-arc -fno-objc-arc"; }; }; - B52BC606F68E178A9A77961D0F49D878 /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F9DD3EEBCC666ACAE9D7750C0901BB89 /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B5342DD8C99B6EAA57FAB6C09E94E38A /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 34E0A28899DD0A74E41D4C7D43982744 /* fixed-dtoa.cc */; }; B6CE63A97BACE41020A26A9FBDA65E4E /* GPBDescriptor_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 50211D8651BDEECDCF337C2943949119 /* GPBDescriptor_PackagePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B71E45007BC61B240E1F01233E784A9F /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D80D1DE5043BD3C1EFD378F2117D270D /* react-native-webview-dummy.m */; }; B7D9F8D1971A3797151BCBDF74824208 /* nanopb-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C26FDE4600EFD11466856933697391CE /* nanopb-dummy.m */; }; - B843113463367F42128AD5534E91C959 /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 8B8A65EF6D756E78D1E16ACF41C31AEB /* ja.lproj */; }; + B804FC8AD528D429E085A9B52631B33D /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 16425F137AEAF28E31DBF3D7192A5571 /* diy-fp.cc */; }; + B88874D20925DD12DDD3F8258AC17076 /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EE49B8A769B1E7AFEABA9B6B0B88B03 /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9763798A21C67164FB5920B6487F8C5 /* RSKImageCropViewController+Protected.h in Headers */ = {isa = PBXBuildFile; fileRef = 047F7C14D5BA3D10FDD5C05A933E8CD5 /* RSKImageCropViewController+Protected.h */; settings = {ATTRIBUTES = (Project, ); }; }; BA72121160AF58E9BB0CDDE7F3A8C286 /* FIRInstanceIDTokenInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 59580373A446659C07B9D6B12E8B769F /* FIRInstanceIDTokenInfo.m */; }; + BAAA3785CA2A1C63FCC596B7210BFC25 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F4E8D982A663BAB845720E82B1005DEE /* RNScreens-dummy.m */; }; + BAB9E717A0861009586B748CC1287F45 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = AE1A1B7E658E6963F761FF9A08DCA6B1 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC7823D69B7FA18696F5C13C6A9149A6 /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DDE7158D964327E4B8B45E18ED90D49F /* EXWebBrowser-dummy.m */; }; BCFBA8C90FCC43DF9D66551A9D371971 /* GPBCodedInputStream.m in Sources */ = {isa = PBXBuildFile; fileRef = 034AB978EEAE0AA5F06DB6D822E28E93 /* GPBCodedInputStream.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + BEC1052E6EC8BDA846B649FFD43F6826 /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E48F6ED55D527B20EADC7AFA4795485 /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; BEDC98C637D42DB31CE44DD1D5584DB2 /* GTMSessionFetcherService.m in Sources */ = {isa = PBXBuildFile; fileRef = 961E5CFB6EF6E98C98144578CDA78057 /* GTMSessionFetcherService.m */; }; + BF0822113C33AC08EB0DEA8F38ECB59C /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 37323DB200005E8E79D1526C6D776535 /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; BF0CDE313B0F3BE180D52BAED9F06B1E /* GPBProtocolBuffers_RuntimeSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 209FB1AF949B819EDBD99CF85EA82E66 /* GPBProtocolBuffers_RuntimeSupport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BFC7820E0B2A878AE4168DFF55E2124C /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D7001F9CBB5C587EE6303E5F0CB948FE /* QBAssetsViewController.m */; }; BFD2F7E2724939BBE6DA011936B8A9E1 /* Timestamp.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = 64EE348660F8A8DDAABFA36434FE1DCE /* Timestamp.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - BFFDDE61FB567F0B84E27BD1E16C8C26 /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 719620B440542499A489DC3961BC5624 /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BFED0E108BCCB32ADC7B04527528CB87 /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = BB481D55BBF0D87F8B6F86A90C8FCA5C /* EXConstants.m */; }; 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, ); }; }; - C18ABBF4D019811130D472686862B429 /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DDA20DA47F3BB66E5B5973EB2E7677F /* EXFileSystem-dummy.m */; }; + C198AB42A29594802AA8D6276A808FD3 /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 708A9E814F51ADA37EBDC6577B83D496 /* EXFilePermissionModule.m */; }; + C2BCBA73A32E17DE6F57BBC64D55D133 /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B843F05D718A4E6A823BF7A3D02FB40D /* Unicode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1"; }; }; C2C81088574BD4C52006BA29AEBA587E /* FIRInstanceIDCheckinPreferences+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = A41B7BFEABEB2A6449351B5C578A54D3 /* FIRInstanceIDCheckinPreferences+Internal.m */; }; - C327914498A09C2E0C953F8AE792E601 /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C8B860B45EC3D0A6958A4F91C0490A3 /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3B802C60B33C82EB0022FE3E299A72B /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 20630B5E48C7CB69BF91D7D7F265396B /* vlog_is_on.cc */; }; + C3F4D6CFD0F3ABA559169211625079EE /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 95761EFC80826A70953FC6062A07A30E /* react-native-webview-dummy.m */; }; C41623E483400C6D0EF9B5B180977DED /* GTMSessionFetcherLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = 91FFC3ACA796AF71C4AB51C4D5637080 /* GTMSessionFetcherLogging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C45EE2EDF6F29A729BDE1493E9453AF0 /* react-native-splash-screen-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 16CCA8E92233B5FE9338D8F88B971B5D /* react-native-splash-screen-dummy.m */; }; - C4CF1F84755396DCE0DCCFDACE737073 /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = 95B9C1724712F4D696EC9FFF6631614A /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; C5669D28F2C424FBD3C87257F1AFE0B8 /* GULLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E4F9A756C618643123B7CD818A7BB8E /* GULLogger.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 = 135B6280929F88140BDF70F232AD99E0 /* 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, ); }; }; - C70AB8CCC407E4F8B819E0965322204C /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = E8DE43DFD7CC3A804076BF1825A63034 /* QBCheckmarkView.m */; }; - C78365E2347A577353B1F935C89C48E3 /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = AA8CF15ECD3F51B147A5EDCA72AE8DE5 /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C723D7CB5D94CC24EFBBB9ED58CAE0A3 /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = E03350B4705FAFC774241C0C6485A6CA /* UMAppDelegateWrapper.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 */; }; - C98CC351ADC8DA74B96FA42627997421 /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B6F2BF586C76EBBF5B6A0547B3A7E40C /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - C9DBB2FDFF186442599314D1ED853E4E /* EXAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CFEEAB193348ACA0AA563CB2FD04959 /* EXAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8E9E47E7AF7A78CADE01237BF02B053 /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 601F8DCD411FF95D5B4DB5F224ACF266 /* demangle.cc */; }; 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, ); }; }; CB1625BCCD0E5D4B9EC6359456203748 /* FIRDependency.m in Sources */ = {isa = PBXBuildFile; fileRef = 706A49ED0395C47363714A6B97AE0F47 /* FIRDependency.m */; }; CB74F65C279D0D01C5E2AB702DBEFFA7 /* FirebaseInstanceID.h in Headers */ = {isa = PBXBuildFile; fileRef = 35078A0D30C07DC0E51293BAB4B7A48F /* FirebaseInstanceID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC1F690FF76AE0E45622809281DB2B49 /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = B8E994B916AF07EF75492360279D04F2 /* UMExportedModule.m */; }; + CC06BFF84FD5EA63E08268840CEB4D24 /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB1BBCD3F64FF8BA9250E80D83F2FCB0 /* Conv.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1"; }; }; CC745C7C72057C01B128517182E30B59 /* FIROptionsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 17D71991D0280E8C03F310F0CAABB18F /* FIROptionsInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC7E5E3068B8A7F3A12B2BDBCB96E302 /* EXHapticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B227B77549A57A7FB9BB5908B7850D0 /* EXHapticsModule.m */; }; CD7CB53B7D223BBC381160BA73F796ED /* FIRInstanceIDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BCBE4FFA2B48385E101CAC42332AC11 /* FIRInstanceIDStore.m */; }; - CDBC59077AD1D33760F3265595534A61 /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B2464956271EAC9A4D3C116C847B38A /* EXConstantsService.m */; }; + CE399A301E038CE8427A92FD187093C7 /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = D4F94CE5E46252F7CDBD8542EB23959A /* EXReactNativeUserNotificationCenterProxy.m */; }; + CE3BE674AB2823140759516A34D179F4 /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = C8F928AFD61464ABD4308027ADE67B30 /* UMReactNativeAdapter.m */; }; + CE914509B01236ABB20E6682E2829DB7 /* EXAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = CA9BDAAC96B943CDCF3084611C6E68BF /* EXAppLoaderProvider.m */; }; CEC8B820873F8BAD5C806EFF198D194F /* FIRInstanceIDTokenOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = AE4BEC52BB9C31042CC4495A10E43DB1 /* FIRInstanceIDTokenOperation.m */; }; - D04A5E0614070663E99C6A31A35F9BC5 /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 51214EFD3D68E1D6C311916765C6C1B5 /* UMReactNativeAdapter.m */; }; + D046A8DB2A3DD2AFBA2D000004D33E9D /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = DFD95BDC417CF61E44CB4176D8361F40 /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D17334FDBE343EFADCC101F9C49F3DD8 /* RSKImageCropViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D98378181E5D1EB7E3D3B9BC346926D /* RSKImageCropViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D18616181F3519DDAF09E135CA2EB4FC /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = EB3D12B50AC18CA621298BC35F46668F /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; D2E942FFD868D20C41660AD7771AF1A5 /* FIRAnalyticsConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A5BB19124FE2A8CCEE96A5348423FEA /* FIRAnalyticsConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3FF1480277FF6F254E1CB3BBE404B46 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 61A3278B510DEB9D2F985C2A3212CD3A /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4C9C49081275697E582AB139AE6D5E4 /* RNCUIWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 070BEB7A593BFA8899ED9BA8B075474F /* RNCUIWebView.m */; }; - D4CD33481457050508DCFB2F1183BE8B /* EXAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B8751A91DE6DFA13257EEE32F23CD26 /* EXAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D4CD737510CD83B620FC0804A1FE227A /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = 4813E6EFD62CD203067FC71A32FA3C5F /* Compression.m */; }; + D4ECBFB97245592DB4156EB77244A90F /* EXUserNotificationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C637BB0616DAF1FC29D85803C0BCA0A /* EXUserNotificationRequester.m */; }; 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 */; }; - D5DEEEC3A5D8722F59D4F25F84F24E33 /* CGGeometry+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BFD6F1262D7CFD8E1E86E5A80CB5B15 /* CGGeometry+RSKImageCropper.m */; }; + D5C523019EA95E442E9E47FC81036E80 /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = E8DE43DFD7CC3A804076BF1825A63034 /* QBCheckmarkView.m */; }; 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, ); }; }; - D6C89A70E330D13E8B28FFDACDC4260D /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A40B417AD2CD9C5EF3880B0B2B8C362 /* RNDeviceInfo.m */; }; + D712995844A0D90F73F6CADE63E65849 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = DB2A8AD245AFE08396D8D8F9FD706224 /* UMModuleRegistry.m */; }; + D721728759E188D4EA82D372FAD1C429 /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = B0D80A09526F93F0253E69A63F1B130A /* UMViewManagerAdapterClassesRegistry.m */; }; D746976AE8464DBFF5D281F2906E21B0 /* FIRInstanceIDTokenManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 98A65BC0BF8190887897FA8466E7C946 /* FIRInstanceIDTokenManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D7FA1FCBEFB6DEBEB94ED365EEB09E35 /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 26451F3A73A4A8076405DA0C328309BA /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D851300F712DBD77BEEF2AFC55E7BEE0 /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = 76C2DF9C809D6D29B1E01E9E00B3368B /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; 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, ); }; }; - DA496E0597C64A3404628E03E447F7F0 /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 7390A2839A58F47E1409F2F64EC23343 /* UMModuleRegistryProvider.m */; }; - DA9405922A91004A0BF6AF5F3574BE81 /* EXHaptics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E0171286B77C2C7D14BF54B56E2C8AD7 /* EXHaptics-dummy.m */; }; + DACAEEE1091402CB62EE3C47E3D6A36B /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9AB317F0CFE633918FE469302716CA49 /* Assume.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1"; }; }; 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, ); }; }; - DE22255B85ED5C17E8432D9DD5E4591A /* EXRemoteNotificationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 5499AE39E85550D1F1DB83B639F0E161 /* EXRemoteNotificationRequester.m */; }; - DEBDC71B78F63208A5178DBADA1E8DBA /* EXDownloadDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F8C219D933CA4CBC47579FC89A782DD /* EXDownloadDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC8A307BB4861CB5129AA6D0D10D1CBD /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 6697EA434D23502A2D809B6B7E6E3A4B /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DDA55FB596018644A4D79140D253C78E /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ECC1D6E38AAB7E81AD33EC1E4432A9D1 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; DEC83087353AD0FBD02A519C55BAAF7A /* FIRInstanceIDLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E5FF9B8F5625C54B2248B8CFBD8433E /* FIRInstanceIDLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DECFC95C86D393B452CD612C5232AB73 /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 09B09B5FBD61C8C125354C95730CDFE5 /* UMViewManager.m */; }; DF02A2098984DB92914CE657E8FEE6A4 /* FIRInstanceIDStringEncoding.m in Sources */ = {isa = PBXBuildFile; fileRef = F4A3E35C402DA8FA4C4B62F2269FFC1C /* FIRInstanceIDStringEncoding.m */; }; - DF398B3BBBF9AF36B98216F347D4A6E3 /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F070DB8778F84DDDEFFBD0B665025401 /* QBAssetCell.m */; }; - DFBDFF433059306D0E80770512F15C74 /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = AFD445827223021D33395DF5502FBBC0 /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; DFC5E47A627B01975364AB9CFC2A549E /* GULReachabilityChecker+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7498C22D9DF923F2EB5402E6FB46A266 /* GULReachabilityChecker+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DFE2282D0DF2368F3E94CF038914A285 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F26D487097ADB89B176A24654DD1B8C /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; E03E8A327381935C6AB749A319E3923E /* GPBDictionary_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 3877D8495364FD75AC548B8B0F16D0A7 /* GPBDictionary_PackagePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E045570429973D4588013328422D2E33 /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DC7C3515580940D0C1C64597E302966 /* QBAlbumsViewController.m */; }; - E08DB134003BBC6E19D27BD6EBCD73C6 /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4256FD74190E181955C125070B01CCF3 /* QBImagePickerController.m */; }; - E29887F90E39CF7E2C7D463E5E07475F /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = 98F4C81F2CFD8C595710D5A7407ECD2B /* DeviceUID.m */; }; - E2E07878F80C3CA380F84AF10840308B /* EXSystemBrightnessRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = B74355797360A160126F0A5F9F1D1982 /* EXSystemBrightnessRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E30636799D2363B05D48F859511864CB /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 601F8DCD411FF95D5B4DB5F224ACF266 /* demangle.cc */; }; - E3E47A2B532192511FC0008593DA2B73 /* yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C7732FC60AE7FBD15447F7865946CA8 /* yoga-dummy.m */; }; - E41EA8387DD032D55443223065DF058A /* EXUserNotificationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 10F9FDCC21C245BE1F4B023FA9866ADB /* EXUserNotificationRequester.m */; }; - E54206D193C34A07D7D0E0B1B0065D7B /* RSKTouchView.m in Sources */ = {isa = PBXBuildFile; fileRef = 47A6A31F9EB2B51ADD0931A873E89C5D /* RSKTouchView.m */; }; + E126D849B2811DAB3717ADEC424D7657 /* EXDownloadDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = A25BBEEEE5767AA6FA233E50DEC4E3AE /* EXDownloadDelegate.m */; }; + E1A5D28034F1E75F82E9FAD6D7FD4885 /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = DEE1BC36C294C18EFC1DE73F43BF249E /* UMSingletonModule.m */; }; + E3A43BC61EF23E803811938C47263A10 /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 13243D74EF6D6BC75B6F08F9AEF59271 /* UMViewManager.m */; }; + E45DD4E8D41C17FC08EED732951AE1BF /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = 147644E26FF753E12FFB6256DC7A0A79 /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E4EC2BB5913F2974816674CC2AE97517 /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 256F73640791D9E203ABC811B5F47544 /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6B5795FF7682CBDA63CCD59D0F77A97 /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = 442AF148F9AC98F51A17A3BBE56A8080 /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6F0365917F10CE3F53F11272178A192 /* YGMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 27BB03D5D5CE6A1D7C189E45D9510440 /* YGMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; E8288CEB8339BC0E7A6C6CAF005EDED9 /* GPBWireFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D1E7E185F853FC0062B62CDD76AF164 /* GPBWireFormat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E953548BA212D0038557EBF302E5FB1A /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = DFB3B3A22A1D883E021456672D098678 /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; E9750DC0BC948A8207B801E66195A911 /* GPBBootstrap.h in Headers */ = {isa = PBXBuildFile; fileRef = 02EE269B177F9131844B8B87D0E70230 /* GPBBootstrap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E997297D6CFC855095C08922CDDB4DCA /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E93B22E06F3F818C0549A563FA597AC /* Format.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1"; }; }; - EBC3BA0CE324B7E29195BE7D0B317BF6 /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46AE38EDAFE73BA35172D49E51DFE2EE /* UMNativeModulesProxy.m */; }; + E99670DE6BBAD7C09E618409533D1080 /* EXDownloadDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = BE738C73C4E529A5A1912D55691171DC /* EXDownloadDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 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 */; }; + EC8E348D73E769BE07F85A788629FCEF /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1306A874922522A25C5081B057468E59 /* QBSlomoIconView.m */; }; ED38C771CC6B89094B59C12DAA7DC7CC /* FIRInstanceIDAuthKeyChain.m in Sources */ = {isa = PBXBuildFile; fileRef = B54AEDB05E5080BC1BBE0209C846D048 /* FIRInstanceIDAuthKeyChain.m */; }; - ED6EE21B477CD958C06BB06515712F3D /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 40BDEFCEDBA7C6F4FC8E1AA1AE990E6E /* EXReactNativeUserNotificationCenterProxy.m */; }; - EDBEA52F88EBC169CA6F8210950C9A7D /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 33218EF1E52206241B7FCE116C3107BE /* strtod.cc */; }; - EDEC647286492947DCA17EA720E4EB1B /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = AE7AF9AB3C037236CF0FF55AE4FA14CE /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE40B868388C40490FF1E07712CA4B3E /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = D31213551926432FA2202EC56108DB24 /* bignum-dtoa.cc */; }; - EEB5E19E8B3EEA10DBB8F2471C47E053 /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 92D60C9A1D764AC5556CD4FE75BDE516 /* ImageCropPicker.m */; }; + EF057C036B7B732BC9F983413A29C1E0 /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8EABC8F04B4EDDC509BABF347C2746B3 /* EXFileSystem-dummy.m */; }; 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 = AD6D86BDD8B845212226A30C2A268CFF /* EXPermissions-dummy.m */; }; - EFDFE7E1BAA482B57A5362F7936B8D96 /* EXAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 006323E83A3F18D457B50ED365BA095C /* EXAppLoaderProvider.m */; }; F06444243ED98B3E9B778F664FB46788 /* GPBExtensionInternals.m in Sources */ = {isa = PBXBuildFile; fileRef = 60FE58C23DA01DE44721A1DB79EC1B0F /* GPBExtensionInternals.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + F07F50A9DCFCD88674698B0F8C99AD75 /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = BE50045174443690244903BDE53B9ED7 /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F091BB9661A4345D85F945ED606B30FE /* EXSystemBrightnessRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = F2B29CF7E7D88E221CC7A112095DFEDA /* EXSystemBrightnessRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F0B9F0E70E1ACD3BFF5BE044E2E73E24 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1688EE83E950851DBD776306319028FB /* utilities.cc */; }; F15912A4615676CBCA47D77A31A1734A /* FIRInstanceIDCheckinService.h in Headers */ = {isa = PBXBuildFile; fileRef = 16D5B1912353CE8623BFB2FCF1190963 /* FIRInstanceIDCheckinService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1A61C1D8004320F4ABEBA3E2F1DED32 /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = D9103AA8819E14646CEDF6BFE7EEAC24 /* 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"; }; }; - F23ACE595E6816D811B3EEE32D6B57CC /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F6658AA388BD5B2046D1F9A8B2E3DB45 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + F1D183C1FDA3BCD9D2A9750FC76F73EC /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = C27E59773DF5E1725E499E40BDE75A4F /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; F2DFD7896F7A6125A0AC66C8FAFC7935 /* FIRIMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = A20CADD4552AE7665DC8A5AC2905BE9B /* FIRIMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F35B6CC9118E4FFAD3FE41B864BFE14E /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 05BABEA17C5563F4FDF21B7FFF9DAB55 /* RNImageCropPicker-dummy.m */; }; + F2F6F02B1856ADC0493B59A86843B567 /* EXAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 01E22853C31DA3187F652F1C6C9C928E /* EXAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; F41B1921B80066811103216802F90604 /* GULSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = B951C090165B8D26D9E040D670A5F2D9 /* GULSwizzler.m */; }; - F46C1D2277901B9DE01B72DF16F350F5 /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = B585FC3B46C2A9C5A7EB9D064D04C6D3 /* Compression.m */; }; + F454325F2E9D4B5FD1334D032F1BDE09 /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BDADE3A53B6523295101E9F6C76F54A /* UMLogManager.m */; }; + F4987DC7F85391B745F339455A531C37 /* RNLocalize.m in Sources */ = {isa = PBXBuildFile; fileRef = 78198317FB7683EF4AD5E2AE83E2D229 /* RNLocalize.m */; }; + F4A00E239358853D7391437479ADEDC4 /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E20C356E71041C9473DEEFE910AC373C /* react-native-orientation-locker-dummy.m */; }; F4AA1DA9CC99F6B40605401FBFC1010E /* FIRInstanceID+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 8562482F04AF663EA3F27B4C0C5EAFB1 /* FIRInstanceID+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; F515627FFC40CC53D44DDC5A7D112750 /* pb_common.h in Headers */ = {isa = PBXBuildFile; fileRef = D1D409B472D80F2EB4C71563990FC72D /* pb_common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F691D9FA47A573CADDCF5584D7D693DE /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E1DB5A55C5832BD16262261605E0D45 /* EXConstants-dummy.m */; }; - F6DEE43D3D58651A67509875D629C906 /* RSKImageCropViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D98378181E5D1EB7E3D3B9BC346926D /* RSKImageCropViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F6E8384E378AAAB45584434CBCBE7AAC /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = B59737FDB54009CDEA02363F4880637E /* RNSScreen.m */; }; - F6FF8F0BD489DB9F28B169C1914043BD /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A2744645ED45801821011A274A1DC1DA /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F727EF30C32677780CB56BCA01BE36C1 /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = DB8640EAE58E53A6A3E0560871246FD1 /* UIImage+Resize.m */; }; + F5DCA182C2EEA0BEAD8576F5D5DA4CDE /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = C9E8F4D02ECAE0FB2CCEEBF0584A0134 /* UMUtilities.m */; }; + F68D027D093FFB5C36B24C36F0F00719 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = AC1FFEB247932E438CB9D9C83EE0A792 /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6DAE4CFB4100965E2EEA9569F577729 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = AC554B525FBFFA961C04F993894573F2 /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F73C4171666A62C9E0A5C4F4137849F1 /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 187D3D26A1DF6B91C30D7D04B26929B4 /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; F740E0F198B1AB9831AAEFAD867AFB6E /* GULAppDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = FF53A904DED58A3B128E71C3BB3400C2 /* GULAppDelegateSwizzler.m */; }; - F75A21211C441B245146FB95D0348C66 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = CDB9CFB2E17926A7AE8C8BFD1745DC68 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7785755D00BD629F44E19E70242AFF1 /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = A3B91D71C81CFC90F2C88329C2F9651E /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7976565C5654FAD80CAB9FBD98BA8B2 /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 64BC3B12E4CBF094E7B65E7144D03C6E /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F8409B5FA79C11E7C61BBF5B098B1B15 /* RNSplashScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C4A48136C0B2CA0819B5D8853D4DB12 /* RNSplashScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F8A4251DE92EA803F8757CEC805CF13E /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FBD23568439E0E29E57861B14354FC8 /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F901A44BAB4BB2967096265D767469D0 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 33E9AF75CF68904359D675D2F6B5CA19 /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1"; }; }; + F76CF77F7A16736C3F1B433E8FD59F41 /* RNCUIWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = AAB62DC3F7D34B55DED0B20B69D43069 /* RNCUIWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7C6DD68458376DAC8E01D9C68071318 /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A2E1C4596B2844D85C1A419158DE60A9 /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F81A84291B2F2DEF250FCB79C1CAD886 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EBB56C0F9061AC3F8415DB58CC13585 /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F81E2DFA7E076498AEFA487459C13FCF /* EXRemoteNotificationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A10320571E05FCC3B4CC8FC20A6E168 /* EXRemoteNotificationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; F91A93D3CC21280DB2FD91203A334429 /* GPBUnknownFieldSet.m in Sources */ = {isa = PBXBuildFile; fileRef = D318286797895EE8DE84CE55BFFE541F /* GPBUnknownFieldSet.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - F955A6EB4B2621AD4221C1E127D94BDD /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B0584F3F8860C573B6EC43DA81FA054F /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - F9A5B02F41A79DC79E3279F53783AF90 /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = C394ABE10CBA02A7EF470C2919892313 /* EXFileSystemAssetLibraryHandler.m */; }; - FA1E9D15CFD49B726F6A6026DB3FE7A4 /* QBImagePickerController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D38A9993CEE1E3C4E749510217E641A6 /* QBImagePickerController-dummy.m */; }; FA2A85685FD2F956E9AD5F88ED8646EF /* GULLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 9ECC8E411E019FCD2AF6653ECBB8AEEC /* GULLogger.m */; }; - FAC72E8A2E04946120FB728542A9CD73 /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B81BC5BD563B06DA975490A65EB28D3 /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FAF6B57EDEE412A783FD3FD64B4DBF17 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = A91491FAF438D00E7F888ECAB6E83C41 /* EXWebBrowser.m */; }; FB1881FB69A2623C6C30875C619DA9F7 /* GULSwizzledObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D2F4AA1E8F90B87245842734E56023D /* GULSwizzledObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; FBC7D3B12B44B299E9CC578C66372048 /* Any.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = 12E720231196ABC7A2F315B1C9F78BBC /* Any.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - FC5A3D318D03615F2F5C55BAA2373DCB /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C60CDA90970CA5F0154E2233D5E015A /* UMViewManagerAdapter.m */; }; - FC73CF45898655A99060A7A3CC51958A /* EXContactsRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F48C0D74D371A9F91ABE12DA7B409E2 /* EXContactsRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FCC76B54E3814872A72A99B80A565968 /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 649AC19744404C0C0634E9742E3B2CAC /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC796DF04CC7A982BAA4ECE0D15D0221 /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = C4AD3046FFCF446EAA195A061EE5B3B0 /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FCC887881586BEC4B9D0A24B7E3A2BB6 /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 6715E712DD4EFF48C397F6EB221323F1 /* EXFileSystem.m */; }; + FD7B93F0A4057A16D417EA8479B5295B /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC93B4AE1BC99FC3489FB009672CEBC9 /* F14Table.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1"; }; }; 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 = C2D3B7DED338E55758B9F436B947D81E /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 00B62F80DB8E697BB1C7D4D3FDB01C54 /* PBXContainerItemProxy */ = { + 013C8C712E31279FB89EBADB1C1A4BC4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 29C34A1CC983103B3A70F1BD1BAA9E03; - remoteInfo = QBImagePickerController; + remoteGlobalIDString = 7825F222F53EF434DE74A6C6FAF290E9; + remoteInfo = UMFileSystemInterface; }; - 05813EE48F3DF69D2C18C3A631D3E4F4 /* PBXContainerItemProxy */ = { + 0529226B376F57408762F4C7700CD1FC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D35E9EC86D36A4C8BC1704199FDB3552; - remoteInfo = Fabric; + remoteGlobalIDString = 8601F7B19425496C5312C6F111D6E777; + remoteInfo = UMCore; }; 05F88362B58CA661718541D4C8D84A46 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -712,19 +715,75 @@ remoteGlobalIDString = 368FB7FBA34E3323BB42D13325551C95; remoteInfo = FirebaseCore; }; - 199A6EFBF50D8F4E09FE5371F95B7C17 /* PBXContainerItemProxy */ = { + 063BDC8296F9797E62229537E67234B4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 29C34A1CC983103B3A70F1BD1BAA9E03; - remoteInfo = QBImagePickerController; + remoteGlobalIDString = 5B1BA8B3E53682DD179F7BFF8F2C8B75; + remoteInfo = EXHaptics; }; - 1A390B6156C04811B323ACD481538623 /* PBXContainerItemProxy */ = { + 08D94728A1D6FAA49D8C73519DE814D9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3B41CF884EED60EBD44EAEA9D3D255C6; - remoteInfo = UMFontInterface; + remoteGlobalIDString = 450F57633BF9EC17F9CFB0C9C32D6131; + remoteInfo = yoga; + }; + 0B2E72E20276FC80580AA56FAF0BA77B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F3EB3F69725213A107EBE1D88295232A; + remoteInfo = UMTaskManagerInterface; + }; + 0EC35428ED0CD782FDA99FFBC91F4E4F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7969F0F17682790DCAF63BC9AF2176ED; + remoteInfo = GoogleUtilities; + }; + 1094A16C7DF70F7A0E91B408FC0E65FB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 84717068AE991A783F22DE0DE87C4E14; + remoteInfo = "react-native-splash-screen"; + }; + 10FB1316B8DBCC7ABDC2C90A0BBBBD52 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F1DE11E9221F196A8A9D3464F96A345A; + remoteInfo = Protobuf; + }; + 113CDDB809E5888DDC4ACE47ACB7FEB3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8601F7B19425496C5312C6F111D6E777; + remoteInfo = UMCore; + }; + 1670F691872980ABBB9F079FEC6DCB97 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2CC3173E2B9D15AACE1F8C582CA6C3B4; + remoteInfo = UMImageLoaderInterface; + }; + 17299B3B10FACA862736181ECC44D9A8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 76CC3A2D036B8B64B5F70A7078274100; + remoteInfo = UMPermissionsInterface; + }; + 17D9D946E12B9034896B6A810C92001D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 42F7AF66FD1178857DC3A2834552BE76; + remoteInfo = FirebasePerformance; }; 1A3C492F71285F25490A56EC8987E437 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -733,6 +792,13 @@ remoteGlobalIDString = 7969F0F17682790DCAF63BC9AF2176ED; remoteInfo = GoogleUtilities; }; + 1B9BF1B8F9C147012693EF927B3B0E51 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1ABBF6F89787BBEDF49B4636ADB45587; + remoteInfo = FirebaseAnalytics; + }; 1CE3E751E533C71A2F0C6903F97BFDE8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -740,28 +806,35 @@ remoteGlobalIDString = 39E0403E3ACE39BC0D878D82FAB8F012; remoteInfo = FirebaseABTesting; }; - 22F4CAA83B233935D422CA5782F6FB17 /* PBXContainerItemProxy */ = { + 213564F23047B277074FF21BECE2730B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BF2CBBCE075E16438BFE38CBBD612F23; - remoteInfo = UMSensorsInterface; + remoteGlobalIDString = 1DBC3090C8BE77C9F4202B0421E0791E; + remoteInfo = glog; }; - 29C75182850787283A5CB901C4069706 /* PBXContainerItemProxy */ = { + 22B914D5DBFAB85056D377BB9C523730 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1ABBF6F89787BBEDF49B4636ADB45587; - remoteInfo = FirebaseAnalytics; + remoteGlobalIDString = 50DC11FF8303D596388C95B26D2E548B; + remoteInfo = RNDeviceInfo; }; - 2B332EC32C96C917660B34DB90DC1240 /* PBXContainerItemProxy */ = { + 288141C36782179FDDDCEA22B99FBD03 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000000006C70; + remoteGlobalIDString = 000000006DC0; remoteInfo = React; }; - 2E048718E5A6D999A5B83E5AE3F267F3 /* PBXContainerItemProxy */ = { + 296DE338366169E50A402BED07B84AB1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8601F7B19425496C5312C6F111D6E777; + remoteInfo = UMCore; + }; + 29C75182850787283A5CB901C4069706 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; @@ -782,19 +855,19 @@ remoteGlobalIDString = 2543734D0A332B2588202904B99CC151; remoteInfo = nanopb; }; - 33E79EA3B4B39B654CEEF60737582461 /* PBXContainerItemProxy */ = { + 3CC2EA99A4F73187F7A2CD42265AD7C9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = CE8197F189BB161AE1302A79E4F651AF; - remoteInfo = UMReactNativeAdapter; + remoteGlobalIDString = 645DEAED47D48A55A088EE2AD4BCABE9; + remoteInfo = DoubleConversion; }; - 353B523A27C44C0F3DCD364F1C8DDF5F /* PBXContainerItemProxy */ = { + 3CE12525FC73E81B8DC468274B077D13 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9A0D985B32E9B17E43CE4137E46B85E1; - remoteInfo = RSKImageCropper; + remoteGlobalIDString = 458293E00EF1C1F42778F9425AD34AA4; + remoteInfo = UMConstantsInterface; }; 3D342107E8BB2E1AAA760A57543C5A06 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -803,26 +876,40 @@ remoteGlobalIDString = F1DE11E9221F196A8A9D3464F96A345A; remoteInfo = Protobuf; }; - 3E9163E1BC1D0472D726FF49054E8FDB /* PBXContainerItemProxy */ = { + 3F00A598AB51FED3654C0513FCB803C9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1414ADEE4A421F3C5F9A229345CE3F61; - remoteInfo = DoubleConversion; + remoteGlobalIDString = 4A819E0AAACF1DCA78FD8E5552709919; + remoteInfo = UMFontInterface; }; - 3EF3099424B92A38F0899F98F3245F25 /* PBXContainerItemProxy */ = { + 403AF84EFA3BE67EEC2FA575440E8C85 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 42F7AF66FD1178857DC3A2834552BE76; - remoteInfo = FirebasePerformance; + remoteGlobalIDString = 4A819E0AAACF1DCA78FD8E5552709919; + remoteInfo = UMFontInterface; }; - 409FFB4E6100C14FC1BE5C9A5F11548C /* PBXContainerItemProxy */ = { + 426A67A7E660ADB769E8E3DB0C96E853 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000000006C70; - remoteInfo = React; + remoteGlobalIDString = A486E5AB43C3327005F1C0B986A448C0; + remoteInfo = EXConstants; + }; + 44B48B8CA28D6CEC0710ADE50E252D75 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 66641B93FAF80FF325B2D7B4AD85056F; + remoteInfo = "boost-for-react-native"; + }; + 482107E1381A3688E3BE0A020A709578 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 32F8EA730FE2005197F54338D2C236AC; + remoteInfo = GoogleToolboxForMac; }; 48B8A5D360038B198CB9ABDEC205C1F7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -831,34 +918,41 @@ remoteGlobalIDString = 586739D116442BA7FCD2EC0353EA0FA4; remoteInfo = FirebaseInstanceID; }; - 4D868DD673E0BCD75FCE3AD3B286CA4F /* PBXContainerItemProxy */ = { + 4E37B50731B7724A3FC80410BD40183C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 031F6220C2D49E4AD5F61FAA0ECADF64; - remoteInfo = UMFileSystemInterface; - }; - 4DC861E58982F959B1BF6E842DB63625 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 037B3080D17C0918F3E81F3A1BC9210D; - remoteInfo = UMPermissionsInterface; - }; - 565E92363B023507398D70460EF219F0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8F9FB30742F24E06348CA6BB7BE816B4; - remoteInfo = EXFileSystem; - }; - 586284C68E0B092622868BDA2627F90A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F73DB2D340074674E9F439EFB938E4EB; + remoteGlobalIDString = B156F9573C6B7A72D1C3C5709747221C; remoteInfo = UMCameraInterface; }; + 4F8C1592E6A887AF3CFEAC6A6B3354CA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 97C8CD7E4179727E4F374CABD338D2BB; + remoteInfo = Firebase; + }; + 567A8345DC87D2650C1A79F14794C8CA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F2D20B3CB8DD39B7858E3096028AC179; + remoteInfo = RNImageCropPicker; + }; + 56E95E3FD845D40A99233E17264BB639 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B11E238094137347E8790BFEB1BEF01F; + remoteInfo = EXWebBrowser; + }; + 585F7E7754C68AD634194C48338F4EF6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = ABA9A411BB5A359862E5F1AA6238278E; + remoteInfo = Crashlytics; + }; 5A9363F4FD6B77942B665046B14395CF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -873,13 +967,6 @@ 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 */; @@ -887,75 +974,40 @@ remoteGlobalIDString = 7969F0F17682790DCAF63BC9AF2176ED; remoteInfo = GoogleUtilities; }; - 622AB18ACD42A86A3C7823EDF35704AE /* PBXContainerItemProxy */ = { + 5DC7F68A3A6549C2EF18979FBBA1002F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D6CDBA4F567B018F442382D2520D6D27; - remoteInfo = UMConstantsInterface; + remoteGlobalIDString = CFFE323788A5B4BD0512844D53427F1F; + remoteInfo = UMReactNativeAdapter; }; - 62A098FB8593E6DA882DC1F3042A5FE6 /* PBXContainerItemProxy */ = { + 5FDD7E408B08AF566972547CAF4A8B67 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DF470A1028ED32C9E70DBDAA805F8802; - remoteInfo = Folly; + remoteGlobalIDString = 8601F7B19425496C5312C6F111D6E777; + remoteInfo = UMCore; }; - 6365971564990E8EDA376CAB39A62B3D /* PBXContainerItemProxy */ = { + 60AB7F72F80337EA4C8EDBDD059ED3D5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5AAD465FECAE9083F45E3DB9252A8302; - remoteInfo = FirebaseRemoteConfig; - }; - 64F68F9CE66CAC583425C094ED81B340 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5ED05858D3E3C1599A062FB1C45FE359; - remoteInfo = EXPermissions; - }; - 694B72ED05E4ED893F653E276539BC3B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3B41CF884EED60EBD44EAEA9D3D255C6; - remoteInfo = UMFontInterface; - }; - 6B3862F99C7ACE211401890B55078073 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 000000006C70; + remoteGlobalIDString = 000000006DC0; remoteInfo = React; }; - 6F9BE71B894922931F17E1ED5BB75DD9 /* PBXContainerItemProxy */ = { + 66ED3F97919D57628CAE13A0DB0BE09D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A04548DE5D4EE46EEBE9E0084D8824ED; - remoteInfo = RNDeviceInfo; + remoteGlobalIDString = E07EA1A35FBB3A986F484EB01CDD5527; + remoteInfo = EXPermissions; }; - 702234DDC5114A9FA5855E6F345BB00D /* PBXContainerItemProxy */ = { + 7082DA585E1184F5080B08E9BFDFC449 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9594E8EA6B999DFB255E43422B537B4A; - remoteInfo = UMFaceDetectorInterface; - }; - 70F37C141BA487162A565A5A71134D97 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 037B3080D17C0918F3E81F3A1BC9210D; - remoteInfo = UMPermissionsInterface; - }; - 7350396FBBE2F3A486D095F87BF15571 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 91F7E9145255DAC901E58E2F91F5411A; - remoteInfo = "QBImagePickerController-QBImagePicker"; + remoteGlobalIDString = 2543734D0A332B2588202904B99CC151; + remoteInfo = nanopb; }; 75709DA4236EE310812BED9AE5852B6C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -964,26 +1016,26 @@ remoteGlobalIDString = 7969F0F17682790DCAF63BC9AF2176ED; remoteInfo = GoogleUtilities; }; - 763AA33ED2FF249970A6A21C4DA5B42E /* PBXContainerItemProxy */ = { + 7BBCE7040266410CCCECE95B882ACD92 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 45018F5317EE8A727FB05D4B61A678A6; - remoteInfo = EXHaptics; + remoteGlobalIDString = 000000006DC0; + remoteInfo = React; }; - 7F55C75B226FA5A0CE638E136BB35F41 /* PBXContainerItemProxy */ = { + 801B28EE107A554ECEF028DD667CA260 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 586739D116442BA7FCD2EC0353EA0FA4; remoteInfo = FirebaseInstanceID; }; - 81206EBDBEB914B6DBF14D398057F095 /* PBXContainerItemProxy */ = { + 8075D3C81C368FF63B92A7E7DC84BF6B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 29FC2A0EC130F2F2AF7AC9AE94A583B4; - remoteInfo = glog; + remoteGlobalIDString = 8601F7B19425496C5312C6F111D6E777; + remoteInfo = UMCore; }; 8133F53ED6CDC355BB2264E4DBA0BF96 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -992,12 +1044,12 @@ remoteGlobalIDString = F1DE11E9221F196A8A9D3464F96A345A; remoteInfo = Protobuf; }; - 849F7C63ED0D3AE84AB50162690E2D85 /* PBXContainerItemProxy */ = { + 8300B759B2E7D1F8B7736FC29A18EAE0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4412C5F689DD128EFB8F42F11C502D2C; - remoteInfo = UMCore; + remoteGlobalIDString = 368FB7FBA34E3323BB42D13325551C95; + remoteInfo = FirebaseCore; }; 87D02EAE1DD3CC8AB9B8D646D27548A4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1006,20 +1058,6 @@ remoteGlobalIDString = 1ABBF6F89787BBEDF49B4636ADB45587; remoteInfo = FirebaseAnalytics; }; - 89F005F5263DF6BCF03E37261C37407C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 881C2DC83B2ECCAC7A7E6FCA96BD90E0; - remoteInfo = "react-native-splash-screen"; - }; - 8B90F21011966C246B45196138040795 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0FD5D3D2ED844A8EA4DB114C303CC931; - remoteInfo = RNScreens; - }; 94ACBB797039D918B9290B94A50A3F36 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1034,20 +1072,34 @@ remoteGlobalIDString = 7969F0F17682790DCAF63BC9AF2176ED; remoteInfo = GoogleUtilities; }; - 98DBE850A05B95EDF6EED1D4E63B6C1E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 32F8EA730FE2005197F54338D2C236AC; - remoteInfo = GoogleToolboxForMac; - }; - 98EB120C8EE7F2CE033F4A047E2035CC /* PBXContainerItemProxy */ = { + 962CFA107358EEB763F2A53B7E7F2790 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 39E0403E3ACE39BC0D878D82FAB8F012; remoteInfo = FirebaseABTesting; }; + 964BA5329F344ABF3A54C073BC55FD4E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D35E9EC86D36A4C8BC1704199FDB3552; + remoteInfo = Fabric; + }; + 9891E5FAFC91F262695742286653BA16 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 000000006DC0; + remoteInfo = React; + }; + 9A2D94180C1D8549B209C4F116F4FC88 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8601F7B19425496C5312C6F111D6E777; + remoteInfo = UMCore; + }; 9D25F24407F3DB7F8037248B4DA8103D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1062,41 +1114,20 @@ remoteGlobalIDString = 368FB7FBA34E3323BB42D13325551C95; remoteInfo = FirebaseCore; }; - A14DE74DE6868C4F5AA92198DA5A337E /* PBXContainerItemProxy */ = { + A1980C07845B724BBD41A0EE9C1EF489 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 368FB7FBA34E3323BB42D13325551C95; - remoteInfo = FirebaseCore; - }; - A24F572C2889FEFE87F85CF3087C4986 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = AF79516C61CAF63B0032AFC55FF9B727; - remoteInfo = UMTaskManagerInterface; - }; - A2559BAF828E71ABE9647D86306F3D05 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4412C5F689DD128EFB8F42F11C502D2C; - remoteInfo = UMCore; - }; - A31C90B793DC54F7498BBB02C66D7E01 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E3A3FB14CD4ACD21565913CF4A4B097C; - remoteInfo = GTMSessionFetcher; - }; - A3FEC986066914E954E21083FE82A744 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 697F1B537EEB4F371E0205934B9E8BEE; + remoteGlobalIDString = BB9572F1566792491630510569E89516; remoteInfo = UMBarCodeScannerInterface; }; + A2A1387AB8C9C9983BEAE53C034979F4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 000000006DC0; + remoteInfo = React; + }; A560693278F98FFD671DF28C1A701DFB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1104,40 +1135,40 @@ remoteGlobalIDString = E3A3FB14CD4ACD21565913CF4A4B097C; remoteInfo = GTMSessionFetcher; }; - A57FA5C40A1BE5F5C481358F3D88E137 /* PBXContainerItemProxy */ = { + A87946F6187D9863D91BC3142123A6CE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D6CDBA4F567B018F442382D2520D6D27; - remoteInfo = UMConstantsInterface; + remoteGlobalIDString = 000000006DC0; + remoteInfo = React; }; - A7C477F16F437F0AFFBF067E258EB1E4 /* PBXContainerItemProxy */ = { + A881D7072D18B63C9134962BB6777A88 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4412C5F689DD128EFB8F42F11C502D2C; - remoteInfo = UMCore; + remoteGlobalIDString = 4ECE1108F140208A729A83BC94FAA150; + remoteInfo = EXAppLoaderProvider; }; - AA40A9A4FCBFDDE4137EC821FB028D4F /* PBXContainerItemProxy */ = { + AC564AE711416B20D16965F36E1F0446 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F1DE11E9221F196A8A9D3464F96A345A; - remoteInfo = Protobuf; + remoteGlobalIDString = 000000006DC0; + remoteInfo = React; }; - AADD210D1F940E270E559A5AE73B7D04 /* PBXContainerItemProxy */ = { + AE6DEF688A897EB24A522849B2C3F3AD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 29FC2A0EC130F2F2AF7AC9AE94A583B4; - remoteInfo = glog; + remoteGlobalIDString = 76CC3A2D036B8B64B5F70A7078274100; + remoteInfo = UMPermissionsInterface; }; - ACF6FF10C363496189AA9466B3ED8E6F /* PBXContainerItemProxy */ = { + B0112B9B878E779943717DC52DB96FB4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDEC894DA99DF9E9D232AD2BDBB2D87B; - remoteInfo = UMImageLoaderInterface; + remoteGlobalIDString = 7C36E7C600F8DE2BE1819059C80F2182; + remoteInfo = GoogleIDFASupport; }; B05FDE7687B62296694D0BBA9546545E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1146,54 +1177,33 @@ remoteGlobalIDString = 7969F0F17682790DCAF63BC9AF2176ED; remoteInfo = GoogleUtilities; }; - BD198A1073B0B954C572377ECD025D47 /* PBXContainerItemProxy */ = { + B1A6A96706F1A901A4BFAB66986F33E9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 997956AE0169931CBC995BF26AB12BFB; - remoteInfo = RNImageCropPicker; + remoteGlobalIDString = DBEFD425284835C527D3A428E908D639; + remoteInfo = QBImagePickerController; }; - BE0D9CA338918985910CFAB12661D90F /* PBXContainerItemProxy */ = { + BBEC0AEFA1FC1DA50557AAF25EF0353F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4412C5F689DD128EFB8F42F11C502D2C; - remoteInfo = UMCore; - }; - BECFB845A640310B96CB7623FA1D7FDA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9A0D985B32E9B17E43CE4137E46B85E1; - remoteInfo = RSKImageCropper; - }; - C00A62280EBE04812CBD6BCCF77AF0FF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D8201C4F7E620F6188453B5CB18BAE02; - remoteInfo = "react-native-webview"; - }; - C0A10FF48555AD6AB3C20BFCE1E571CA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 000000006C70; + remoteGlobalIDString = 000000006DC0; remoteInfo = React; }; - C14B83C0CFF34BC7981BE501C7E2CA90 /* PBXContainerItemProxy */ = { + BED3B36639DFBC11B4D5C219DC8719A3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 416F9FBE7FA448C0BD8AA749A5FBF805; + remoteGlobalIDString = 356F0A9EBA4275589E1E12E721EE1B29; remoteInfo = "react-native-orientation-locker"; }; - C69A91DAB8540F6F7D371520A350699E /* PBXContainerItemProxy */ = { + C39FA1A05C15128E7A3AF24CA741160B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = AB021401ADE9E1431240BBA948E7965E; - remoteInfo = GoogleAppMeasurement; + remoteGlobalIDString = 458293E00EF1C1F42778F9425AD34AA4; + remoteInfo = UMConstantsInterface; }; C6E67451067E44E2BAF9B3D37F53D047 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1209,6 +1219,13 @@ remoteGlobalIDString = 1ABBF6F89787BBEDF49B4636ADB45587; remoteInfo = FirebaseAnalytics; }; + CCE531097C6D17DF3D0D2A182CB03126 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E3A3FB14CD4ACD21565913CF4A4B097C; + remoteInfo = GTMSessionFetcher; + }; CD235DDD6ED40AF6628D34E57EB6B2EE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1223,13 +1240,6 @@ remoteGlobalIDString = 368FB7FBA34E3323BB42D13325551C95; remoteInfo = FirebaseCore; }; - CEE3627BDFC98BF4E34AB2269676FAFF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1414ADEE4A421F3C5F9A229345CE3F61; - remoteInfo = DoubleConversion; - }; D1D3303C3AD8C1B99F2E4AF4B23DCEB2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1237,12 +1247,12 @@ remoteGlobalIDString = 368FB7FBA34E3323BB42D13325551C95; remoteInfo = FirebaseCore; }; - D33B853FC032F1D934E9F6874BFEC377 /* PBXContainerItemProxy */ = { + D32E3C4A493D7CD25B23174015FCC206 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 031F6220C2D49E4AD5F61FAA0ECADF64; - remoteInfo = UMFileSystemInterface; + remoteGlobalIDString = DBEFD425284835C527D3A428E908D639; + remoteInfo = QBImagePickerController; }; D465047540D12FD9D95291AE82A76DB9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1251,13 +1261,6 @@ remoteGlobalIDString = D35E9EC86D36A4C8BC1704199FDB3552; remoteInfo = Fabric; }; - D52D58C1117288C15799272CAC91D89F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 240504C276270018DE05B3D0F038B1E5; - remoteInfo = EXWebBrowser; - }; D5582AE19A81D8922E73DAD94F1B1207 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1265,40 +1268,54 @@ remoteGlobalIDString = AB021401ADE9E1431240BBA948E7965E; remoteInfo = GoogleAppMeasurement; }; - DA9D58FE7EB658CD3FDD0285186A578F /* PBXContainerItemProxy */ = { + D9CDD3B8EEAFECB316E02CD50C63ACD8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2F8CF410B0326B6DEB5A2CDA4E2A2D8B; - remoteInfo = EXConstants; + remoteGlobalIDString = D3ECEDE5AEF3D2A7F3F908BD369DA39E; + remoteInfo = RNScreens; }; - E469A21C2CF113C7A6D4D2D852987CA0 /* PBXContainerItemProxy */ = { + D9F88654FCFE360E5A8823DEFA608192 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2543734D0A332B2588202904B99CC151; - remoteInfo = nanopb; + remoteGlobalIDString = FFD3AAA592A9BEDAE8106315C575E645; + remoteInfo = RSKImageCropper; }; - E4D408387C26D2B4493B5B8F6F81CEBF /* PBXContainerItemProxy */ = { + DA3F8B1A310E9F5CA91825B866E2C498 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F42432668A0F81BE898F1FEA0D6A83B7; - remoteInfo = EXAppLoaderProvider; + remoteGlobalIDString = DE51FBD286F169F98270DF6BA53F5886; + remoteInfo = UMSensorsInterface; }; - E521CAEB28F51804BB5945E0020DDFDB /* PBXContainerItemProxy */ = { + DBD75A896E5CB8A600AE1C42EC0373BE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 66641B93FAF80FF325B2D7B4AD85056F; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = 5AAD465FECAE9083F45E3DB9252A8302; + remoteInfo = FirebaseRemoteConfig; }; - E59574394782182AD725C4A25B1370F3 /* PBXContainerItemProxy */ = { + DF3D6AB5B84768A5B3A5D1CDA0FD471C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4412C5F689DD128EFB8F42F11C502D2C; - remoteInfo = UMCore; + remoteGlobalIDString = 645DEAED47D48A55A088EE2AD4BCABE9; + remoteInfo = DoubleConversion; + }; + E2055CC2B88E87B603ABD643A5A0EE34 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = AB021401ADE9E1431240BBA948E7965E; + remoteInfo = GoogleAppMeasurement; + }; + E55F1220F4030126B669FA89EE6D88F6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2204E533997A82F0D6F7AD16CE4C7106; + remoteInfo = Folly; }; E60C05616D024BAA46966F3E6B4EDC1B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1307,47 +1324,12 @@ remoteGlobalIDString = 2543734D0A332B2588202904B99CC151; remoteInfo = nanopb; }; - E81A470893951F715C9B92580C40A13B /* PBXContainerItemProxy */ = { + E76A5D27D1544462D1C8B1704EE8F921 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000000006C70; - remoteInfo = React; - }; - E8DDD4F417001348FF098308525FEE57 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7969F0F17682790DCAF63BC9AF2176ED; - remoteInfo = GoogleUtilities; - }; - EB266CA52E321F1A5BD9E62115470A38 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 66641B93FAF80FF325B2D7B4AD85056F; - remoteInfo = "boost-for-react-native"; - }; - EBF3DAADC0802D9DC79FC4F5512175C0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = ABA9A411BB5A359862E5F1AA6238278E; - remoteInfo = Crashlytics; - }; - ECCEB532AC3BCAF3E1573A5E386E8BF7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 000000006C70; - remoteInfo = React; - }; - EE4CF5998639EAB8990D2DB66260E9A2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 97C8CD7E4179727E4F374CABD338D2BB; - remoteInfo = Firebase; + remoteGlobalIDString = 7825F222F53EF434DE74A6C6FAF290E9; + remoteInfo = UMFileSystemInterface; }; EEBBFE74636D6BC7E8D380B4DBDBC621 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1356,1120 +1338,1163 @@ remoteGlobalIDString = 32F8EA730FE2005197F54338D2C236AC; remoteInfo = GoogleToolboxForMac; }; - F68C3819E57B4BC4C6135C2525ECDF0E /* PBXContainerItemProxy */ = { + F00692FA91E66B2E7BC8A8F31CE1E73E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7C36E7C600F8DE2BE1819059C80F2182; - remoteInfo = GoogleIDFASupport; + remoteGlobalIDString = 000000006DC0; + remoteInfo = React; }; - F694606F8A3B5D15625E633C00EB1AC8 /* PBXContainerItemProxy */ = { + F6B21FE2207370A8405BE3E9A0F2DDCA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4412C5F689DD128EFB8F42F11C502D2C; + remoteGlobalIDString = 760A2E2784BD5913932E942039ED1B15; + remoteInfo = RNLocalize; + }; + F883129EAB77B8BD74CDF9FF3383E306 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 59DC5D9A524CE398BCF64FEAD7E6FBF1; + remoteInfo = UMFaceDetectorInterface; + }; + F90AB3538C448A960F8448CF412AB769 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 66641B93FAF80FF325B2D7B4AD85056F; + remoteInfo = "boost-for-react-native"; + }; + F95CFD90BFD5A62BD38ADC4EFD3B7524 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1DBC3090C8BE77C9F4202B0421E0791E; + remoteInfo = glog; + }; + FC0AA1E3F5B445560B3E7B3FF818D6EE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F6361AE11A0D2F5CE16E188973F7335C; + remoteInfo = "react-native-webview"; + }; + FC5634A0D0234E1B18902B8BDEA8FF26 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B117AF3693E56035F30D5DD8D0697ACB; + remoteInfo = "QBImagePickerController-QBImagePicker"; + }; + FDF6FD30F848D20717F6E7F9EF940EBA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FD0F4E74C14C4B5B552686BD9576466F; + remoteInfo = EXFileSystem; + }; + FE8C7693079779C66A2B166BAD56A51E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8601F7B19425496C5312C6F111D6E777; remoteInfo = UMCore; }; - F6D1E43D5BC8CB7BCD7ABE3BC5EFDE7D /* PBXContainerItemProxy */ = { + FF8FBA31C3040C6C369918DE9B7B2CC6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000000006C70; - remoteInfo = React; - }; - FA1A66EE89873439B1D7CC9DC890B4B1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6455E5F0AEB4F4285748480B46DC377C; - remoteInfo = yoga; - }; - FF62E4A62AA128846C370912EA2C5616 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 000000006C70; - remoteInfo = React; + remoteGlobalIDString = FFD3AAA592A9BEDAE8106315C575E645; + remoteInfo = RSKImageCropper; }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 0002EEB829E356E7644F12B4366241A0 /* libProtobuf.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libProtobuf.a; path = libProtobuf.a; sourceTree = BUILT_PRODUCTS_DIR; }; 001906DF79B2E749BEE13C58E5D57CDA /* GPBArray_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBArray_PackagePrivate.h; path = objectivec/GPBArray_PackagePrivate.h; sourceTree = ""; }; - 006323E83A3F18D457B50ED365BA095C /* EXAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppLoaderProvider.m; path = EXAppLoaderProvider/EXAppLoaderProvider.m; sourceTree = ""; }; + 00E487917B4B6729921665515E754EA1 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; 011AC49904E60DBE7374EF4C6C46CCC5 /* SpookyHashV2.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SpookyHashV2.cpp; path = folly/hash/SpookyHashV2.cpp; sourceTree = ""; }; - 0129BE267A6BC9CF08516876B5D3BB4E /* libEXConstants.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXConstants.a; path = libEXConstants.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 014C335787583647BC2620F6F4B744E3 /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; + 012FC2F22EC7C1D82FA9F878DEDDA645 /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.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 = ""; }; - 024163D62F7A659E9A84F43885AC85DB /* libQBImagePickerController.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libQBImagePickerController.a; path = libQBImagePickerController.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 01A87C1C544DF11D4DF3F98BBD361C9D /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RCTHTTPRequestHandler.mm; path = Libraries/Network/RCTHTTPRequestHandler.mm; sourceTree = ""; }; + 01B4C36EF02F7055662A8B776D756EFB /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; + 01E22853C31DA3187F652F1C6C9C928E /* EXAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppRecordInterface.h; sourceTree = ""; }; + 01E6324807846CF0D4C5DEB07DD6898B /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; + 01FBBF732AF396F5D14B534B12DAD345 /* libGoogleToolboxForMac.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleToolboxForMac.a; path = libGoogleToolboxForMac.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 02C98E82A21DD2A618432C9DEE7A9807 /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; 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 = ""; }; 034AB978EEAE0AA5F06DB6D822E28E93 /* GPBCodedInputStream.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBCodedInputStream.m; path = objectivec/GPBCodedInputStream.m; sourceTree = ""; }; - 03FD6BD36A6D81E1716E13A3CC10F5DD /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; - 0430C4D5C4BD6719EE905E8C7A1AAFD7 /* libFirebaseInstanceID.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseInstanceID.a; path = libFirebaseInstanceID.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 03B897573520966C84E88B1BBC37057F /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; + 03D44413E373B31D064E19D1BF2C75B1 /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; 04387AC8C6AE41C3100B505F8335F30D /* QBVideoIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIndicatorView.m; path = QBImagePicker/QBVideoIndicatorView.m; sourceTree = ""; }; + 04488336C2B088D80487363B5145242B /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; + 04708FEB853CFDC182AEC8B33054A738 /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAlertManager.h; 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 = ""; }; - 04A139852A19B19D0EABE8AB2F784E35 /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; - 050CAF3D5CFA4EF2DF97B4A88561AA7D /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; + 04F01E5172B6C5A776BFC4B9357B36FD /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; + 050A2CFC6D93A203543D85A023DEDF15 /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; 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 = ""; }; - 057293510C873376FADFE3EF8DBBFAD0 /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; - 05BABEA17C5563F4FDF21B7FFF9DAB55 /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; + 0550393C8BB466DB002002BB0838CEFB /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; + 055C209694331196C14E9FA7D11030B2 /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 05D524384ECD3F628C37BEFC944816F1 /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; 05F735D71208B628185FD7C9C51A77F8 /* FIRAppAssociationRegistration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAppAssociationRegistration.m; path = Firebase/Core/FIRAppAssociationRegistration.m; sourceTree = ""; }; - 060E23922D2031B473998708E1BA04B5 /* RCTSourceCode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSourceCode.m; sourceTree = ""; }; - 06CC53E57BE8A13B80BE979DE3A011E8 /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; - 070BEB7A593BFA8899ED9BA8B075474F /* RNCUIWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCUIWebView.m; path = ios/RNCUIWebView.m; sourceTree = ""; }; - 075F8F6E97F200A30409CE3A60F94188 /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; + 06241C01929B9026FED68E9485779462 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 06299F1F26A83FE33D0135BAAA814F7D /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; + 071A1B5B086436C318FA65AB40F26C3C /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; + 07343F5E3630F2A34ACB32BEA59786B4 /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; + 07442DE3720E27B68535467D508DEE6E /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; + 076209CBDDD16E474F1B033B1ECD57C8 /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; 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 = ""; }; - 07A03BA74EA93A92BDD529BD335DD282 /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; - 07EF3FE3D82DB78D1A9AB19713BF43BD /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; + 07BA55325F41EE4F1999CF6A35B14607 /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; + 07E4C6876A997A3353015CF31F2B8799 /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; + 080C17B3B8D082F1F69860719DC4F84E /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; + 08517FB1F08FB7AFBAD6DAD9F1B99359 /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = ""; }; + 087E9ADF8236C301AB59A185CC45EC19 /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; 08917358529F92D17A1A10E42995569A /* QBAlbumCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumCell.h; path = QBImagePicker/QBAlbumCell.h; sourceTree = ""; }; - 096F14BA72C6F12FB521A0BE09F7074A /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; - 09A130E22E136628424BF0FE05ED05FE /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; - 09A78AE91C0AB9A9980300C4A7BD3248 /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; - 09B09B5FBD61C8C125354C95730CDFE5 /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; - 0A1D2789F07DB8D1B825B05FFB02D748 /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNativeAnimatedNodesManager.m; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; - 0A3DA35AEA3A1AB76A6F9C584C532630 /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; - 0A687B0AB4E33F6B3FA23BCC20519FF8 /* RCTWKWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWKWebView.h; sourceTree = ""; }; - 0AA4F4EF7880396B7795252B85D76EC1 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; - 0AEC452B11EF25C76D8B1AF0F51AF7F2 /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; + 08A80EB08739715271130AFF81D37BF0 /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; + 09E2F8BF109D8BDFFCABE077E40A9C67 /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDeviceInfo.h; sourceTree = ""; }; + 0A5F3313985401FBEC0F139688BA7E8D /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; + 0AB34758CB6226F31950615104850E69 /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; + 0ACD7F22D2ADFFF061F44FD5B68C50B1 /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; 0AF96CFD962855C85F574FBD2C954DE2 /* GPBRuntimeTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBRuntimeTypes.h; path = objectivec/GPBRuntimeTypes.h; sourceTree = ""; }; - 0B15B0DBE1D2A6B6A5B80B6908D5EB2A /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; - 0B2DEE9D6605950D85764B62EDB52E7C /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; - 0B4EA647D37E12FB370A96DD632C8979 /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyboardObserver.h; sourceTree = ""; }; + 0B9D1117376103E78E0CB7123A576165 /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; 0BAC49632693E881A740E4F2693EE2EB /* FIRInstanceIDURLQueryItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDURLQueryItem.h; path = Firebase/InstanceID/FIRInstanceIDURLQueryItem.h; sourceTree = ""; }; - 0BAFDE37B8B2ECC57C3CB50013E11AF8 /* EXAppLoaderProvider.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAppLoaderProvider.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 0BE3A9AC869BD34276885AB251FFFAAD /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; + 0C44DAD6CFBBE288838ECCC94A1EAFAB /* libFirebaseCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCore.a; path = libFirebaseCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 0C747CB7B27F13309836226E4FD6D254 /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; 0CCCEBA88468B01A169C6465CAF3FD12 /* FIRInstanceIDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDStore.h; path = Firebase/InstanceID/FIRInstanceIDStore.h; sourceTree = ""; }; 0CECDA20FE3432D2A0FD84D45349110D /* Protobuf-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Protobuf-dummy.m"; sourceTree = ""; }; - 0D1CDE9B63F7E1740A5800E02B9A0CC1 /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; + 0D17F3E4B583D4DE131D4E7BC3B81F6E /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAccessibilityManager.h; sourceTree = ""; }; 0D1E7E185F853FC0062B62CDD76AF164 /* GPBWireFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBWireFormat.h; path = objectivec/GPBWireFormat.h; sourceTree = ""; }; - 0D2E9568103F84382BB0F9AA05C4443B /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; + 0D789CD9CDC30CB084886656E48FD355 /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; 0DC0A60A9467868CEA7A2146861B49B6 /* FIRVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVersion.m; path = Firebase/Core/FIRVersion.m; sourceTree = ""; }; - 0DD4B8381E7969F7B7755F09760E46D1 /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; + 0DD95497B412DFA8195128DA85AA2782 /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; + 0E2A963D36F433E911B2271D33EA1E64 /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; 0E94C6CB02605A72F32BBE9875D6AC50 /* RSKInternalUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKInternalUtility.h; path = RSKImageCropper/RSKInternalUtility.h; sourceTree = ""; }; - 0ED4044BC46DC09A3F7C3A122671EB5E /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; + 0EE10A5CC2EA790402759C29AA467566 /* RCTWKWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWKWebViewManager.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 = ""; }; - 101309B8417EEC4E2FE55199DEC7C679 /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; - 101999AB5B0B97C082C2CECED8DBC351 /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; - 102E8941D3B089BE00CAD83D22C39A33 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 106A09E038872D5A4CF3B62354938016 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 106D6979FF3AC4091A6CD59CFEF71C95 /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; - 1084E17CD7AFF1BA53D26E432E4F3CAB /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; + 0F9FF78D55B47107D28BC2D5C9EB8995 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTClipboard.h; sourceTree = ""; }; + 1028CB80A5A9E17F7C33235DA2DF6975 /* YGMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGMarker.cpp; path = yoga/YGMarker.cpp; sourceTree = ""; }; + 103574EE79ABBE811AEB17950476C49E /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; 10C306448DF95BDD2C33FF0845BE3EE3 /* pb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb.h; sourceTree = ""; }; - 10F19AD99F05402B5CF41CDE5D6FBFAB /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; - 10F9FDCC21C245BE1F4B023FA9866ADB /* EXUserNotificationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXUserNotificationRequester.m; path = EXPermissions/EXUserNotificationRequester.m; sourceTree = ""; }; - 1158784F36D82CE72DD6C4213F187E8C /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; - 11C3FB4E8461683342BB4593A5973637 /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTAnimationUtils.m; path = Libraries/NativeAnimation/RCTAnimationUtils.m; sourceTree = ""; }; + 11787684DC77AE767DE6F48E612B3BC0 /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTiming.h; sourceTree = ""; }; 11CEFEA651D768ECDD7B19E6CC8AA9A1 /* FIRInstanceIDTokenDeleteOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenDeleteOperation.h; path = Firebase/InstanceID/FIRInstanceIDTokenDeleteOperation.h; sourceTree = ""; }; + 11F85A8D21A3D7364709DB6ED9DB8772 /* RCTSettingsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSettingsManager.m; path = Libraries/Settings/RCTSettingsManager.m; sourceTree = ""; }; 122B9AF72119AEE8595D2AE55CD8F9B4 /* Firebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Firebase.xcconfig; sourceTree = ""; }; - 12A661EEDCD89228B9FBD71009AC0690 /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; + 1279C82531816D39075D79E144C26E69 /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; 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 = ""; }; - 135B6280929F88140BDF70F232AD99E0 /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; - 1376822057D64D97EDB97E367D37CFCE /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; + 131A33F73617323A59A2341E446E70C6 /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = ""; }; + 13243D74EF6D6BC75B6F08F9AEF59271 /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; + 137036403ACD2A8F266D694726774476 /* RCTImageStoreManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageStoreManager.m; path = Libraries/Image/RCTImageStoreManager.m; sourceTree = ""; }; 13CE02627B836EDF5071714929924A66 /* pb_decode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_decode.c; sourceTree = ""; }; 13D445095FC98E1953690D565C881FDD /* RSKImageScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageScrollView.h; path = RSKImageCropper/RSKImageScrollView.h; sourceTree = ""; }; - 13D51F7954C5677A0C636D221D2D1EED /* RCTAsyncLocalStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAsyncLocalStorage.m; sourceTree = ""; }; 13ED540E431E29B3E235F3EFA7249E95 /* FIRBundleUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRBundleUtil.m; path = Firebase/Core/FIRBundleUtil.m; sourceTree = ""; }; - 142F5F316A3BB25D592ACA36BD04EA7F /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; + 141AF37C2E9015423F5CEFFEF48D3542 /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; + 142CB6889137AD1D63305C54BE7423A6 /* EXFileSystem.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.xcconfig; sourceTree = ""; }; + 143572E865F542D8A15AFCD716CC0928 /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; + 146DFB61855E63A5FD72833EBE0326C6 /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; + 147644E26FF753E12FFB6256DC7A0A79 /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; + 147F799064803498CB801A9E5B99180F /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; + 14AA4F6D5081F5F2E892516A51F0FC25 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 14C17D0A3C0EE633524B1D1A7536FAE5 /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; 14D12918B4EE1A6B8AC37D2DDC5916FE /* pb_common.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_common.c; sourceTree = ""; }; - 1500FE978E2364DB047F0990C65F65A4 /* RCTWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWebViewManager.m; sourceTree = ""; }; - 15031C15CF029161D4506B5E7E21353B /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = ""; }; - 152F5223677B47BB03575848A2FD9483 /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; + 14EE2528A671176221E59328A9F803A5 /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 150DD3E7EB4AF760769E7116B682F66E /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; + 156421640D34D8220CA95A9EA059508F /* libFolly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFolly.a; path = libFolly.a; sourceTree = BUILT_PRODUCTS_DIR; }; 1590D6871326CFE7CA44DFFEA384FD03 /* glog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "glog-dummy.m"; sourceTree = ""; }; - 15A5A14893F9FF44A537A51111DDD25C /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 15B6BB352B8791D119865D9E1466A581 /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; 16012A4DCE6C5D44809A303788CD7C71 /* FIRInstanceIDTokenStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenStore.h; path = Firebase/InstanceID/FIRInstanceIDTokenStore.h; sourceTree = ""; }; 16425F137AEAF28E31DBF3D7192A5571 /* diy-fp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "diy-fp.cc"; path = "double-conversion/diy-fp.cc"; sourceTree = ""; }; - 166E092BB2C52623FFAA0AC668906A43 /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = ""; }; 1688EE83E950851DBD776306319028FB /* utilities.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utilities.cc; path = src/utilities.cc; sourceTree = ""; }; - 16CCA8E92233B5FE9338D8F88B971B5D /* react-native-splash-screen-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-splash-screen-dummy.m"; sourceTree = ""; }; + 16C3E0C18537D81C56B5B8A15F3AD99B /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; 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 = ""; }; - 16F4D878C41562F6FE5E27FDCDCBDD61 /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; - 177F85393BEFCEF3E230DB3F4C2A7B44 /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; 17D71991D0280E8C03F310F0CAABB18F /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = Firebase/Core/Private/FIROptionsInternal.h; sourceTree = ""; }; + 181176D3E5A281F29E09DB51F6DA4A7C /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReact.a; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; }; 181D20640F43D8CB7EC6EAB505B86318 /* QBVideoIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIndicatorView.h; path = QBImagePicker/QBVideoIndicatorView.h; sourceTree = ""; }; - 184829A45853A0F756120688448C3BA0 /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = ""; }; 185920CE3F01EE5D5EFDCD7E82E2116C /* GPBUnknownFieldSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBUnknownFieldSet.h; path = objectivec/GPBUnknownFieldSet.h; sourceTree = ""; }; - 18A585C00B357738EDF779E950ED4E1C /* RCTFileRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTFileRequestHandler.m; path = Libraries/Network/RCTFileRequestHandler.m; sourceTree = ""; }; - 18CA73D76E21469621ACD465B305CFAB /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; - 18F461BC2B2F741A8B61664F954AB815 /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; - 1903123B5CC6EDF22D72B93DFF5F06AB /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; - 1928AF96BE73B92820A364CA7C40FBC9 /* fishhook.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fishhook.h; path = Libraries/fishhook/fishhook.h; sourceTree = ""; }; + 187D3D26A1DF6B91C30D7D04B26929B4 /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; 1949B0542A654E7317ADAEEADCD4683C /* FIRInstanceID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceID.m; path = Firebase/InstanceID/FIRInstanceID.m; sourceTree = ""; }; - 19B738B0EE24C530176A859D5C642DD5 /* 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; }; + 197D184FE5BF1822EC762D157E890C36 /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; + 197FD76673D99F185ACA197763AF39A2 /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; + 19D065C043070FDDC424555B13416C1E /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; 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 = ""; }; - 19EAECC10BD9B92A78609143A38F2D4C /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; + 1A10320571E05FCC3B4CC8FC20A6E168 /* EXRemoteNotificationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXRemoteNotificationRequester.h; path = EXPermissions/EXRemoteNotificationRequester.h; sourceTree = ""; }; 1A15FBFECB164015748AEC5366BF3741 /* FIRInstanceIDCombinedHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCombinedHandler.h; path = Firebase/InstanceID/FIRInstanceIDCombinedHandler.h; sourceTree = ""; }; - 1A1DF9375FDDEFBAF5377E9ECE4D6AE3 /* UMFileSystemInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.xcconfig; sourceTree = ""; }; - 1A62398A2206EB142DB7A152C43C9B45 /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; - 1A97D4C59A61BBB39F800298E466E731 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; - 1AA3B4A51136424450E912DAFD6D14BB /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; - 1AF1E263292AE06126436CFEF324828F /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; + 1A39202DC54DFE34708FF9C00AFF4168 /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; + 1AB73FA574D706AF1125FB6A78CF44D8 /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = ""; }; + 1AD39C57250C1F486BA94E1C5CE2CBC6 /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; 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 = ""; }; - 1B5F7E7A2AE47BE5714CD75A9D4CFDDB /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; + 1B20E5B4BD15B15F8C5AA88C58E64829 /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; + 1B5D07985E44D347482D2C60FB21AA98 /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = ""; }; + 1BD73EE2D1A05F9D438B8247A8E67B76 /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; 1BFD6F1262D7CFD8E1E86E5A80CB5B15 /* CGGeometry+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CGGeometry+RSKImageCropper.m"; path = "RSKImageCropper/CGGeometry+RSKImageCropper.m"; sourceTree = ""; }; - 1C03336F922054AD70102903C4F9C1F8 /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevSettings.h; sourceTree = ""; }; + 1CA4D967364DEFE5CE86F2A4BDF0C7CA /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; 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 = ""; }; - 1CC78FDF7ABF3A8258AD74C924E87E07 /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; - 1D0EE3C9D66D0F1931EAABC791242C49 /* libyoga.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libyoga.a; path = libyoga.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 1D10BD810511D9A87BFF7272E30C6761 /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 1CDECF07E208E665E6CF351D281428F3 /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBox.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 = ""; }; + 1D3A93BFDABFB5CC6B530FA2E2939664 /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; + 1D4379538C8659161388358F6135F1C1 /* react-native-splash-screen.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-splash-screen.xcconfig"; 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 = ""; }; - 1DF07E0B1956AC0169D3FD35E0CC4802 /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; - 1DFBA6529292C16DE1B06A471F9D838F /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 1E3973427DC4CF787F6E14DAFCC2C0A0 /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; - 1EA0DD6E96186722C4FEE641466A2093 /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; + 1DB45D9CAC83086E947DDA7AF5F6CCB4 /* RCTWKWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWKWebViewManager.h; sourceTree = ""; }; + 1E350EC63715886DDA8B7E1C44E7B8EF /* RCTFileReaderModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTFileReaderModule.m; path = Libraries/Blob/RCTFileReaderModule.m; sourceTree = ""; }; 1EE49B8A769B1E7AFEABA9B6B0B88B03 /* QBAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetCell.h; path = QBImagePicker/QBAssetCell.h; sourceTree = ""; }; - 1F394FB8A363617D8FE712336D4AA1BC /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; - 1F4337A361922D4C245AF737273F03F9 /* RCTWKWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWKWebViewManager.h; sourceTree = ""; }; - 1F4847F831699142D9A63D391797D6D6 /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; - 1F8137A575D9D15673727058E4451144 /* 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; }; + 1F11B93ADAAB6E4B537D574E0594197D /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = ""; }; + 1F1529528A1CB2AE852F26C8C4D12ED6 /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; + 1F1FEB9D9D8CE14E47D73F5BAC2F1100 /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = ""; }; 1F9DA817DD136F20858650D09F53CFAE /* GULObjectSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULObjectSwizzler.m; path = GoogleUtilities/ISASwizzler/GULObjectSwizzler.m; sourceTree = ""; }; - 1FBD65FFED5FFB2F05D422C3E059CC47 /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; - 1FD08E6FA82043F66C05A0B8275B5BCB /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; + 1FC457114AD13CE6579C59563744717C /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = ""; }; 1FE6B4110E349310CB49B144EEEBB44C /* FirebaseRemoteConfig.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseRemoteConfig.framework; path = Frameworks/FirebaseRemoteConfig.framework; sourceTree = ""; }; - 1FEE3004DA1EC64F861AF70CE5B85133 /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = Libraries/Image/RCTImageEditingManager.h; sourceTree = ""; }; - 2002FAFFC1387CEA4FC75FB31B8058F4 /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; + 2046ABB4F70845F305181E1B92FE056E /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; 20630B5E48C7CB69BF91D7D7F265396B /* vlog_is_on.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = vlog_is_on.cc; path = src/vlog_is_on.cc; sourceTree = ""; }; 20957E6E06A9F00102F60719D037C558 /* GTMSessionFetcherService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcherService.h; path = Source/GTMSessionFetcherService.h; sourceTree = ""; }; + 209CE90884546876425C915C7DE98975 /* react-native-webview.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.xcconfig"; sourceTree = ""; }; + 209EC6B1CFDD67D26BF01EB368EE1C5B /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; 209FB1AF949B819EDBD99CF85EA82E66 /* GPBProtocolBuffers_RuntimeSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBProtocolBuffers_RuntimeSupport.h; path = objectivec/GPBProtocolBuffers_RuntimeSupport.h; sourceTree = ""; }; - 21F401DB1AB3043FA1422A6531497BB1 /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; - 21F6D17D876AFD5FF656F7D8EAD43104 /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; - 220D823C3599CD9D33DF861E5FF34072 /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; - 221631FE87875AF1D9F03FB7DFE360C0 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = Libraries/Image/RCTImageLoader.h; sourceTree = ""; }; + 20CA04EFE40F35A7C96199D57ADFB1D6 /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; + 212E858C05B53E277BD9415D2C661D11 /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyboardObserver.h; sourceTree = ""; }; + 22157D8D92328DB807B136DC3B52510C /* fishhook.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fishhook.c; path = Libraries/fishhook/fishhook.c; sourceTree = ""; }; + 221AE8BA7A69F06F295C708CF7AD2333 /* yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "yoga-prefix.pch"; sourceTree = ""; }; 22293BA067850112F37BE2951B912138 /* signalhandler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = signalhandler.cc; path = src/signalhandler.cc; sourceTree = ""; }; - 22341E1A85056C1D8783FB8D8ACBB465 /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; - 2297690D4ABFCDF008D8E9B9A9B6C6A1 /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; - 229BFBC743748D3B9E5C05105A98E940 /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageShadowView.m; path = Libraries/Image/RCTImageShadowView.m; sourceTree = ""; }; - 22F68A1F8F5D4D146FB19C686BC5BAE0 /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; - 236C18E8515BD4516AEC2BA981CAB35A /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = ""; }; - 24A40930861F91D04D07E965DA09C8DE /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; - 24CBFB2D41618C9C0A2AB1AA3414631A /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; - 2513D8DA83BA65E8792B3AA68222C977 /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RCTHTTPRequestHandler.mm; path = Libraries/Network/RCTHTTPRequestHandler.mm; sourceTree = ""; }; + 223E5E9543530AF202AE2D33BFED5BDC /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; + 239BE82C7D83161EA71DF7E85B95D24C /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; + 242133CA5D4D34CADF322DC7844D9649 /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; + 245116EA1D0FC15E563DD07B47EA79AF /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; + 246D949DB5C54A218B07C3EE0A3987BC /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; + 24CEBF77A8430360D09CF0952646D530 /* EXCalendarRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCalendarRequester.h; path = EXPermissions/EXCalendarRequester.h; sourceTree = ""; }; + 24FA60F945D7CC199715947C68E6323D /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; + 25403EFB00D76EF827E6F56A561ED23F /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; 256F73640791D9E203ABC811B5F47544 /* QBSlomoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBSlomoIconView.h; path = QBImagePicker/QBSlomoIconView.h; sourceTree = ""; }; - 257CF57FD32567C2B877CAB1890986FD /* libnanopb.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libnanopb.a; path = libnanopb.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 25A0F9F90A3E5DDE34E9890D15D5526C /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = ""; }; - 25B75E1A8014CADA47EBD64F07605423 /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; - 2616A3515F06B81FCDD6F4617FD35434 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; - 26FC041BD2832565FE75E9C209D63F1B /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; - 272C8A821D0CA08A07E26E388B824887 /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; - 2764389E8ABD26D34BCDEF08DA7253D4 /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; - 277005663249D993DCB172D2B1039E1F /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; + 25787F0112E0260C63401BA92441374D /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; + 258496CF6BEF5245CABAED27F673CA31 /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; + 25D86FD30633BE592D4CE30EA6DE7B9B /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; + 25EBB515B61500A8BEC829915FE9F07D /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; + 26451F3A73A4A8076405DA0C328309BA /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; 27BA61510074129562C639CBA224030B /* UIImage+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+RSKImageCropper.h"; path = "RSKImageCropper/UIImage+RSKImageCropper.h"; sourceTree = ""; }; - 27C025A92309D57C00D524C722C4478D /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; - 27C18F4C704C1A881AAB2040721837D7 /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStatusBarManager.h; sourceTree = ""; }; - 27F428D24220F221FBAE8C7A461B3373 /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXPermissions/EXAudioRecordingPermissionRequester.h; sourceTree = ""; }; - 2839174A2642BC4AC1F02AF8CB7C2FEB /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; - 287749933CFC413BDC4316426BE95DDD /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; - 28785DFC53448FF6956336BBE984561D /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDeviceInfo.h; sourceTree = ""; }; - 298CF0BB5A9BCEA1C7031D9A6BFB3BB0 /* UMPermissionsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.xcconfig; sourceTree = ""; }; + 27BB03D5D5CE6A1D7C189E45D9510440 /* YGMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMarker.h; path = yoga/YGMarker.h; sourceTree = ""; }; + 280316438456A666CBA37199D67FBA50 /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; + 28225A0AAFDAE79C5315CD1D603DFDC1 /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; + 282E415EC1FD110B419F1E6B49DF3FF1 /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; + 28A8C098C18B13008071B4521820F501 /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; + 28C0D183B4D93C75902AEAAEF9148E2F /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; + 294737B114A0D475D14C2052D6A30469 /* EXCameraRollRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCameraRollRequester.m; path = EXPermissions/EXCameraRollRequester.m; sourceTree = ""; }; + 294AE222FE5CB939AEEAC059ECB44BCB /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; + 297182A6C3BD5BEEA15D0C351433F887 /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 29B3DE91E9260F837B4E9FD2908F49E1 /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; 29B77C1B615C9F7970503A7E8C200548 /* GULMutableDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULMutableDictionary.h; path = GoogleUtilities/Network/Private/GULMutableDictionary.h; sourceTree = ""; }; - 29B90A4C820988D90E6E749DD6C6BE27 /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; 29CC28732B35F69DDD786CBEBEED2149 /* GPBDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBDictionary.h; path = objectivec/GPBDictionary.h; sourceTree = ""; }; - 29E42B62E6117792DF8538BA81253543 /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; - 2A9D0896076B1B2C2CB6525EBDB7FA9D /* RCTAlertManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAlertManager.m; sourceTree = ""; }; + 2A4B6D67790545A2A6FE19258A55328A /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; 2B254C6B665958AB2EE0FF41B55E87D9 /* GULNetworkURLSession.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkURLSession.m; path = GoogleUtilities/Network/GULNetworkURLSession.m; sourceTree = ""; }; 2B3472F5B5AFC91972C23EE479F38D58 /* CLSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSStackFrame.h; path = iOS/Crashlytics.framework/Headers/CLSStackFrame.h; sourceTree = ""; }; - 2B4795352536FDDDDF443E8FCAFEA19D /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; - 2C94D3DA5D27F9B7D0494876D790B9CF /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; - 2CFEEAB193348ACA0AA563CB2FD04959 /* EXAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppLoaderInterface.h; sourceTree = ""; }; - 2D46ED2981C5A9270EF0C35F9E81FBBF /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; - 2E5027ABB31DBCCE317DFCC78BCC525C /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; + 2B3B31FCA5B0A83F62EBE2E093BD78D0 /* react-native-splash-screen-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-splash-screen-prefix.pch"; sourceTree = ""; }; + 2C0727585B7E3732421BFD0B62598478 /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; + 2C62DDB1421BE880D37252DC52979D32 /* RCTNetInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetInfo.h; path = Libraries/Network/RCTNetInfo.h; sourceTree = ""; }; + 2C64374B61D49730E469417EABB75CF0 /* 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; }; + 2C7E0B8C93DD0538EA0CAF8DAFBA04C9 /* RNCWKWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKWebViewManager.m; path = ios/RNCWKWebViewManager.m; sourceTree = ""; }; + 2DD0857E374501B3A29D206003C86476 /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; + 2E6010F08B7A2EA5EDB0CAC0E4E47AD9 /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; + 2E657EB8A5923EF09912E167F0F21ACF /* yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = yoga.xcconfig; sourceTree = ""; }; + 2E67E30C16E6296E46355DF3BB1B203D /* EXRemindersRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXRemindersRequester.h; path = EXPermissions/EXRemindersRequester.h; sourceTree = ""; }; + 2EBB56C0F9061AC3F8415DB58CC13585 /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = ""; }; 2ED73F696CD986B8483EF549CD502B8A /* Protobuf.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Protobuf.xcconfig; sourceTree = ""; }; - 2EE3906E3E4A34744C10AEF315841AE8 /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; - 2EF60D5C438BEB4CB521AF2EA5CE03C9 /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; + 2F0A7775D4F2825527CFC194EEAD5136 /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; 2F33FE55A531ACD9F959B3E74F720F24 /* FirebasePerformance.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebasePerformance.xcconfig; sourceTree = ""; }; - 2FE57F309FA13B2F3B7CAEF937808C5D /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; - 2FEC305D8BDF308C138105D2B019F9F5 /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; - 300B51CBF618DB4EE71AD7AEC7418EC0 /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = ""; }; - 30121EF7E4737FABB1119BDE1AF02136 /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; - 3113FA761D2B8E560617503959E37D23 /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 3153A0192F9680A66AC73D180AD3B486 /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; - 3164541512A74A6C36FE0E452457B729 /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; + 2F5746B355F03B27D0CD72B9771C688A /* UMCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.xcconfig; sourceTree = ""; }; + 2FB8C0A51ED0ED0AD207B78978B702D6 /* RCTWebSocketExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketExecutor.m; path = Libraries/WebSocket/RCTWebSocketExecutor.m; sourceTree = ""; }; + 30C2465E8E4F2472D21792948803A692 /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; + 312998FDA18B0145AEBE8CA65B1C31EA /* RCTWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWebView.m; sourceTree = ""; }; + 313FD47BA0BB0C721193A56C3AAEBCD5 /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; + 314D05E5073ED296968D8672E5E83DF4 /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; + 31BE553D0B3A942FA2B9DE57D6D0CDFE /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; + 31E8C0EC908EFBF797BDA3886C3D1853 /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; + 320849584DA6C35C5B33BBC9DAAAFEF5 /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageBlurUtils.m; path = Libraries/Image/RCTImageBlurUtils.m; 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 = ""; }; - 32431EBBE214C397075E0657CE3403E8 /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; + 3245089BE90D2939E3EAE7CCA48FD5C1 /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; 32461DFC0E47CD7259441A160789160E /* GPBArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBArray.h; path = objectivec/GPBArray.h; sourceTree = ""; }; - 326278F4A9BCA1111D5784B6B977D082 /* 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; }; - 32703CEB8259D0F052422D7733631713 /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; - 32803217E4A256F8BC3C89E13431E640 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 32B3B793AC1109FEE907F4987D104EB6 /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; 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 = ""; }; - 32E995840BC548A677C43BC82CC57C5C /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; - 32F45697D6853712C03725F089D38862 /* libFolly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFolly.a; path = libFolly.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 330446C56219358695AF9ADFE1B0B7AB /* RCTImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageView.m; path = Libraries/Image/RCTImageView.m; sourceTree = ""; }; + 32E5F556E1A94871EE7BE851C2FEAF38 /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; 33218EF1E52206241B7FCE116C3107BE /* strtod.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strtod.cc; path = "double-conversion/strtod.cc"; sourceTree = ""; }; - 33A98F3443DDA9DE59F4B0A4693DCD27 /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; + 33C6CF0EA084E16BD1D97452060679E9 /* libRNLocalize.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNLocalize.a; path = libRNLocalize.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 33E0062F617852082D29AF686D42B05D /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; 33E9AF75CF68904359D675D2F6B5CA19 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/detail/Demangle.cpp; sourceTree = ""; }; - 33F0D1151D1A1F03BA6AABC21145582A /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; - 343B71FB74F4137D4BD196841FF15BDD /* EXCameraRollRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCameraRollRequester.h; path = EXPermissions/EXCameraRollRequester.h; sourceTree = ""; }; - 344E6F5BBD6EF379BE0FEB4544118094 /* yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 34563A526156F5D33048FF189E22C2CF /* libGTMSessionFetcher.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGTMSessionFetcher.a; path = libGTMSessionFetcher.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 3468D3CF3DE579609CF5FF5D74192C82 /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 34B01B8C9AFCA6DE65B46F167094831C /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nManager.h; sourceTree = ""; }; + 34DB1A486400FC0129C204F3BA73AF63 /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; 34E0A28899DD0A74E41D4C7D43982744 /* fixed-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fixed-dtoa.cc"; path = "double-conversion/fixed-dtoa.cc"; 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 = ""; }; - 35B9D3015A49B28B06AEE52D3B040E49 /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; - 360B14DF3849B500D6FF5B60F39646F3 /* QBImagePicker.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = QBImagePicker.bundle; path = "QBImagePickerController-QBImagePicker.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; - 36BA7AEC472A0D2C7B0309876AF31C61 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; - 3729DBD8FFD5E4E723CDC603ADEA2D5A /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; + 36BA993B7890E62B5E8308FEB31F4289 /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; + 3716DA8C01705C208C68E7CDFA3E97B9 /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; + 3728B77F228FC2A67AF140F11276EAE5 /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = ""; }; + 37323DB200005E8E79D1526C6D776535 /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; + 377AFF7BEF5DCE70D2AFB9E7EB26233B /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; 378AAB43F6447375572F48EAA16ACF04 /* FirebaseCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.xcconfig; sourceTree = ""; }; + 37943A1ABCA8B9F615890EDAE8393BCB /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 37B2C6F7F86FBD3090EA758AD9C0497B /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; + 37D1BE5F0C2118EB40708CF5011EB5F5 /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; 3801D7269A518344DCBC1FC0BE8CD46D /* GULSwizzledObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSwizzledObject.m; path = GoogleUtilities/ISASwizzler/GULSwizzledObject.m; sourceTree = ""; }; - 3854A31D61D303819F15298C5F8AD289 /* RCTNetworkTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNetworkTask.m; path = Libraries/Network/RCTNetworkTask.m; sourceTree = ""; }; 3877D8495364FD75AC548B8B0F16D0A7 /* GPBDictionary_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBDictionary_PackagePrivate.h; path = objectivec/GPBDictionary_PackagePrivate.h; sourceTree = ""; }; 3898F03FA6F5B8EC91001D51A7ADCBF2 /* FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRApp.h; path = Firebase/Core/Public/FIRApp.h; sourceTree = ""; }; - 39BB85AE2C618E035D1354CC2636DA08 /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = ""; }; - 39E74B7CDA9089B33E3B3E7325ADC2AE /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; - 3A3B2CA4CD14211901467AB43602EE3F /* libPods-RocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-RocketChatRN.a"; path = "libPods-RocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 3A49939A60E602BB2BA3160182C8E331 /* FirebaseCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCore.h; path = Firebase/Core/Public/FirebaseCore.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 = ""; }; - 3ADB6ED8A29496CC4553AA21ECE75FF8 /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; - 3B29DFF904C43C156C2A069E16589A74 /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = ""; }; - 3C0B33350836FCB1E64810BFA1E1776F /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; + 3ACA078FECB24FC4FBE7127C0B51C194 /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; + 3B26801705816DB1CF243628583ACA87 /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; + 3B97C33BDF5DF45BEB0887981BE8ADBF /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; + 3BD55EA832B710C0E22397F4CB9031C6 /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; 3C24C1DB9F2C7EE07196D2C247A09366 /* GPBUtilities_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBUtilities_PackagePrivate.h; path = objectivec/GPBUtilities_PackagePrivate.h; sourceTree = ""; }; 3C8C72EC2BF76E610A9317B92C3CE3B4 /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = QBImagePicker/es.lproj; sourceTree = ""; }; - 3C92D3016EE0A05A1A5AB6FF66E30D27 /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; - 3CAAC145B0FCD849417B54B2A4C6ED9C /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; 3CC1EA5EF5AC122334A24592ADDB26BC /* MallocImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MallocImpl.cpp; path = folly/memory/detail/MallocImpl.cpp; sourceTree = ""; }; + 3D56419BF0D2606EF6A8EA4C5F5FF8D9 /* RCTDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDeviceInfo.m; sourceTree = ""; }; 3DBE5B5C519267A9659862AF6C8F3EC7 /* ieee.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ieee.h; path = "double-conversion/ieee.h"; sourceTree = ""; }; - 3DE98D4B5F1042E125310C2EFC43A00D /* libEXWebBrowser.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXWebBrowser.a; path = libEXWebBrowser.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3E24415C7072D67F65AFA283E52414B9 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; - 3E279381E92B4B894F51BA69E18AFB4F /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReact.a; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 3DD134E1D085F13341A8CAF562F35E60 /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 3E2D1F54C052F13ABE73A9D113CC6625 /* GPBDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBDictionary.m; path = objectivec/GPBDictionary.m; sourceTree = ""; }; + 3E58B5EBAD6F73A9BBA71B271D0CD0A3 /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; 3E5FF9B8F5625C54B2248B8CFBD8433E /* FIRInstanceIDLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDLogger.h; path = Firebase/InstanceID/FIRInstanceIDLogger.h; sourceTree = ""; }; - 3E948814E078FD9C8448F76AE607DA42 /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; - 3E9709F1200504327E02AE4748F821BA /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 3F581BD6FBACC537840D0FC6A9B4914B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 3FB866025089198843D22CBB1F0F1D24 /* RCTWKWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWKWebView.m; sourceTree = ""; }; - 404F67BC5B59B1AC7D07101C842DCB68 /* RNImageCropPicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.xcconfig; sourceTree = ""; }; - 406BAE00864E1B33EF382F43BFBFA96E /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; - 409D3DCE7BDFC47CEAEDCB5680E65BA4 /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; - 40BDEFCEDBA7C6F4FC8E1AA1AE990E6E /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; - 40F491DE7356E729E0D9AF02081FC86F /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; + 3E8F76B40B500DCEA87C0C65F9EC408B /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; + 3EDB476D8B34F515510BC923D6622EED /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSourceCode.h; sourceTree = ""; }; + 3EF4EB1B2E24D351F70ADFA726E880F8 /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; + 3FDB077D3E7DB144D6D4FA80D7D669C3 /* libFirebaseInstanceID.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseInstanceID.a; path = libFirebaseInstanceID.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 40410E05840DF8B10582A9924A44861E /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 408DCEC210E328B54AEABC14AD66CB5F /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; + 409B65BE1C266F7595AC9D7776D5EDDF /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; 4124992184BAF918EAD45DF0D83DA693 /* FIRComponentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentType.m; path = Firebase/Core/FIRComponentType.m; sourceTree = ""; }; - 41318E5B3E2A6EC45F2D30ED504BBAFF /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; 413420DD213E1ED35AB2EE5950DB489F /* DoubleConversion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DoubleConversion-dummy.m"; sourceTree = ""; }; - 4134923B843A31CC3A220A7FEE58F4D2 /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; - 417DCE252542E70D7A54637CCF712A07 /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RCTBlobManager.mm; path = Libraries/Blob/RCTBlobManager.mm; sourceTree = ""; }; - 417F439AE2A0D0D7A6B1F00376CC48F6 /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; - 418B9E196C29ACD41C724566BCD282D0 /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; - 41974FFBB9D38E3002BDC85797836D8C /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; + 41BF3A144DA86DBD2266916A619A12B0 /* EXContactsRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXContactsRequester.m; path = EXPermissions/EXContactsRequester.m; sourceTree = ""; }; 4217C74187711229B5945ADEDB0A9DA0 /* GULNetworkLoggerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkLoggerProtocol.h; path = GoogleUtilities/Network/Private/GULNetworkLoggerProtocol.h; sourceTree = ""; }; - 42186B0B9F605965E1DD092DEFDCBA72 /* libGoogleToolboxForMac.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleToolboxForMac.a; path = libGoogleToolboxForMac.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 42542E933DBB082E05C49AF7672B44B4 /* EXCalendarRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCalendarRequester.h; path = EXPermissions/EXCalendarRequester.h; sourceTree = ""; }; + 423C2C443213326238D5BF3C4E16B349 /* 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 = ""; }; - 42AB9DEED0ACFCAB27C53133D6F3EDF3 /* RCTNetInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetInfo.h; path = Libraries/Network/RCTNetInfo.h; sourceTree = ""; }; - 42B0F0AC1A1AC771B3910C1AAC4F7229 /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; + 427A42C2CE443F767A7F1C04C631C164 /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; 42D616CF93145F8AA0A8CCC0613DF94B /* GTMSessionUploadFetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionUploadFetcher.h; path = Source/GTMSessionUploadFetcher.h; sourceTree = ""; }; - 430B86F0193D1A77627DB5B70192100D /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; - 4310BC0C9C3FF5CAD594564086096322 /* EXRemoteNotificationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXRemoteNotificationRequester.h; path = EXPermissions/EXRemoteNotificationRequester.h; sourceTree = ""; }; - 432ED31078600D3B1BC4CACFBDEE3794 /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; - 436BE176273403B9F7F1EEC192994EC7 /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; - 43AA68F7F6D2872A77E7A8636C226251 /* libglog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libglog.a; path = libglog.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 440C36CBB0AD6C8E7A3F5C73EE6EE403 /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; + 42EFFF689A82E1E9314719A48B91F152 /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; + 433E42EEAC5EEE7650F1081AA78BD759 /* EXWebBrowser.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.xcconfig; sourceTree = ""; }; + 43498D74C6A4204CF8441A0E92273653 /* libEXConstants.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXConstants.a; path = libEXConstants.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 43D01E1D0C065044E298B96F7BB36094 /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; + 4401736364B38C1860579F32F9A5790E /* QBImagePicker.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = QBImagePicker.bundle; path = "QBImagePickerController-QBImagePicker.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; + 4407FF264B896A177B8997F6E30DC285 /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; + 442AF148F9AC98F51A17A3BBE56A8080 /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; 444245D3CCBAB1A0DEEB6D89589ABEE7 /* cached-powers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "cached-powers.cc"; path = "double-conversion/cached-powers.cc"; sourceTree = ""; }; - 44691A60863DD085C3A58A3869A0C3DD /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; - 4499E67B56D61443B2287A0D5139DD6B /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; - 44A5AA93ECD4735D043B2EDD0D65FEC8 /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; + 44DDF2BAF0C925DEE6EBCDE3097B3BC9 /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = ""; }; 451416F601DDE30625DA62A16B92765C /* FIRInstanceIDCombinedHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCombinedHandler.m; path = Firebase/InstanceID/FIRInstanceIDCombinedHandler.m; sourceTree = ""; }; + 451647C74153E3571F04F1487A7BFC62 /* libUMCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMCore.a; path = libUMCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 452FB7505CB7496C3FDCD350B322F2D7 /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; + 45703846CE1DB61639D42106EFF7B9E0 /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; 4573011531F44A2BF83F4401B9AA859F /* FIRInstanceIDAPNSInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDAPNSInfo.h; path = Firebase/InstanceID/FIRInstanceIDAPNSInfo.h; sourceTree = ""; }; - 45809251A4E107AD0B999BA6BCA9D352 /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; - 45E86DAD529F51163935911987BA6E23 /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = ""; }; - 4630B099272C8A542301107350E67A58 /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; - 46605810B33088BA6A42FF85931AE52A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 4677F4B7C5DD8E2D1715C503AD8503C7 /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; + 461F4AA2C18863F24117A366B0F1CF77 /* RCTActionSheetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTActionSheetManager.m; path = Libraries/ActionSheetIOS/RCTActionSheetManager.m; sourceTree = ""; }; + 466AD962F705702CA906C7054DBDD0F0 /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; + 468BF3F19D013D01FB56A0501BACE6EC /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; 4690E70186C445A91474BBC3A31BEAB2 /* FIRComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponent.m; path = Firebase/Core/FIRComponent.m; sourceTree = ""; }; - 46AE38EDAFE73BA35172D49E51DFE2EE /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; - 46F590AB337FE119D6EC99D7C224E796 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; - 473C72E07377B720F9F4979C70B6BF3D /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; + 4699C9F661A6DDD1B2459DCA67729086 /* EXConstants.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.xcconfig; sourceTree = ""; }; + 46AE75E4B5785AE7653BD3BA2848F6DB /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTExceptionsManager.h; sourceTree = ""; }; + 46C674982F3F453288768D2458B009A1 /* RCTWKWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWKWebView.h; sourceTree = ""; }; + 46CDD1BA8D627E02BD5EDDF0EFCEB1B2 /* RCTAlertManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAlertManager.m; sourceTree = ""; }; + 46E2F3A63414B49026F96E10C3703EC9 /* UMFileSystemInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.xcconfig; 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 = ""; }; - 476EBA93A075484B635152ABFAF7FC0A /* libDoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libDoubleConversion.a; path = libDoubleConversion.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 47679C92B0F5F5D2E31EB99308F97D6A /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = ""; }; 47A6A31F9EB2B51ADD0931A873E89C5D /* RSKTouchView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKTouchView.m; path = RSKImageCropper/RSKTouchView.m; sourceTree = ""; }; - 48074068C07C1FF030CC39F393077646 /* yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = yoga.xcconfig; sourceTree = ""; }; - 48C65CE4762377AC216691594AF63653 /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; - 492316F9B1A1B24D50F5928B33AD1645 /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; - 49249F2DD87E156CFF1A500EB1C3DFB9 /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; - 492D150470B7B9BFC76815724CAB0117 /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; + 4813E6EFD62CD203067FC71A32FA3C5F /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; + 4829B3B783E057A5B872870E722CDCF0 /* libGTMSessionFetcher.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGTMSessionFetcher.a; path = libGTMSessionFetcher.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 4836B1138BD8F18F9A130870049B5E79 /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; + 48C53DF684B6453DBD2E63BC07788F93 /* RCTAsyncLocalStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAsyncLocalStorage.m; sourceTree = ""; }; + 48CB9E930814389B7DC475912107F0C4 /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RCTNetworking.mm; path = Libraries/Network/RCTNetworking.mm; sourceTree = ""; }; + 48D8B4C4E85A097007638447DCB3C980 /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; 493FC8AD48875FF76E8792079DF4D17F /* GTMSessionFetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcher.h; path = Source/GTMSessionFetcher.h; sourceTree = ""; }; - 49653EDAA07F0D6DDA44E051A49DC22E /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; - 49DC055D39ED12E1A6960E7254FFA6F3 /* UMCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.xcconfig; sourceTree = ""; }; + 49A9DA46EC0ED358D65CC85ABF427B91 /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; + 4A11281EAD67AD7409DFADEECB22D879 /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 4A392B2042022C20AA6278A6488F3450 /* GULUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULUserDefaults.h; path = GoogleUtilities/UserDefaults/Private/GULUserDefaults.h; sourceTree = ""; }; - 4A40B417AD2CD9C5EF3880B0B2B8C362 /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; 4A5BB19124FE2A8CCEE96A5348423FEA /* FIRAnalyticsConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsConfiguration.h; path = Firebase/Core/Public/FIRAnalyticsConfiguration.h; sourceTree = ""; }; - 4A6386EB0C0045D507F5A27AEC94990E /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = Libraries/Image/RCTImageStoreManager.h; sourceTree = ""; }; - 4A6A78AF7C4FBA72DCD931B7BC3EA363 /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; - 4AD8FB7177D8DE7C69E787CB57537375 /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; 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 = ""; }; - 4B66F7A89929555830E1EBD60C302DA4 /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; 4BCBE4FFA2B48385E101CAC42332AC11 /* FIRInstanceIDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDStore.m; path = Firebase/InstanceID/FIRInstanceIDStore.m; sourceTree = ""; }; - 4BE8E72AAD0537E96DC29BF90BE1CAE0 /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; 4C2812A321DB28C5A37D494A1705FA3C /* FIRConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRConfiguration.m; path = Firebase/Core/FIRConfiguration.m; sourceTree = ""; }; + 4C2F54D4567E64C55A310EA85A5C9A30 /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; + 4C7B0F971E8646BE8A16D164F57F95A1 /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; + 4C7BC8F6219EAB9A0636646621150F19 /* RCTWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWebViewManager.m; sourceTree = ""; }; + 4C8573E5A3F3C2EF86D360850ED469CB /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; + 4C882770B6489F41E8DDA4A264637E63 /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; 4C8B860B45EC3D0A6958A4F91C0490A3 /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = src/glog/logging.h; sourceTree = ""; }; - 4CB6EEB39A353AA946FC87D2985983B6 /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; - 4CC69680B444D1E80E4713D807ED5D63 /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; - 4CDA25D70181B834891ABAA4688D1436 /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; - 4CE60965BF57FA9ED769A3ED2AF8B830 /* RCTLocalAssetImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTLocalAssetImageLoader.m; path = Libraries/Image/RCTLocalAssetImageLoader.m; sourceTree = ""; }; 4D1B92FF422855E7F24CBC59BA2A31C4 /* GPBCodedOutputStream_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBCodedOutputStream_PackagePrivate.h; path = objectivec/GPBCodedOutputStream_PackagePrivate.h; sourceTree = ""; }; - 4D6F821E2B93CB3EAEBB300E3BC4C28E /* EXCameraRollRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCameraRollRequester.m; path = EXPermissions/EXCameraRollRequester.m; sourceTree = ""; }; - 4DAC47E18182F546764D55FB581B0E3A /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; - 4DBAAB4107CA57D7CA45AEF718CFA494 /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; + 4D462D3772FC348846A96F769DCD6694 /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; 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 = ""; }; - 4DDA20DA47F3BB66E5B5973EB2E7677F /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; 4E1346157A8E9BD0479DB40C4BC2EA76 /* GPBUnknownField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBUnknownField.h; path = objectivec/GPBUnknownField.h; sourceTree = ""; }; - 4E2484730320A55D0D86DDA5F50D1CA9 /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; - 4F1637E70CB4A879E3E5D2C2F9C2151E /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; - 501AF6484C98A3E8EBF6ED5608246A5D /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; + 4E316BFF66F80CD630FFE20484BA591B /* RCTImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageView.m; path = Libraries/Image/RCTImageView.m; sourceTree = ""; }; + 4E32EF5525D9AC351428435A1F8AE942 /* yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 4E40B66DCC9CFCD0C02A0490A1CE1171 /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; + 4E6DE02F822507BEBA31FD4AD49EFE76 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; + 4EB6E121E7640AE36CF1600C047CBA13 /* RNCUIWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCUIWebViewManager.h; path = ios/RNCUIWebViewManager.h; sourceTree = ""; }; + 4EFD119AD1AC58743AB2F7A53DB7F064 /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; + 4F0F85CD7A2153BDBEE85E44A4FFE6BD /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = ""; }; + 4F26D487097ADB89B176A24654DD1B8C /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; + 4F53A559B54BE3326E9015D493D9CEA1 /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = Libraries/WebSocket/RCTWebSocketExecutor.h; sourceTree = ""; }; + 4F85AC598FF2F29296A236C680DCA985 /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; + 4FA705D50B47AE2B0F8998E1CE9B0A7C /* RNSplashScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSplashScreen.h; path = ios/RNSplashScreen.h; sourceTree = ""; }; + 4FA8D9EC2D91608728E19E9A5131048D /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; 50211D8651BDEECDCF337C2943949119 /* GPBDescriptor_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBDescriptor_PackagePrivate.h; path = objectivec/GPBDescriptor_PackagePrivate.h; sourceTree = ""; }; + 50252D58F348BD619FE4C2C67016C637 /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPlatform.h; sourceTree = ""; }; + 5076DBC720B08277493CC7DA8D639E7B /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; + 507B68B6E3402AC69C141A7D89CADA28 /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; 50BC3074BB06BC98F23931C70A9B5C19 /* GPBUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBUtilities.m; path = objectivec/GPBUtilities.m; sourceTree = ""; }; - 50C51F300E268E186AE672D4AC42FC22 /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = ""; }; - 50EC1AF9B3A0F16304961F5BB87FCAA6 /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; - 50FB219D676A89DE3DF6CA01AB58EA75 /* EXAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppRecordInterface.h; sourceTree = ""; }; - 511DB55203A843693DAD2090A460AC44 /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; - 51214EFD3D68E1D6C311916765C6C1B5 /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; - 512ABD07CDF6B668A83199DA866D4221 /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; - 512F48B528D5E095DF06C40A538A4B0E /* RNScreens.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.xcconfig; sourceTree = ""; }; + 50ECDFDA07BC77863642EFC10C2E0E79 /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; + 50FBCE2B22EE450CFFE2969D7BC90CE9 /* EXSystemBrightnessRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXSystemBrightnessRequester.m; path = EXPermissions/EXSystemBrightnessRequester.m; sourceTree = ""; }; 515A1F6C79F560E37E999D318248B68B /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = Firebase/Core/Private/FIRLogger.h; sourceTree = ""; }; + 5183A53E1333DC32E38E5FCD369B54E9 /* libEXWebBrowser.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXWebBrowser.a; path = libEXWebBrowser.a; sourceTree = BUILT_PRODUCTS_DIR; }; 51DB1D488B9CD90333D4917C16942248 /* ColdClass.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ColdClass.cpp; path = folly/lang/ColdClass.cpp; sourceTree = ""; }; - 5231D40564492B22E0B31B0B5D09D4BF /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; 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 = ""; }; - 5260AF78E78E7390F1709DC0EE49278E /* RCTWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWebViewManager.h; sourceTree = ""; }; - 5290808C37723CB0BC4DCF45FF29DC9A /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; - 5350AFC61027B0596968BC971FAC9E57 /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; + 533EBD8A99F93F6E2944044F0931F51D /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; 53563E1385145D00720C7953AD9E0E74 /* Crashlytics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Crashlytics.xcconfig; sourceTree = ""; }; - 5411838FCE29199BF69C2638D1FBD5EB /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; + 53C2CD5D2DFFF4B2F3C2229EE1584F0C /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; + 53E97C06392066D484CE238F3EE67050 /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; + 542697236506CF58155E6FAAECA7490D /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; + 5444002AD22E26BD77E7A690DEDE3927 /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; 54627613061D55A797A2AFCFB0A864D7 /* GULLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerLevel.h; path = GoogleUtilities/Logger/Public/GULLoggerLevel.h; sourceTree = ""; }; - 5481967086CFD427E3267D80277E1992 /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; - 5499AE39E85550D1F1DB83B639F0E161 /* EXRemoteNotificationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXRemoteNotificationRequester.m; path = EXPermissions/EXRemoteNotificationRequester.m; sourceTree = ""; }; - 54DF384CA8D041C7CE93CBB2655BF1A4 /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; + 551EC296FD24DFB91133D21611F27E2D /* RCTLinkingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTLinkingManager.m; path = Libraries/LinkingIOS/RCTLinkingManager.m; sourceTree = ""; }; + 55AA1497D8FF39EAF4EBE70A086D8C7A /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; + 55D0B57585A24C53FE4784D0EAC36D02 /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; + 562717B056346B023BF70BBFDB082C2F /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; 565D524286473269CBBCCFB3B6EDD6AC /* GPBUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBUtilities.h; path = objectivec/GPBUtilities.h; sourceTree = ""; }; - 567385FE24142A67287A3E4750BC901E /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; - 56B2116D16CD2C71D396426E61FC335C /* RCTStatusBarManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStatusBarManager.m; sourceTree = ""; }; - 5738DE19D8C387C7CD7A3C4A11E7F897 /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; - 57591A2885B9DF3BF84E508282B06FEB /* RCTImageEditingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageEditingManager.m; path = Libraries/Image/RCTImageEditingManager.m; sourceTree = ""; }; - 5798E21B42A0670FEE3E6EBCF34C882A /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 56E22C479E2A34E95DEE6C2FB1082AC9 /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; + 56EBC990921FF32F5CCA9D756F6E8CDE /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; + 56FE2D4F756CFFB6D0493194DCCEFA79 /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; + 578C7448E346DE8561914E2B2C5F8002 /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.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 = ""; }; 5806880501A07C1ACB9A7138A81669B0 /* pb_decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_decode.h; sourceTree = ""; }; - 58B94351A183601F151A075F186850AC /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; - 58DBBEAD853B349A05983023D738A1F1 /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; + 58C7F8430005FE0D9332F7E3CD0F2432 /* EXUserNotificationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXUserNotificationRequester.h; path = EXPermissions/EXUserNotificationRequester.h; sourceTree = ""; }; 58EFA2443DE01F9B740204B2BDDAE0DE /* CLSReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSReport.h; path = iOS/Crashlytics.framework/Headers/CLSReport.h; sourceTree = ""; }; - 5946684FA30A5B9D7A005137B2A405C9 /* 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; }; + 58F84B35812027DC7E6F9CFA0D6FEE66 /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; + 590380F8439C130BE22AA6FF5085D9B2 /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; + 59392C2E76B751E2745378AE6F20E566 /* RCTNetInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNetInfo.m; path = Libraries/Network/RCTNetInfo.m; sourceTree = ""; }; 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 = ""; }; 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 = ""; }; 59EDFF0DAF963120B38FF8CB03EFD21D /* GULReachabilityChecker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULReachabilityChecker.m; path = GoogleUtilities/Reachability/GULReachabilityChecker.m; sourceTree = ""; }; + 5A037BCB051F40EE86B2C4B8F2057269 /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; + 5A11D9678F81B30C6958F2BDBF3277C0 /* React-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-prefix.pch"; 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 = ""; }; - 5AA513A34E8471B03A33D9E8FA6602C2 /* UMReactNativeAdapter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.xcconfig; sourceTree = ""; }; - 5AB98F2B54377C2DFDD704762E786557 /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; - 5AC59977CF1D5FCBF5DA8C5ABE5B82EC /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; + 5ABE5522DEDF3C841364D3288D0390ED /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 5AD048465639525B81E23944B58005C8 /* Pods-RocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-RocketChatRN-acknowledgements.plist"; sourceTree = ""; }; - 5B227B77549A57A7FB9BB5908B7850D0 /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = ""; }; - 5B81BC5BD563B06DA975490A65EB28D3 /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; - 5B8751A91DE6DFA13257EEE32F23CD26 /* EXAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppLoaderProvider.h; path = EXAppLoaderProvider/EXAppLoaderProvider.h; sourceTree = ""; }; - 5BD735A963E84B6CA6CD4FB62E2E025D /* RCTPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPlatform.m; sourceTree = ""; }; + 5B462D92F155C2ABF56D5A7B4732E87F /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; + 5BB1C415CE6739B0C93B165594B1E74C /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; + 5BC407CBFA3FB85A76CFFAD9F908CF4A /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; 5BE41C9DFDC4FD7C408776028F523ED8 /* FirebaseABTesting.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseABTesting.framework; path = Frameworks/FirebaseABTesting.framework; sourceTree = ""; }; 5C091A0338C15E8B88682282FA526CA6 /* FIRInstanceIDStringEncoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDStringEncoding.h; path = Firebase/InstanceID/FIRInstanceIDStringEncoding.h; sourceTree = ""; }; - 5C4A48136C0B2CA0819B5D8853D4DB12 /* RNSplashScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSplashScreen.h; path = ios/RNSplashScreen.h; sourceTree = ""; }; - 5C506C83FAFADB84283106988FD7BCB3 /* fishhook.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fishhook.c; path = Libraries/fishhook/fishhook.c; sourceTree = ""; }; - 5C7732FC60AE7FBD15447F7865946CA8 /* yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "yoga-dummy.m"; sourceTree = ""; }; - 5C7751349E791E93C6992B712F1B63AD /* RCTDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDeviceInfo.m; sourceTree = ""; }; - 5CE86C62392D368CD3918713773FFB22 /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; - 5D777AC3D8EE6C735B30A17B7E10CB86 /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = ""; }; - 5DAF1F1F927AA08E3439B90E191B28F7 /* EXCalendarRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCalendarRequester.m; path = EXPermissions/EXCalendarRequester.m; sourceTree = ""; }; - 5DCB77C7655ED6A56389CB95C21559D5 /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; + 5C2DC63339E4D958A31F062DCC67F756 /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; + 5DA976C96E2253139E9F32D30F9810FA /* RCTNetworkTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNetworkTask.m; path = Libraries/Network/RCTNetworkTask.m; sourceTree = ""; }; + 5E0809EBB328317EB72000059C657869 /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 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 = ""; }; - 5E1DB5A55C5832BD16262261605E0D45 /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; + 5E1F1EBB839A79D8B33CB0ECE01C3AF5 /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; 5E27655892D05466617A8A07FDBD8687 /* FIRInstanceIDKeyPair.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDKeyPair.m; path = Firebase/InstanceID/FIRInstanceIDKeyPair.m; sourceTree = ""; }; + 5E2F6C88E12279068F0BF97B49953417 /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; + 5E414F340DFDDD3CFCBB65D28556C882 /* libEXFileSystem.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXFileSystem.a; path = libEXFileSystem.a; sourceTree = BUILT_PRODUCTS_DIR; }; 5E4F9A756C618643123B7CD818A7BB8E /* GULLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLogger.h; path = GoogleUtilities/Logger/Private/GULLogger.h; sourceTree = ""; }; - 5EB18FC900CB60F0116F03ED1EEF394D /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; - 5EEAF878FE2BB3CE870F58642F2C467E /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; - 5F07D8DD9CF1C67C9C705550A34FDB2A /* RNCUIWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCUIWebViewManager.m; path = ios/RNCUIWebViewManager.m; sourceTree = ""; }; - 5F0E06511BF3A0BF1C6458AF3110DC25 /* UMBarCodeScannerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.xcconfig; sourceTree = ""; }; - 5F48C0D74D371A9F91ABE12DA7B409E2 /* EXContactsRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXContactsRequester.h; path = EXPermissions/EXContactsRequester.h; sourceTree = ""; }; - 5F522B04B6820F32291BE20351F2B3FD /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; - 5FFD66EEE5F4E4D47ED600FC76F243EC /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 5F0E472B1853F8938964BA571BABA761 /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; + 5F546F4AB5917CEEF41F96B5627D803B /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; + 5FC2249CCCEEF30FD1AF3D62EDCB4509 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; + 5FE77BB2D46F3A06F6D1F63956D9DC35 /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; 601F8DCD411FF95D5B4DB5F224ACF266 /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = src/demangle.cc; sourceTree = ""; }; - 60B8A0AF195DFE943EC99E7FDAF038E3 /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageBlurUtils.m; path = Libraries/Image/RCTImageBlurUtils.m; sourceTree = ""; }; - 60CFEF9F7605ABF7E595A0BA9D026573 /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 60F2AA45F675CC3245D0A35C97A88A34 /* EXLocationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocationRequester.h; path = EXPermissions/EXLocationRequester.h; sourceTree = ""; }; + 60547AF384599EAA7C2E59C9B51F7F3B /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; + 606516EE7FC2050A844FAB80A23BE4D1 /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNativeAnimatedNodesManager.m; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.m; 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 = ""; }; - 613B3E6092E0933A2CEC3457778F58FD /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; - 617A7D8D00BE005A752990053BB968CC /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; - 61A3278B510DEB9D2F985C2A3212CD3A /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; - 61CC2FDB8491F4772F06EC8A2AD5DD0C /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; + 61317EA8FF19BF62F27DE3C70F246CC8 /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; + 615C12AF17EE997A18E18B79853E9AD9 /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; + 61ADF25B04F0CA8332EF8296165904D3 /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; 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 = ""; }; + 622300D8286AC50BDC3A03EEF47AC112 /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; 622A888BCCAB419A51B31C52E811CF12 /* FIRComponentContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentContainer.m; path = Firebase/Core/FIRComponentContainer.m; sourceTree = ""; }; - 6296729557B4C266FB879564A0339D94 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; + 62E8A6986FAF6E69D8F241F8627E1776 /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; + 62F8F485A5510811BDB32502C8A5D81E /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.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 = ""; }; - 6382F111C6E6725DED86068507C906E4 /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = ""; }; - 6421A1B8F31B4FF8751EC754CAEFB645 /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; - 6445BD9F80EC6ECD81FC04D9BA020D02 /* UMImageLoaderInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.xcconfig; sourceTree = ""; }; 644949DB617A048149E047010C6D0980 /* FIRInstanceIDKeychain.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDKeychain.m; path = Firebase/InstanceID/FIRInstanceIDKeychain.m; sourceTree = ""; }; - 644B8070975A8EC1C5728C413E649649 /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = ""; }; - 64771C531BA53A0F2561501D36FB1CBB /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; + 644AE7BA2E15D241F25F80FA50F13421 /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = ios/RNCWKProcessPoolManager.h; sourceTree = ""; }; + 647CAD3A01C396D13D0A628FFBE2B15E /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; 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 = ""; }; - 649AC19744404C0C0634E9742E3B2CAC /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; - 64BC3B12E4CBF094E7B65E7144D03C6E /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.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 = ""; }; - 65037438147F52283E3C971FB2D6FB2B /* EXDownloadDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXDownloadDelegate.m; path = EXFileSystem/EXDownloadDelegate.m; sourceTree = ""; }; 6513B153A69122DA4C3567D902EF3824 /* FIRInstanceIDKeyPairStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDKeyPairStore.m; path = Firebase/InstanceID/FIRInstanceIDKeyPairStore.m; sourceTree = ""; }; - 652511981B0F8642FA9502EA4DD3F578 /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; - 66080C4B1F21D38156943C8CEF895FEE /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; - 6615E7135BC4A72015D8686CFE37B532 /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; - 662956D6738667BD65B45E0CD51506D6 /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; - 664B13A2174456B32369166818924A83 /* EXAppLoaderProvider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAppLoaderProvider-prefix.pch"; sourceTree = ""; }; + 651CD8D43249B30C86BD4789FE3E7E69 /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; + 65A9BDC9AD747BDFFA787E7D69A4234B /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; + 65B547BB4C4891BA8B4B8BC3FFC69442 /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; 6697EA434D23502A2D809B6B7E6E3A4B /* QBImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBImagePickerController.h; path = QBImagePicker/QBImagePickerController.h; sourceTree = ""; }; - 66D468D25C379F2DAAE84C36DD3C92DF /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; + 6715E712DD4EFF48C397F6EB221323F1 /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = ""; }; + 671894DE5AEEF8180CCD619CC2B82C1F /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; 6734DE64ED0684F4ED7E862F0B473C09 /* GTMNSData+zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GTMNSData+zlib.h"; path = "Foundation/GTMNSData+zlib.h"; sourceTree = ""; }; + 67604CC4AA9111884CA2A28F8347371F /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; + 67643D95661EE7789DBB54FF7DEFF786 /* UMImageLoaderInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.xcconfig; sourceTree = ""; }; 677CA4BB009608055FD2DE2322188AD1 /* GPBArray.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBArray.m; path = objectivec/GPBArray.m; sourceTree = ""; }; - 67827E1676CA912E227342305664911F /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; 679D1D88CD0BDF8F95100BFABEEEB36C /* FirebasePerformance.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebasePerformance.framework; path = Frameworks/FirebasePerformance.framework; sourceTree = ""; }; - 679D8A3887AC24280B378D77CE3663E4 /* EXFileSystem.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.xcconfig; sourceTree = ""; }; - 67AE94719A7798E468DA85119F97BBF7 /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 682BE68F4C6FB3FAC23E21A10800223A /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; + 68359FC0678435BB2A49A39E15C195EB /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; + 687FE3553BAD91E67ABA40DABFAB3E36 /* RCTNativeAnimatedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNativeAnimatedModule.m; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.m; sourceTree = ""; }; + 6889D23F6D5BC4DED02BE641168D5412 /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; 68A1E84C5B4C1FA0364534DF5FA9CA2B /* FIRInstanceIDCheckinStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCheckinStore.m; path = Firebase/InstanceID/FIRInstanceIDCheckinStore.m; sourceTree = ""; }; - 68A3DBD561E2D94B8CDD9BCE3130506A /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAlertManager.h; sourceTree = ""; }; - 68B0335C8C9575C0D4D35D706F2044F8 /* RNCWKWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKWebViewManager.m; path = ios/RNCWKWebViewManager.m; sourceTree = ""; }; - 68E26BDD250FF381A64445A0F4B96265 /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = Libraries/WebSocket/RCTWebSocketExecutor.h; sourceTree = ""; }; + 68B1532273B369E6B91BC4D3BF795D8D /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; + 68BE9653FF3C3D2E30F70C5F69228536 /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; + 69191110D228F9C8A023B23FADAB2737 /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; 6946B862376ED5B6185DFD59CE9BB4A5 /* fixed-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fixed-dtoa.h"; path = "double-conversion/fixed-dtoa.h"; sourceTree = ""; }; - 69B7A75C19066DFC7937F2A35BE5CB58 /* EXContactsRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXContactsRequester.m; path = EXPermissions/EXContactsRequester.m; sourceTree = ""; }; + 697D2D342CC80D0A36BA5B3863D0B01A /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.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 = ""; }; - 6A35F41E50F2FC39AFDFDD6FE9E121F6 /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; - 6A3E8DD786A499123938CD5362324D0B /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; - 6B10A1826D3A16CB37D5644F9342E7A2 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; - 6B5A3C8152D2BB24A9A809E906446DC0 /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFPSGraph.h; sourceTree = ""; }; + 6A14D7251CB9598F8D8E2159BDAA8268 /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; + 6A21CFCE202DEEA62544935114DF5577 /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; + 6A2B404A204EC7ECF8D87A17A9BEA94A /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = ""; }; + 6AE653E4A38A97C70A47F0834A6EBD99 /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; + 6B5E45B354A0254C5B403D2CAD4B7E5D /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; + 6BB1713F752569DC3B97F403498D8CD1 /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; 6BC6169FE9172EC3ECF6AD711B177B87 /* FIRInstanceIDKeyPairStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDKeyPairStore.h; path = Firebase/InstanceID/FIRInstanceIDKeyPairStore.h; sourceTree = ""; }; + 6BC8032F7258B87CB29A1412F8AF94CD /* UMSensorsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.xcconfig; 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 = ""; }; - 6C38D0ACCB62EC24B6C136B2BA7C082C /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; - 6C99F96508DF478E641510E26535F270 /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; + 6CA5CCBA6F4FFB6C4A2F1B72EFED5655 /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; + 6CCF3290611333EB29B32CAD535196A2 /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFPSGraph.h; sourceTree = ""; }; 6D048B65D5401F3B11C2CD7AD3F5FDE2 /* RSKTouchView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKTouchView.h; path = RSKImageCropper/RSKTouchView.h; sourceTree = ""; }; - 6D1A26827252D7CC86A03CDF62A063CC /* RCTTiming.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTiming.m; 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 = ""; }; - 6D4227CCE3B51F16EF5FE2C2A2105BD4 /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; 6D4F1380084C5CF876DBC28B169C3B82 /* Folly.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Folly.xcconfig; sourceTree = ""; }; + 6D650F9532244D55BD7A8C0F6DDC1104 /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.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 = ""; }; - 6DCF827321A9CF428B2DA24B9EF3F1D4 /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.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 = ""; }; - 6EE30D2408F7DFCA3658856CD03A8644 /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 6F7BD618CB825D89B530EBB0353AD3C2 /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; - 6F99DAC31C59BD1C8D9B60B14D1024C7 /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; - 7045EF4107FC6307B0EB65D560F2D999 /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; - 7065BB0E59A1F41B173CFAE2796B7B65 /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 6E455FF120AC663B6A49B08D70DF4392 /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; + 6E8B49ECBC5B12F2F5D0AAE28E3A91DD /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTTextAttributes.m; path = Libraries/Text/RCTTextAttributes.m; sourceTree = ""; }; + 6EB9E2CE843F5C50D215AEE780CFD7E1 /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; + 6EF6B1BA0D6D13C43998E68914E6A514 /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; + 6F0F7FF534B0EB951C7D599177A02A07 /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; + 6FD790951C5292DEEDFC6B351CC523A1 /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; + 7024CEB4929DA4E125AF7050AA1B7737 /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; 706A49ED0395C47363714A6B97AE0F47 /* FIRDependency.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDependency.m; path = Firebase/Core/FIRDependency.m; sourceTree = ""; }; - 70CF3C5A7350020B1560ACFDEA188F46 /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; + 707C7C69EDD67E7E806B9CC437BA6C93 /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; + 708A9E814F51ADA37EBDC6577B83D496 /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; + 70CE642281CA8D9D9936616E20C83461 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; 711C6598936FBFA8F477E439F6E6A956 /* GPBDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBDescriptor.h; path = objectivec/GPBDescriptor.h; sourceTree = ""; }; - 7168A5F138D387671B457B95FFE5F3DF /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; - 719620B440542499A489DC3961BC5624 /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; + 714C5B51AE1B1FED60435E33489164DA /* 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; }; + 71B6E007CFC596FCA8917CB6E0E005A2 /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; + 71D7D3D72FA20C510D5012B9EDE696FF /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; 7228F1A5DD1E7449CFFAA650E17D8BF7 /* GTMSessionFetcher-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GTMSessionFetcher-dummy.m"; sourceTree = ""; }; - 7261558D673771339424C5D58B879B6B /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; - 72BE02F62E749A6CECDB52ADE6E505A5 /* libRSKImageCropper.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRSKImageCropper.a; path = libRSKImageCropper.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 72DF07BD2FB92D441EF7B3FA6CB55283 /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = Libraries/WebSocket/RCTWebSocketModule.h; sourceTree = ""; }; - 73225AB78F3B0FF0F425B9B44B1B5216 /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; - 7329DD6A846858B4C6F81571A0503D6A /* EXPermissions.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.xcconfig; sourceTree = ""; }; - 7390308A61C85571FAE1ABC51D13BA00 /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; - 7390A2839A58F47E1409F2F64EC23343 /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; - 73D46F86335AEBA9348A5E756F24CC9C /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; - 741061F41439E555E783203CC6D8D268 /* react-native-orientation-locker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.xcconfig"; sourceTree = ""; }; - 7453F78CC030B18151DD0AE8A71F5219 /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = ""; }; + 7281FAA6FD69716BD70ACDBA76979CC5 /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = ""; }; + 72D8B0E431F02CFE9E10CBFA6DE6A87F /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; + 731E9DF93A8EAB05868EE38FAE9E7679 /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; + 73739BDA5E3CFF0277762732A1F44DBA /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; + 73959362E9D595EDC684963224747F14 /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; + 73BACE1E26C389EBA51AA40934853955 /* EXCameraPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCameraPermissionRequester.m; path = EXPermissions/EXCameraPermissionRequester.m; sourceTree = ""; }; + 73D9C7815CB45F52F00712F7ABE7F3AC /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; + 7493A3964D462C9904EE9BA805935B41 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 7498C22D9DF923F2EB5402E6FB46A266 /* GULReachabilityChecker+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULReachabilityChecker+Internal.h"; path = "GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h"; sourceTree = ""; }; - 752EA21339105493586B2311BA981645 /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; - 752F345322A08948145286FB1D6CAAA2 /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; - 75B2468E57DE1576DBB76888FBB32D00 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 75CF3C0457352665415A7DD0648B5274 /* EXUserNotificationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXUserNotificationRequester.h; path = EXPermissions/EXUserNotificationRequester.h; sourceTree = ""; }; - 763C0C8C1209E6DB666A36830D86BA39 /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; - 7672A360676DF4A69D80F386BD4BB1F1 /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; + 74A1F0BCDAF25A73967A868B801F7A80 /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; + 74DC67EAB7F949220770599CAE70C067 /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = ""; }; + 74E57EF5ADDA0F13133C20225672197D /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTResizeMode.m; path = Libraries/Image/RCTResizeMode.m; sourceTree = ""; }; + 758C5B62A71BB6C536A57370B509E6E9 /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; + 7631F2C848D05CC3A56DE0AF140E5840 /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; + 768F87DC4852B38BEF00A4A8FCC3AB2B /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; + 76C2DF9C809D6D29B1E01E9E00B3368B /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; 76EBFD3CD23982CD8310269BCF2453CF /* GoogleToolboxForMac-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleToolboxForMac-dummy.m"; sourceTree = ""; }; - 7993CEB6672E0783B2E199A5DA393C59 /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = ""; }; - 79EDC0716AF95A7B2E6F9C4E4EDA0091 /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; - 79FC469F93DD324B12FED331D81582A3 /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; + 77EFD59CE8873E857BFA58366E5D2E9D /* EXAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppLoaderInterface.h; sourceTree = ""; }; + 78198317FB7683EF4AD5E2AE83E2D229 /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = ""; }; + 782F8E8AFF98DA8B8A502312CFD5AB3B /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; + 7877C335D0030720B7A94943CA6828E8 /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; + 7894757CE734EA8006DEE8972BBE3416 /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; + 7906BFCA17E93A5C920FC69013A8B802 /* libGoogleUtilities.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleUtilities.a; path = libGoogleUtilities.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 79A12C8A13DD2D77DEA43CC9C788B385 /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; + 79B4EBA14FE5C4D078D8672736082620 /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; 7A29F957A43035734255D442CB7511BF /* CLSAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSAttributes.h; path = iOS/Crashlytics.framework/Headers/CLSAttributes.h; sourceTree = ""; }; - 7A83942D042DAF5CB456A7113DAF9EBD /* libUMReactNativeAdapter.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMReactNativeAdapter.a; path = libUMReactNativeAdapter.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 7A98D01E5188917281A2952FA5939600 /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; 7ACD875EB7DA766798B3BC381F195E89 /* QBVideoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIconView.h; path = QBImagePicker/QBVideoIconView.h; sourceTree = ""; }; - 7B2464956271EAC9A4D3C116C847B38A /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; - 7B538242EA01D4E8620E79EC17E9FF4A /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; + 7AD097DA253BA72F631A01CE208E06A7 /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; + 7AF5AD34EB75CEFE8BBDE7ACB26BA307 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; + 7B2098978AA5B9D7044E8AABF8DDF1AA /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; 7BA7175A9908886E248699428C067D56 /* FIRInstanceIDAuthService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDAuthService.m; path = Firebase/InstanceID/FIRInstanceIDAuthService.m; sourceTree = ""; }; - 7BCEE58EC2C9BB07E7BF2D8577775B77 /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; 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 = ""; }; - 7C60CDA90970CA5F0154E2233D5E015A /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; - 7C8B1C440E9AE651BD2D632B25C4A6C1 /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBox.h; sourceTree = ""; }; - 7C8B34B29318280733B2371775740F57 /* UMCameraInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.xcconfig; sourceTree = ""; }; + 7C68D2CEE38E5A9ABF52523980C592CE /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; + 7C9472CE65B2987AE7EFC2B36FFA5C70 /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; 7C9F66BD2F5994688215F7C214C82892 /* GULUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULUserDefaults.m; path = GoogleUtilities/UserDefaults/GULUserDefaults.m; sourceTree = ""; }; 7CBB70653DCBD6DD993B57C905751C64 /* Pods-RocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-RocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; - 7CD4BD933EF27D5F6941D394207085B7 /* RCTWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWebView.m; sourceTree = ""; }; - 7DFD61B07FB0C0ECC22F0CE080419D5E /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 7E19C3A9AF197AD3A4468250EF673652 /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTResizeMode.m; path = Libraries/Image/RCTResizeMode.m; sourceTree = ""; }; - 7E25990BD87BD19464713B59AAF32C4D /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTTextAttributes.m; path = Libraries/Text/RCTTextAttributes.m; sourceTree = ""; }; - 7E34A01EB0FF8CC842AFD9C2A69D5C14 /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; - 7E3792DC34600115B21B4766AAFC512F /* RCTExceptionsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTExceptionsManager.m; sourceTree = ""; }; + 7D58DD13F3EA3222D526DA8129870F91 /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = ""; }; + 7EC66C82CF8B03DEC69BA8AF799E1C5D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; 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 = ""; }; - 7ED8451EA7D0857F3DC1B9457E446A00 /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; - 7EF7238A5B5BD89D50B59A08044893F7 /* RCTImageStoreManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageStoreManager.m; path = Libraries/Image/RCTImageStoreManager.m; sourceTree = ""; }; 7EFD7D606C5FCF2524B1CA130FFB8982 /* GPBUnknownField_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBUnknownField_PackagePrivate.h; path = objectivec/GPBUnknownField_PackagePrivate.h; sourceTree = ""; }; - 7F282B107F5E274477CD24108CAA67CD /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; + 7F217301F2BA39881E56EC5D56ABC4C1 /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; 7F60A815345257201EB2DD6A85AE4AE3 /* GTMLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMLogger.m; path = Foundation/GTMLogger.m; sourceTree = ""; }; - 7FBD23568439E0E29E57861B14354FC8 /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; + 7F8987C7A184D022D6C2647ABC636D62 /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = ""; }; + 7FE3F2556C79961D1FF12F5F8C303A73 /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.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 = ""; }; - 80620FFF8B70D1EF2DCBDE94C57732F2 /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; 808D6DDACE2479D44956ECE70452EEDB /* FirebaseRemoteConfig.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseRemoteConfig.xcconfig; sourceTree = ""; }; - 80CA5FBCD652FA172FC2A688ADE43748 /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; - 80EC2BD18EB1CD25F8BD8EE550EBD936 /* libFirebaseCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCore.a; path = libFirebaseCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 80DD58C7B41C9F8EFB1E5F4BFE2CE71A /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = Libraries/ActionSheetIOS/RCTActionSheetManager.h; sourceTree = ""; }; 80F583A588A7BFDA1F7CB40F133E0521 /* GTMLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMLogger.h; path = Foundation/GTMLogger.h; sourceTree = ""; }; - 8188699A24133E854EB25BE72B6105CA /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; - 81ABEAE2CBCBC10533490D000A14B48C /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; - 820ED04EBBB28B15CEE6CDA3A7A363FF /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; + 812033C55FA2D92ECB175BB549062E1F /* RCTDataRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTDataRequestHandler.m; path = Libraries/Network/RCTDataRequestHandler.m; sourceTree = ""; }; + 81D6504188670BC5E75619FF14C1D107 /* RNScreens.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.xcconfig; sourceTree = ""; }; + 822C4E3023425B2B7CB1CF05CACBA89F /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; 822E127F41D73E1A442BAE48920F7F3E /* FIRInstanceID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceID.h; path = Firebase/InstanceID/Public/FIRInstanceID.h; sourceTree = ""; }; - 823124DA0A461CE6E6A80D43D569B33B /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; 824CA65A50D94CA1CAE58408CB4B035F /* FirebaseABTesting.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseABTesting.xcconfig; sourceTree = ""; }; - 8273F374BFF1861CEF7C786EAE150E18 /* EXRemindersRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXRemindersRequester.h; path = EXPermissions/EXRemindersRequester.h; sourceTree = ""; }; - 82DD5618BCDBDB50D795B9301D681548 /* react-native-splash-screen-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-splash-screen-prefix.pch"; sourceTree = ""; }; + 8292B90905C31EB5F48D13269BD3DA2A /* RCTStatusBarManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStatusBarManager.m; sourceTree = ""; }; + 82A924397B2E5E6EF9CAEE85948920B3 /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; + 82AFF01A15189D525BCF85043DFB0DA5 /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; + 82D7CF234B5EBBC60EDFBCAF52E101BD /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; 82EBFF5DB156A96271B0169DA4006590 /* libAdIdAccessLibrary.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libAdIdAccessLibrary.a; path = Libraries/libAdIdAccessLibrary.a; sourceTree = ""; }; - 83070EEA5A2F37EE0FB033CDF47602E6 /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; 833461056D9A489B4099E8A0F59BBFE7 /* GTMSessionFetcher-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GTMSessionFetcher-prefix.pch"; sourceTree = ""; }; + 835ECBFE5A40BB61A2BC3AF77B26859F /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; + 836041EC0AD5DDF38A82E7BCE68A038D /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; + 839AA000A6598B363F4594D0D0908743 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; 83A553FB3363877DF058636D631A348A /* GPBUnknownField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBUnknownField.m; path = objectivec/GPBUnknownField.m; sourceTree = ""; }; - 83CD24F2191E8ECB2A9FD195CFFD6675 /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; - 83E0B883D0E026F6698CBF14EF8A3442 /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; - 83E6558E152D0A2F1DB11E07C8B07C50 /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; - 844F4F9F3FCA8EF0A3EE74E17134B583 /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; + 83B367550F196A0B6B27C4F25D7B2EFE /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 842F836A19D1686CBAF33E321859D16C /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; + 8437C9B3F6E691E0E4008162A033074F /* RCTAccessibilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAccessibilityManager.m; 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 = ""; }; - 84C4609BAE18F6BE6DCF2C8E38BEAD59 /* RCTVibration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVibration.m; path = Libraries/Vibration/RCTVibration.m; sourceTree = ""; }; - 85138410928599A555E8A23D10A63890 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; - 853386ACBE94A93989810C26794EED73 /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; - 853FE581BCE1B642A94313EE66586BFC /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; 8562482F04AF663EA3F27B4C0C5EAFB1 /* FIRInstanceID+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstanceID+Private.h"; path = "Firebase/InstanceID/FIRInstanceID+Private.h"; sourceTree = ""; }; - 85CA58B6ED6DD4606B0ADFC520435266 /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; + 8583C2C31D57302C748FAD771527CBA3 /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; 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 = ""; }; 86144205600214BECA2C93CEDC2A76D7 /* QBCheckmarkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBCheckmarkView.h; path = QBImagePicker/QBCheckmarkView.h; sourceTree = ""; }; - 86A72E4085A8D43C3A255DEAF8CC3E20 /* RNCUIWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCUIWebViewManager.h; path = ios/RNCUIWebViewManager.h; sourceTree = ""; }; + 8629421723938A1697A44881CD6463F5 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageCache.m; path = Libraries/Image/RCTImageCache.m; sourceTree = ""; }; + 867C547411E2C313D3A0DA997D2116A2 /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; + 86D2250AD738642C24D4EF3C5B70A7CA /* RCTRedBox.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBox.m; sourceTree = ""; }; 86FB658177A76D66DFF67A1F1B6430D6 /* FIRInstanceIDTokenFetchOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenFetchOperation.m; path = Firebase/InstanceID/FIRInstanceIDTokenFetchOperation.m; sourceTree = ""; }; - 8719FD94393531927727AFA217E6FE21 /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; - 87238A610E2D73623ABB5A901A698AFF /* YGMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGMarker.cpp; path = yoga/YGMarker.cpp; sourceTree = ""; }; - 874FB48CB7FBE1947122DE5DD19A4D99 /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; - 87A816EB719F7EC75B8425B0103B9FA6 /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; - 87C4A69892016B0B60C8BA6B6EF12DDD /* EXRemindersRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXRemindersRequester.m; path = EXPermissions/EXRemindersRequester.m; sourceTree = ""; }; + 872423EB47D0A0782ABCC957496466D5 /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; + 8760FCF4AD8432C345B8508EDDA47986 /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; + 877B82C3FB4BBE7ABAAF325E98A9375A /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; + 87C3642719C74281E6426FD8299F20B8 /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; + 87D2EBB805EBB8FFE073BB59E7E27A2F /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; + 87E75C1105F495E4BC74A07FA293FF8D /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; + 87EA7D820BDC4D2C748F272F7B878252 /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 87F026DB0B79077966F53A4065BE6C69 /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; 88173FEAE6AA0334663679ABEB47A34D /* pb_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_encode.h; sourceTree = ""; }; - 8912ACB78DA0AEB7F2A25A5FF3B2F359 /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; - 8920CC8B1F2B1F7674884A1BCD4F3C45 /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = ""; }; - 8941D9DF6FF070935F15CE6E424386B6 /* EXCameraPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCameraPermissionRequester.h; path = EXPermissions/EXCameraPermissionRequester.h; sourceTree = ""; }; - 89ADB9B449CBD35D5DA36EDAB48E3FBB /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = ""; }; - 89DC3DEAE2A8575D95A57DBECABE3E18 /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; - 89FC01CE5595DBF9AB70F52ED6801451 /* UMConstantsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.xcconfig; sourceTree = ""; }; + 886975FDA0141E28493EF470F77C09B4 /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAppState.h; sourceTree = ""; }; + 88AE41598E7A1040BE84A14DACF0D164 /* RNCWKWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKWebViewManager.h; path = ios/RNCWKWebViewManager.h; sourceTree = ""; }; + 88D5B80B7892B20000CBBC322AFEB611 /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; + 88D5B8569BE83E36565DE608DEACF48A /* UMTaskManagerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.xcconfig; sourceTree = ""; }; + 88E76D5B5A7228C45C5F7EE61BF267C1 /* EXLocationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocationRequester.h; path = EXPermissions/EXLocationRequester.h; sourceTree = ""; }; + 892B9CD160736754C0D4E3D6C4A0A5A3 /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8A17FC0AA871E7E8A271F065985D9048 /* RCTPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPlatform.m; 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 = ""; }; - 8B6AD54359D409E00B14A790A8F88D0B /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; + 8B612638181DFE799EAAA22A202AA22E /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; + 8B6A4D6896B881DD0E6AB07264F572D3 /* RNImageCropPicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.xcconfig; sourceTree = ""; }; 8B8A65EF6D756E78D1E16ACF41C31AEB /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = QBImagePicker/ja.lproj; sourceTree = ""; }; 8B96A3E403D29A41E063CF1EB4EA6B2D /* FIRInstanceIDURLQueryItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDURLQueryItem.m; path = Firebase/InstanceID/FIRInstanceIDURLQueryItem.m; sourceTree = ""; }; - 8BE8C16CA396C3230F20A627AA2E5FB9 /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = ios/RNCWKProcessPoolManager.h; sourceTree = ""; }; + 8BD748049286FE38A40B357E452C2379 /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; + 8BDADE3A53B6523295101E9F6C76F54A /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; + 8BE895E26BDF6A89B69E8ED7352FDD07 /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.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 = ""; }; - 8C1650F4EB619145F2D719F0300CC33E /* YGMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMarker.h; path = yoga/YGMarker.h; sourceTree = ""; }; - 8C6257FE439CBF842CB7065B3062A429 /* RCTFileReaderModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTFileReaderModule.m; path = Libraries/Blob/RCTFileReaderModule.m; sourceTree = ""; }; - 8C84EC04AA33468AE8AD356D9EE50376 /* RNCWKWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKWebView.h; path = ios/RNCWKWebView.h; sourceTree = ""; }; - 8CD738B15E547075EE757C406514C161 /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; - 8E1301D7FA389EC69EF755A602511830 /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; - 8E18C78E0BBC2400588C67C00BCED6FE /* RCTImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageViewManager.m; path = Libraries/Image/RCTImageViewManager.m; sourceTree = ""; }; - 8E3131FF1D3501DBE8B7EDCAABC26790 /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; + 8C2AC834227ED89BBD162E917BE6B97B /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; + 8C637BB0616DAF1FC29D85803C0BCA0A /* EXUserNotificationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXUserNotificationRequester.m; path = EXPermissions/EXUserNotificationRequester.m; sourceTree = ""; }; + 8CCF6F469DCC08CA089854588C5112B1 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 8CDFB1863CDCBBB8438EE6FBBCE7D94D /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; + 8CFAD7A2E52EE02EAB686A287E9A72CD /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; + 8CFCE15FFAAAC462AB86455969E3A79A /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; + 8D3DC8CA860AE879059CE0F3873BE1C7 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; + 8D8600BC97E78BE3FC51AFCEE58FA711 /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; + 8DC74C0EDE63E9F1E216C8409A3AEA0D /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; + 8DD144CE7E724586F0F88EF8788663AA /* libRNDeviceInfo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDeviceInfo.a; path = libRNDeviceInfo.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8E48F6ED55D527B20EADC7AFA4795485 /* cached-powers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cached-powers.h"; path = "double-conversion/cached-powers.h"; sourceTree = ""; }; - 8E4F5F1F69265D3D1CB1F4B361658EDD /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; 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 = ""; }; - 8EA29490485CCCD275CA36AE44EFF99A /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = ""; }; 8EAABB04C2CF955ECC9E123EE5FB00E5 /* json.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json.cpp; path = folly/json.cpp; sourceTree = ""; }; - 8EC6887C9DE2727E0852206BC8F33826 /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; - 8EC90F6024C653AC2F3C46395C28D6B5 /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; - 8F8C219D933CA4CBC47579FC89A782DD /* EXDownloadDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXDownloadDelegate.h; path = EXFileSystem/EXDownloadDelegate.h; sourceTree = ""; }; - 8FFAC4AF38C8A0BD3B3B17D0AFEDDAF7 /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; - 907624C2949E93EA378ECBF48948684B /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = ""; }; - 919037F42BD95E0FF1853A6B107C4E80 /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; - 91F21CB2986AFBBD624267A90980FFE6 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; + 8EABC8F04B4EDDC509BABF347C2746B3 /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; + 8EAD830644BBAFD06794027D2B29F2AA /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = ""; }; + 8EC8DAD3D9E39754F5B62B55AEAD5A45 /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; + 8FE8D0571806DA652678B5BDAD0778B2 /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; + 903551A303DFC5755D6967BE74DAAE45 /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 908B1385C9E558437C99B415ED41171E /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; + 90DEED647674B2C18FB7940F4CBBB4FE /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; + 90F8437F9F068DF93E89BC04F19F8D50 /* EXAppLoaderProvider.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAppLoaderProvider.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 912EB3CC1AC4350392A9C3AD6C46FBBF /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; 91FFC3ACA796AF71C4AB51C4D5637080 /* GTMSessionFetcherLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcherLogging.h; path = Source/GTMSessionFetcherLogging.h; sourceTree = ""; }; + 9218E3569302E5163873DE4B45837170 /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; 92539DBA7C237CC37CC174B30BE17026 /* QBVideoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIconView.m; path = QBImagePicker/QBVideoIconView.m; sourceTree = ""; }; - 9273C9D88A0111ECC013272D7BB5B64A /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = ""; }; 92D0C869550966421DB4CB3F899284E3 /* QBAlbumsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumsViewController.h; path = QBImagePicker/QBAlbumsViewController.h; sourceTree = ""; }; - 92D60C9A1D764AC5556CD4FE75BDE516 /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; - 92F51FAF3DAA893D97008B1519766EBF /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; 931E1E88664BF29C0559B61CDF1BD5BA /* RSKImageCropper.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RSKImageCropper.xcconfig; sourceTree = ""; }; - 9320639DBF66C7A4F9A95D5E7EF6A15C /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; - 938187C4B0DC0B4EC2A5EE97E9AD4251 /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; - 93CB347B0BAC3CA6B2499B62D9E469A5 /* EXConstants.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.xcconfig; sourceTree = ""; }; - 93EDC209BF6C6E87220B1CBA32A145B2 /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; - 95B0B69CF44E736FADE352E2C83F83E5 /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; - 95B9C1724712F4D696EC9FFF6631614A /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; + 9340203F8EF3AD7842EBA19998B2FD5A /* react-native-orientation-locker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.xcconfig"; sourceTree = ""; }; + 93E9B477DC9CC9539AE0F60A203665F7 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 945C970F7377EA4DC2C6CAE4A41B80BE /* libRNImageCropPicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNImageCropPicker.a; path = libRNImageCropPicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 94C91FEBAD27630B0C9CA6E71D78A85D /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; + 94DE6F857669CECD5259FBEBD3074D77 /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; + 95761EFC80826A70953FC6062A07A30E /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; 95C15A4BF3BF113D8E6F2239D5AFA0D3 /* GoogleToolboxForMac.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleToolboxForMac.xcconfig; sourceTree = ""; }; - 95FA905DA365683DD0401CB39D62CC99 /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; + 95CD838E261A55A1F4F9CD00E8B9F5AC /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAsyncLocalStorage.h; sourceTree = ""; }; + 960ABA5B4BACD1253F2A1EC2A7C34DAE /* RCTGIFImageDecoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTGIFImageDecoder.m; path = Libraries/Image/RCTGIFImageDecoder.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 = ""; }; - 96D333FF499006A1F35583BA23F9EF9D /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 9702C074918F8941A9CD4A559DC69C98 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 9659F207EAC953CACC94E3B2178DEA8F /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; + 96EC93A96E6C4FB5BC6E78022F57080A /* RNCWKWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKWebView.h; path = ios/RNCWKWebView.h; sourceTree = ""; }; + 9725C0B95F053CEA93415F383DAEE446 /* RCTVibration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVibration.m; path = Libraries/Vibration/RCTVibration.m; sourceTree = ""; }; 974368B8E9D0826E48E7F274531DCB6B /* glog-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "glog-prefix.pch"; sourceTree = ""; }; 975D4AA90560D485466B4A51B23DE27F /* FIRInstanceIDDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDDefines.h; path = Firebase/InstanceID/FIRInstanceIDDefines.h; sourceTree = ""; }; - 98467784096BBF54A91005EAECEA4DEC /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = ""; }; - 984C9543B7168FE98CE6A5E3901EE0ED /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; - 989C042BF54CB4D50D189FB244310612 /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; + 976FE6ACE242ABDFF3D838A1BBC9B65F /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; + 978EB96AFB4C8FC6A4401292B3C1E128 /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; + 97AB70E3B44C9BE06DC2CD3D71E86CE4 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; + 97C6B5A9CAB3A8AF7998D35A0DD44304 /* UMCameraInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.xcconfig; sourceTree = ""; }; 98A65BC0BF8190887897FA8466E7C946 /* FIRInstanceIDTokenManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenManager.h; path = Firebase/InstanceID/FIRInstanceIDTokenManager.h; sourceTree = ""; }; - 98F4C81F2CFD8C595710D5A7407ECD2B /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; - 995A7AB9746D3A244ACEE545EB4537DF /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; - 99CB74C0216C5CDF770364DDB2323F64 /* libEXPermissions.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXPermissions.a; path = libEXPermissions.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 9A51ABA5FA3A1DD573D8E0FDA96D7A03 /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; - 9A8E85806EE3A52BF65E79776F25D9ED /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; + 98B5299791527DBA7C5792E72B21C9A1 /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; + 98C31D2E809F6A37B9BAC05C1AFC0162 /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; + 98E79F2DA62FE02322F5DC2CD2E083FF /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; + 98FF8163CCDFF27138845788FB7674BA /* RCTExceptionsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTExceptionsManager.m; sourceTree = ""; }; + 99345A3B4D03AA78339ED38CA36ED43F /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; + 9953F62D53B61D0A08E0EF115C40CB95 /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; + 9979B1D5CCCDE47A4E7F9A183DF18C37 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; + 9A7C44DDA12020393029A467531D3839 /* libEXAppLoaderProvider.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAppLoaderProvider.a; path = libEXAppLoaderProvider.a; sourceTree = BUILT_PRODUCTS_DIR; }; 9AB317F0CFE633918FE469302716CA49 /* Assume.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Assume.cpp; path = folly/lang/Assume.cpp; sourceTree = ""; }; + 9AF0420C796D08009B79258FBF2075BF /* libDoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libDoubleConversion.a; path = libDoubleConversion.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9B3F6FFAF4ECC6E65BB8748B62A09D16 /* EXAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppLoaderProvider.h; path = EXAppLoaderProvider/EXAppLoaderProvider.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 = ""; }; - 9BACF3523027510533E065E3A56D1F5B /* libRNDeviceInfo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDeviceInfo.a; path = libRNDeviceInfo.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 9C2549652CAD57CE9E1855A7DFA489CA /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; - 9D48EB70A2613F54A7103BF2BF3414F7 /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; + 9B9CEE95DCE0A48C20BEDECCAC3992AC /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; + 9BA0A1F85D58A3D226EAE026A17661F4 /* libEXHaptics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXHaptics.a; path = libEXHaptics.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9BEA35EB4497F17E40B95397FBC0555F /* RNCUIWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCUIWebView.m; path = ios/RNCUIWebView.m; sourceTree = ""; }; + 9CEEA3B260C67051CDE905F475B41317 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; + 9D6AF617967301474306D59F46F79043 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; 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 = ""; }; - 9DCDA76EF62E0C4074060057A229C354 /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; + 9DA4FFB82DCD89F0F124AA4C94E42D3A /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; + 9DB43B293041411A51C71D32D3019051 /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; 9DDBA0C893A828F996D54E54B9E0B132 /* GTMSessionFetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionFetcher.m; path = Source/GTMSessionFetcher.m; sourceTree = ""; }; + 9DE9A65D1DB4BFA4D5940C75DA55E44B /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; + 9E427E9F408C92C445A34FDFCF670D59 /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 9E93B22E06F3F818C0549A563FA597AC /* Format.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Format.cpp; path = folly/Format.cpp; sourceTree = ""; }; - 9EC3159D85D08ED25791315962342573 /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; 9ECC8E411E019FCD2AF6653ECBB8AEEC /* GULLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULLogger.m; path = GoogleUtilities/Logger/GULLogger.m; sourceTree = ""; }; - 9EDB8B7B119C1DD15CD99816B6582B8B /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; 9F2B2C4D4A5F2B2E0F49A001AFFFA329 /* FIRInstanceIDUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDUtilities.m; path = Firebase/InstanceID/FIRInstanceIDUtilities.m; sourceTree = ""; }; + 9F47148CA0E691E6075E92F8BD369FF3 /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; + 9FBEA0FA2998769195041F5EA95969D2 /* EXAppLoaderProvider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppLoaderProvider.xcconfig; sourceTree = ""; }; A00EC29B08CF617E218E21BB30A22296 /* Fabric.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Fabric.xcconfig; sourceTree = ""; }; A044E0132DBBFC186CC1967069B89DDA /* nanopb.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.xcconfig; sourceTree = ""; }; A0682B4FACC89766A12837374BA1E199 /* GPBExtensionRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBExtensionRegistry.m; path = objectivec/GPBExtensionRegistry.m; sourceTree = ""; }; - A09815B59BA09B1C34E21A2E0D2A9820 /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; - A0D13ABC6FA35BCF07229C6BD1700504 /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; + A072A0815406C6FB590FA8E447EB4050 /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; + A076E8715923626C6ECD039A5BDE355F /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RCTBlobManager.mm; path = Libraries/Blob/RCTBlobManager.mm; sourceTree = ""; }; + A094C4AF0BD3A9B0B467EFDA21D8EE89 /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; + A0E858194FE8616F8CA2ACCC10D27CEF /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; + A0EE3C7A7248BB3CC01ECBA2A2159E25 /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStatusBarManager.h; sourceTree = ""; }; A0FC4A4263889C7BB58FCA1914D25763 /* GPBMessage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBMessage.m; path = objectivec/GPBMessage.m; sourceTree = ""; }; - A14ED720BFC78D11EF8998D66B37522F /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A104D2B5F9BD5AC254937A67532E27D7 /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXPermissions/EXAudioRecordingPermissionRequester.m; sourceTree = ""; }; + A1963F1B64E822FFD9F85C845E96CDD3 /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; + A1B30E172F3E53F991240743CF690AA8 /* EXAppLoaderProvider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAppLoaderProvider-prefix.pch"; 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 = ""; }; + A1C983F30CE50697D99110EA25AB9D63 /* RCTClipboard.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTClipboard.m; sourceTree = ""; }; A1FF690A9214A1760165C26D7E1E7966 /* GoogleUtilities-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleUtilities-prefix.pch"; sourceTree = ""; }; + A207123603371565C7C4A70EA0BF372C /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; A20CADD4552AE7665DC8A5AC2905BE9B /* FIRIMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRIMessageCode.h; path = Firebase/InstanceID/FIRIMessageCode.h; sourceTree = ""; }; - A22CA4457C36739764D7446F3306EAA3 /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; + A22E6E4ECFFA1E56031F25ED7A762F0D /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; A2412265E936E16EF8CAFEA80AC61815 /* GULLoggerCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerCodes.h; path = GoogleUtilities/Common/GULLoggerCodes.h; sourceTree = ""; }; - A2744645ED45801821011A274A1DC1DA /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; + A25BBEEEE5767AA6FA233E50DEC4E3AE /* EXDownloadDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXDownloadDelegate.m; path = EXFileSystem/EXDownloadDelegate.m; sourceTree = ""; }; + A2666F2C88B482E882F928581305A8EB /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; A2B5536C4DF71588F097DDAB97B554F5 /* bignum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bignum.h; path = "double-conversion/bignum.h"; sourceTree = ""; }; + A2E1C4596B2844D85C1A419158DE60A9 /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; + A2EA968187A2B499D4DF0399364AFCF4 /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; + A2F111F8AFABB8EBB5CD536CEAF6EB2B /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; A340F0B85A7A004E4716C810327DCCF2 /* FIRAnalyticsConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAnalyticsConfiguration.m; path = Firebase/Core/FIRAnalyticsConfiguration.m; sourceTree = ""; }; - A3732000F33F05A1A9FF0B683B345A2C /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; - A39C094C0A86C473C94BC7484C24CED4 /* RCTAppState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAppState.m; sourceTree = ""; }; - A3B91D71C81CFC90F2C88329C2F9651E /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = ""; }; + A3B7D4F4BE0590417DB305B6E335BBC8 /* EXRemoteNotificationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXRemoteNotificationRequester.m; path = EXPermissions/EXRemoteNotificationRequester.m; sourceTree = ""; }; + A3E78F3A04EC8F4E4F2C5C8B162C6ECE /* libUMReactNativeAdapter.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMReactNativeAdapter.a; path = libUMReactNativeAdapter.a; sourceTree = BUILT_PRODUCTS_DIR; }; A41B7BFEABEB2A6449351B5C578A54D3 /* FIRInstanceIDCheckinPreferences+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstanceIDCheckinPreferences+Internal.m"; path = "Firebase/InstanceID/FIRInstanceIDCheckinPreferences+Internal.m"; sourceTree = ""; }; - A466AD805640C5C242E975D20F9C2A20 /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; + A45AF4BB024061F36814B9352C841A19 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + A4AF0519B92EBF608C1BBE25E8463B59 /* fishhook.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fishhook.h; path = Libraries/fishhook/fishhook.h; sourceTree = ""; }; + A4B37481584A56108ED41687F5618E98 /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = ""; }; + A4CE4A704550BF21A68E8D19F1DDD7BF /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; A4D300827816D1923359DA1557AB9D0D /* FIRAnalyticsConnector.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FIRAnalyticsConnector.framework; path = Frameworks/FIRAnalyticsConnector.framework; sourceTree = ""; }; - A4D68931CA745B8899D81EC55A05F025 /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; A4F2AA49E1687DFB015A34423BE87536 /* RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageCropper.h; path = RSKImageCropper/RSKImageCropper.h; sourceTree = ""; }; A56F7E48750D68E7167D657A3975D705 /* GULReachabilityChecker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityChecker.h; path = GoogleUtilities/Reachability/Private/GULReachabilityChecker.h; sourceTree = ""; }; - A5877F204271B75F61979E4D62EED9DE /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; - A5A4EBD6153F5BA37A774CCDBFF7CBAA /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = ""; }; - A5AF48F497FB9C74664D2C42FE3B4C02 /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; - A5BC64CAA70525FE6A2C1B15E400A0EB /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; - A5C33BC63D922FE7C50AA2D12F22D7B7 /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; - A5E0B7FF3A4315169CAFF25EF261953C /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = instrumentation.h; path = yoga/instrumentation.h; sourceTree = ""; }; - A5E2CD6B541E153C741EB675CCBB0DA2 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; - A5E528BB4C27C8117DB8F85F5F14D529 /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; + A5DCF2AFD8FE857EDD6C25965368B6AF /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; + A5EB45A00F8A40475C44BF7440EE0136 /* RNLocalize.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.xcconfig; sourceTree = ""; }; + A6011AB5DE82C53D31C1281E0F9537BB /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; A61E25AA5729C8205A791AC4A5C1BA76 /* SourceContext.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SourceContext.pbobjc.m; path = objectivec/google/protobuf/SourceContext.pbobjc.m; sourceTree = ""; }; - A62F04C35780B585556EC81E33AD25A3 /* libUMCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMCore.a; path = libUMCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; - A669967D2CA60BA9BC08F7CF42A9A42E /* RCTLinkingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTLinkingManager.m; path = Libraries/LinkingIOS/RCTLinkingManager.m; sourceTree = ""; }; + A628A9F1D28002879C71D75F544425B5 /* yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "yoga-dummy.m"; sourceTree = ""; }; + A63B41FD2BAEEB8EEA740898597523D0 /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; A67A93040C93F21781D539C991CCEE83 /* pb_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_encode.c; sourceTree = ""; }; A6AF7CBCB46B2ECD4D4D365D894F5455 /* FIRInstanceIDBackupExcludedPlist.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDBackupExcludedPlist.h; path = Firebase/InstanceID/FIRInstanceIDBackupExcludedPlist.h; sourceTree = ""; }; + A6D60ECED824AD7D0FAE7E5A4FFAA45A /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; A6E9647C4980516FAEF729C99A4557DF /* FIRInstanceID+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstanceID+Testing.h"; path = "Firebase/InstanceID/FIRInstanceID+Testing.h"; sourceTree = ""; }; - A6EBA4A30C98EB6E19B9F48DFEF87EB6 /* RCTAccessibilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAccessibilityManager.m; sourceTree = ""; }; - A71E0BCDD184D9DE9D80397533B1D911 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTClipboard.h; sourceTree = ""; }; - A72F01368A40F236A5394D51A6A854A2 /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; - A7C45AADB695D3ECA53A01A8F33D3E13 /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; - A7D73627BEB4A8C2F7C85022EAAE529F /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; + A71392673A95219CF91D5EA9DBB12CD7 /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; + A7519345BCB4D7233335222AF9408932 /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; + A79C97803529DA5877D3F5089C23E4E0 /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A7A849BDD5FDDCCB8169066E6CF9FFE6 /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; + A7D69B23843A520CE859D3F1E5CCA891 /* RNDeviceInfo.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.xcconfig; 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 = ""; }; - A83FF1D80122DFC1366631D1E2A9937C /* libRNImageCropPicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNImageCropPicker.a; path = libRNImageCropPicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; - A86EF55247C722A0357BF037BB9FEEC2 /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; + A82BD6CF7D6E5BC0191B9782F9AF30D8 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; + A8606811A2959FD95EB14C11222275C1 /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; + A878A65FCD21B42522DAB206BF0A19C1 /* react-native-splash-screen-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-splash-screen-dummy.m"; sourceTree = ""; }; A89317E6AEB35292207359B477B968AD /* DoubleConversion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DoubleConversion-prefix.pch"; sourceTree = ""; }; - A8A7DB3D5605EA1278284A0718741C9B /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; - A8CDA8BFB119B77D80923A53428B46D2 /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = ""; }; - A91491FAF438D00E7F888ECAB6E83C41 /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = ""; }; + A8BEF7253E3F35B7D01FF2F1116C223F /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; + A8C39EC3E20CECFF27BD909C9DADFA33 /* RCTWebSocketModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketModule.m; path = Libraries/WebSocket/RCTWebSocketModule.m; sourceTree = ""; }; A9209D5A37DA753BC42A9DD8365F66BF /* FIRInstanceIDVersionUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDVersionUtilities.m; path = Firebase/InstanceID/FIRInstanceIDVersionUtilities.m; sourceTree = ""; }; - A97F031415304A67BC62CC843A213C22 /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; - A99F01DC131BBFFB749892ED5BFC33F0 /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; - A9E49775B4EB815239C0A7798B3FDE98 /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; + A9FEC3A25DB749F6BB553ECC5A23C6F9 /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; AA015B42B94D08FF3C4C36EA989F13DE /* FIRInstanceIDTokenInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenInfo.h; path = Firebase/InstanceID/FIRInstanceIDTokenInfo.h; sourceTree = ""; }; - AA0E26C8086FC490BFCE2BBA8E347BF9 /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTiming.h; sourceTree = ""; }; - AA8CF15ECD3F51B147A5EDCA72AE8DE5 /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; - AAAF6001EC7A96E14C038C2BA0543E14 /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; - AAD39DB75AF5AB98E246EF83DCC1AE18 /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; - AAEC02D46FF3FDA7E25A8D9C4F0EA4B2 /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXPermissions/EXAudioRecordingPermissionRequester.m; sourceTree = ""; }; - AB0A1546531343D0D5F9D57A0DA8A825 /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; - AB112D69C1BAE6F9143CF98D9832900A /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; - AB3F34414AC07F564FC51D62FCA6A85A /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; - AB54412E339C4C041154AD5E6EF8B7D9 /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; + AA03DFB583E0E86165155ABA7697AEB2 /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; + AA529A31612B7DEB193DA61C7DD1FF95 /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; + AAA291667A4D2FE4109F0E735C6019A7 /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; + AAB62DC3F7D34B55DED0B20B69D43069 /* RNCUIWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCUIWebView.h; path = ios/RNCUIWebView.h; sourceTree = ""; }; + AAE51B1A282BCFAC71BAA0951F63601D /* RCTWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWebView.h; sourceTree = ""; }; + AB17F0D8F32CDEEEEA8E685DB1EDD911 /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; AB5E8E6109691A6353CB4DD1B46E0BA2 /* GULAppEnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppEnvironmentUtil.m; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.m; sourceTree = ""; }; - AB6D0734C876C2C41435B3854BE14BBF /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; - AB97DF025AF9A51624FF2795F705FE13 /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; - ABC46FE48BA2DEE30F9D771C6471DB9B /* RNCUIWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCUIWebView.h; path = ios/RNCUIWebView.h; sourceTree = ""; }; - ABD10DC8BDA13164647A1AD2AFA917F3 /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; + AB6EC1F352B2025FCC86A286CA27FA5A /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; ABD254E522C84D25A9CACB00D98DED09 /* FIRLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoggerLevel.h; path = Firebase/Core/Public/FIRLoggerLevel.h; sourceTree = ""; }; - ABD43E0CDF8654FC5FF0384F8D8ABBC4 /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; + AC106ED2C7FAE2D1023567A9601D1526 /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; + AC1FFEB247932E438CB9D9C83EE0A792 /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; + AC554B525FBFFA961C04F993894573F2 /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; + AC55EB6ABAEA3C6D0EF57B6D9C506136 /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; AC7124E4822DB66558352E10DD54CBFA /* GTMSessionFetcher.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GTMSessionFetcher.xcconfig; sourceTree = ""; }; + AC75CB636C2B27CD9B8D3B662BD93E7E /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; + AC827AF3D16525F2FD54B7A0CA949657 /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; AC827C8C29D1F41334B1DB02F51E1472 /* GULOriginalIMPConvenienceMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULOriginalIMPConvenienceMacros.h; path = GoogleUtilities/MethodSwizzler/Private/GULOriginalIMPConvenienceMacros.h; sourceTree = ""; }; - ACAFC054577B24C97E5F26ED725AA663 /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; - ACD42BBC1E4C99ACA0A6DF3296664EB6 /* RCTNetInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNetInfo.m; path = Libraries/Network/RCTNetInfo.m; sourceTree = ""; }; - ACF00ACADA020E403094D2CBCDE00228 /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; - AD267EA37D17FD5854A6AFD0AEAFCC91 /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; - AD6D86BDD8B845212226A30C2A268CFF /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; - AD804BCA6E3359356AE3E6DCD0AE9032 /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; + ACEE89E34E5E0B20156FABD5325BD98B /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; + AD2850F4998343F6CD7C70ACDA7C2F05 /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageShadowView.m; path = Libraries/Image/RCTImageShadowView.m; sourceTree = ""; }; ADD49CF465CC1C1013069EDC541177B8 /* double-conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "double-conversion.h"; path = "double-conversion/double-conversion.h"; sourceTree = ""; }; - AE1ECD597092E48136284E8430626396 /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; - AE3AFCAB779E65DE1C0D1D0A6EE4B906 /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; + ADF8A31B3DCA65D7DA705DA41930FA51 /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; + AE09BA641F8ED1137702F7F40B0C0599 /* UMReactNativeAdapter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.xcconfig; sourceTree = ""; }; + AE1A1B7E658E6963F761FF9A08DCA6B1 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; AE4BEC52BB9C31042CC4495A10E43DB1 /* FIRInstanceIDTokenOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenOperation.m; path = Firebase/InstanceID/FIRInstanceIDTokenOperation.m; sourceTree = ""; }; - AE7AF9AB3C037236CF0FF55AE4FA14CE /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; - AED47D832918D2F773C361B9E879A300 /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = ""; }; - AED8F0168633DA3B9CC7B66118728ACF /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; - AEE0D54ECCD2FDB1FAF07FA0C8100E95 /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = ios/RNCWKProcessPoolManager.m; sourceTree = ""; }; - AEE99FF50F74B0F5A9508B6172E99ECD /* EXWebBrowser.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.xcconfig; sourceTree = ""; }; - AF23E07DC4E3BC0DEFD5323807DA39CD /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; - AFB51E7098C45ABAD93552421D9BB160 /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; - AFBBE34EBBF23CCB1A0D872B94F252AC /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; - AFBD0A5841C438CC3AFD48533E08B122 /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; - AFD445827223021D33395DF5502FBBC0 /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = ""; }; - B0584F3F8860C573B6EC43DA81FA054F /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; - B05DFE569B9B8E4C139E8CBE1CDEEC34 /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; - B075E4C5E42B32CD41528CBA9B735D64 /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; - B07CFD1135AE16EE506BE5B3A5CB78E2 /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; - B0B70B2E92FC5DB99C53D5164B053238 /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; + AE74B13A862110F930B2402431A65AB6 /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; + AF117CB4D8CCFDF797B6B744D0CFF88C /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; + AF1A496EDBFEDF9532628CE2B7BBB84E /* EXPermissions.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.xcconfig; sourceTree = ""; }; + AF7C91C90119BE95E102133FBF3DE500 /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; + AF8CB58E771F5801CA35DC960D5FF60D /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; + B007576835E0532B5F78901313E14EC2 /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; + B048580B0A956799C5225096141C846C /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; + B091184E388E86EAD2148831C7429CE0 /* RCTImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageViewManager.m; path = Libraries/Image/RCTImageViewManager.m; sourceTree = ""; }; + B0D80A09526F93F0253E69A63F1B130A /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.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 = ""; }; - B1280F0D7E4AA0594A7549CDFF37204D /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; - B16C433E705B12C6B5D282E83BADB611 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - B1774BC1407778CE98E715DA02D4CAFB /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.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 = ""; }; + B1DA2D11537DEEE2E880AE95F8F1A720 /* EXCameraRollRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCameraRollRequester.h; path = EXPermissions/EXCameraRollRequester.h; sourceTree = ""; }; + B1F4DDC46B3E683AA780B6F21FC48DC6 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; B20021D31A6BFA31F1E5630A69EA4CA4 /* GoogleToolboxForMac-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleToolboxForMac-prefix.pch"; sourceTree = ""; }; - B207DCAE7A6B12BF28047544D880513A /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; - B284D8DD3F6B17041EA71714DF62DB75 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; + B225B90AFE924E4FF729C315DA408B6B /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; + B2351EDC3A3B0412CF3CEAC6899F657D /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; + B2B4D354F0A7C4BCC171DC00AD46FB98 /* RNSplashScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSplashScreen.m; path = ios/RNSplashScreen.m; sourceTree = ""; }; B2CCC1A2B854A5AE761220034F5EFBF7 /* FirebaseAnalytics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.xcconfig; sourceTree = ""; }; - B32A53A8669E7099965B84A270F716C0 /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; + B2D592CEA6DCD2CF17B0B5A5A596A2A0 /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; + B3048495178F469E7CABD01B41AF85B5 /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = ""; }; + B332C9CE5A23571E76BAA20C09CF302E /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = ""; }; + B3341AE2F0896FCF5F050849B5450897 /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; + B34E0497F54F5B54ADB6565219784B27 /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; + B3EEAC8253B1EFDCC135AB22DCFCF52F /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; B3FAFB7BCCD5C53538A4E9ED0729FF9D /* GTMSessionUploadFetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionUploadFetcher.m; path = Source/GTMSessionUploadFetcher.m; sourceTree = ""; }; - B4341C0AB2D588EA85CD3E65ABC84594 /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; 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 = ""; }; - B4B4B3F0C4EE2ED166BBCCF7E8C9C8BF /* RNDeviceInfo.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.xcconfig; sourceTree = ""; }; - B4E997FB728F07D1D494C902528A06EE /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAccessibilityManager.h; sourceTree = ""; }; + B4A49C8ADF17B46A5390DF8F9B96F654 /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = Libraries/WebSocket/RCTWebSocketModule.h; sourceTree = ""; }; + B4DEB03CBF8131A2B3442A06CE615536 /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = Libraries/Image/RCTImageEditingManager.h; sourceTree = ""; }; B4EDA879A5FBC25007AEDD3699E0135E /* RSKImageCropViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKImageCropViewController.m; path = RSKImageCropper/RSKImageCropViewController.m; sourceTree = ""; }; - B5156A63BEA308EC900E12768C326247 /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; B54AEDB05E5080BC1BBE0209C846D048 /* FIRInstanceIDAuthKeyChain.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDAuthKeyChain.m; path = Firebase/InstanceID/FIRInstanceIDAuthKeyChain.m; sourceTree = ""; }; - B5635DA27FBFAD8B389C7AEF21807718 /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; - B573E91884D5507BED7C23AC1CC19887 /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; - B579D48C0EE945BEEA54C2CE07C4A56E /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; - B585FC3B46C2A9C5A7EB9D064D04C6D3 /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; - B59737FDB54009CDEA02363F4880637E /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; - B5E621ECF8B059E01518FBD2B39957BA /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; + B5BE265E3B784CD1EE0E130ACA7A6B34 /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = ""; }; + B659E2F1677E743FBB48DFD34C80D3A2 /* EXRemindersRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXRemindersRequester.m; path = EXPermissions/EXRemindersRequester.m; sourceTree = ""; }; + B65C09678D98AA4910D7E864BE561E86 /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.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 = ""; }; - B6DD110BE57330216A43C29951017B30 /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; - B6F2BF586C76EBBF5B6A0547B3A7E40C /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; - B6F2C5FC457AAE983E9FC8147E179164 /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; 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 = ""; }; - B74355797360A160126F0A5F9F1D1982 /* EXSystemBrightnessRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXSystemBrightnessRequester.h; path = EXPermissions/EXSystemBrightnessRequester.h; sourceTree = ""; }; - B774100954DF43150AF96B3C99DB39EE /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nManager.h; sourceTree = ""; }; - B803DDC2DF76E8BD3060E90CA469D47A /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - B8394993737E196E0F960F3A93D82974 /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; + B74D29A2F898D94C5350EBC0366E0678 /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; + B7602D67E87F986091A79A4B3FD61A54 /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; + B8129131786B32C6E003AD92EDAD5A56 /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; + B82BE299CE92A0CA59F698F43CCAC2CD /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; B843F05D718A4E6A823BF7A3D02FB40D /* Unicode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Unicode.cpp; path = folly/Unicode.cpp; sourceTree = ""; }; - B869CDD3AC893C911F4D11369122E112 /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; - B87C934FB54B77F7292F8B14BDC59B88 /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; B8CE294D987D45655A14860086BE1365 /* GoogleAppMeasurement.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.xcconfig; sourceTree = ""; }; - B8E18D2439A078F11207A00B0F4DB1E0 /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; - B8E23C3835DD8EA84C4D46E64F100D55 /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; - B8E994B916AF07EF75492360279D04F2 /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; - B94F4A7DAACD1880519239245DF3F5EC /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; + B8DEEC8ED6085B5E1A67FC82B28BCEB7 /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; B951C090165B8D26D9E040D670A5F2D9 /* GULSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSwizzler.m; path = GoogleUtilities/MethodSwizzler/GULSwizzler.m; sourceTree = ""; }; + B9572C2979AFDBD9CD06F45C8D1C58EA /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; B96E6BF56CDF4F193C79676B3893C26C /* RSKImageCropper-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RSKImageCropper-prefix.pch"; sourceTree = ""; }; - B9929DD9D6E705A247ED150379839CB5 /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; - BA3154EDFE32E9FF3353E8A9F4EE2EFB /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; + B9A030A013F4C4376D307D1CD7C70DC9 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = Libraries/Image/RCTImageLoader.h; sourceTree = ""; }; + B9DE0B233D160C30C9101E44C119C4AE /* UMConstantsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.xcconfig; sourceTree = ""; }; + BA227A37EF40B946807575EE0BF751DE /* 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; }; BA73B2715BDBED36501431ADECCB9C33 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = Firebase/Core/Private/FIRDependency.h; sourceTree = ""; }; BAB0B55F0D83C13F4A93E9693F1E3CC0 /* FIRInstanceIDTokenOperation+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstanceIDTokenOperation+Private.h"; path = "Firebase/InstanceID/FIRInstanceIDTokenOperation+Private.h"; sourceTree = ""; }; BABA188C1E6539FAC9CE54B5C817AF80 /* GPBCodedOutputStream.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBCodedOutputStream.m; path = objectivec/GPBCodedOutputStream.m; sourceTree = ""; }; + BAFFB41C949F7E051B2F4269B967CF5D /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; BB1BBCD3F64FF8BA9250E80D83F2FCB0 /* Conv.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Conv.cpp; path = folly/Conv.cpp; sourceTree = ""; }; - BB509EBBD50F9EB3C2F7652388C2C529 /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; - BB58F5AFCBD9DDE8130EF61FC0571B4C /* RCTWKWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWKWebViewManager.m; sourceTree = ""; }; + BB40BF9AADABC7251FA0A8FEFFF598B3 /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; + BB481D55BBF0D87F8B6F86A90C8FCA5C /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; + BB59CCF24B175ECD0EA022876FE3625F /* UMPermissionsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.xcconfig; sourceTree = ""; }; BB9118D470BB9F2108A60D3ADF6C1EC3 /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = "double-conversion/strtod.h"; sourceTree = ""; }; BBDDC56455CE2A8EEB6FD459EDBD9EC5 /* GULSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSwizzler.h; path = GoogleUtilities/MethodSwizzler/Private/GULSwizzler.h; sourceTree = ""; }; - BBF95BA962C2085E60B1D539138DB06F /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; - BC0A17C2758909A460787E8DFE22B480 /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; - BC57C8ABF98910ACD20286762DBB3D56 /* RCTWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWebView.h; sourceTree = ""; }; + BC2071A169F5A39A11991F545D249A45 /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; BC93B4AE1BC99FC3489FB009672CEBC9 /* F14Table.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = F14Table.cpp; path = folly/container/detail/F14Table.cpp; sourceTree = ""; }; - BD21E5B19F2A7864627B36E0DCFBCA34 /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAppState.h; sourceTree = ""; }; + BD2901D3D060B3500A5D1F553BBDCCB6 /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = ios/RNCWKProcessPoolManager.m; sourceTree = ""; }; BD302C365DF1C82AA1668E93CD114EE4 /* ScopeGuard.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScopeGuard.cpp; path = folly/ScopeGuard.cpp; sourceTree = ""; }; - BD862400E6F6214DA01AEDD24D5EA209 /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; + BD5BC4FD8D50D413F2ACA4DF12193CB9 /* RCTPerfMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerfMonitor.m; sourceTree = ""; }; + BD68BDC8FCD2B9761202DABB9FBD23A7 /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; + BD859E03F93351DC58DA5836452B62ED /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; + BDB9CFFD52B062733B4926B39F3B7E42 /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; BDE529E1EF6279CDF6CAD08BB2113F69 /* FIRAppAssociationRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppAssociationRegistration.h; path = Firebase/Core/Private/FIRAppAssociationRegistration.h; sourceTree = ""; }; BE50045174443690244903BDE53B9ED7 /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = src/glog/log_severity.h; sourceTree = ""; }; - BFAD0159DB9D36768F97CC7B1E707D4D /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; - BFD1A9691D63084D5A6DCF9E62ADE95A /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; - BFF6EEBABCCA36C8D88E46163E4748DF /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; + BE738C73C4E529A5A1912D55691171DC /* EXDownloadDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXDownloadDelegate.h; path = EXFileSystem/EXDownloadDelegate.h; sourceTree = ""; }; + BF3519EB8E3EF95A4DDE8A740EC40184 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; C028BB3DFE4D8493D4B9D24B9C3BFDDE /* FIRInstanceIDConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDConstants.m; path = Firebase/InstanceID/FIRInstanceIDConstants.m; sourceTree = ""; }; - C0896760BB2ECC92AB3DD8D72897B775 /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPlatform.h; sourceTree = ""; }; - C0D19704B2324B51348F1340528D4C3D /* libEXAppLoaderProvider.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAppLoaderProvider.a; path = libEXAppLoaderProvider.a; sourceTree = BUILT_PRODUCTS_DIR; }; - C15D41AFB0FB273290CC490C1FDD4F16 /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RCTNetworking.mm; path = Libraries/Network/RCTNetworking.mm; sourceTree = ""; }; - C16733B9B8B34F43D641B074AF7B5BF7 /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - C20130DD700D9E05AB9819EA9F50EC0A /* EXCameraPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCameraPermissionRequester.m; path = EXPermissions/EXCameraPermissionRequester.m; sourceTree = ""; }; - C204730DEB359F5F23C873DEFD5D43CE /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; - C22095E3034320FBCD5A206E11F81E1C /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSourceCode.h; sourceTree = ""; }; + C129E87286A5E0A944F80256EEA129C4 /* EXContactsRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXContactsRequester.h; path = EXPermissions/EXContactsRequester.h; sourceTree = ""; }; + C15C7C32BB854500F12EFEDDFE7C6FBE /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; + C15E28E540F2AE45E5348FD7C029714C /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; + C1EEA25522E95981E6E39400530BD6B3 /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; + C1F7D91F79DF3ECBB3A4888BEE5178A7 /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; + C236DFB790202119E3C3AEF84324195D /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; C2549B1AC6EA7BD6F62C4E7941527711 /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = ""; }; + C255B9FEEC57F3F344E3CC5A6FA25BEF /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; C26FDE4600EFD11466856933697391CE /* nanopb-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "nanopb-dummy.m"; sourceTree = ""; }; - C2D3B7DED338E55758B9F436B947D81E /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; - C2EFB75926104A64215B07916566A16A /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+Text.m"; path = "Libraries/Text/RCTConvert+Text.m"; sourceTree = ""; }; - C33F8C57DFC0CDC511682361E31AB49C /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; + C272B93792665BDB0D95E18345086C2A /* libPods-RocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-RocketChatRN.a"; path = "libPods-RocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + C27E59773DF5E1725E499E40BDE75A4F /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; + C28639AE4CE2CFA7280CFA1E0448D8FA /* RNCUIWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCUIWebViewManager.m; path = ios/RNCUIWebViewManager.m; sourceTree = ""; }; + C307FF10614728B699A8BD5C070A1FE4 /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; C352EE6E151EDC8523F4F13C165280E6 /* QBAssetsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetsViewController.h; path = QBImagePicker/QBAssetsViewController.h; sourceTree = ""; }; - C3653658C8711A2BA27720BA6363FC7F /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; - C365C14CAF5E815F47AF935416EF5B3B /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; - C394ABE10CBA02A7EF470C2919892313 /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; - C3D2C654FAAAB3D1633EAC2387D9A22E /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; + C373CDF42DA75FFD29673936B59DC087 /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; + C389C50B3D234D54D438F4AF9EDB05CE /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; + C38E697F0380E204A87634304D1BA36A /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; C3D903C6F31578BB1496E10CC7660C28 /* FIRInstanceIDCheckinPreferences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinPreferences.h; path = Firebase/InstanceID/FIRInstanceIDCheckinPreferences.h; sourceTree = ""; }; - C40F272CE5CFDFF3EA6FD52776F0F34C /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; - C4909DE655FD8E1AD3326177D67C6C3E /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; - C592C9FF540D597E18234D671B57DB5E /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; - C5D09C724074FFB6B3993510F3FDF0CC /* RNSplashScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSplashScreen.m; path = ios/RNSplashScreen.m; sourceTree = ""; }; - C6B9126D8B7BA7B6440229B650AE58C2 /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; + C4687B032CCF15ED38E21B377A036697 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; + C4AD3046FFCF446EAA195A061EE5B3B0 /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; + C4CFE1C3D0DC4952E4E49F26994766F4 /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; + C4D476D253F7378BD8816D014D638004 /* RCTI18nManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nManager.m; sourceTree = ""; }; + C4E37BAC685E0AD5D269012260E24304 /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; + C4F1B512112E8ACE3DB1722761DF685A /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; + C59B72E68A0F7164F5C4F2FA03CED07A /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; + C5AA806681541DEB3C7BF0A39CB9F076 /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; + C5EB3623AD99D31A6BF60C9D60586390 /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + C61AB108A528C280D797DE03C7DF9920 /* EXCameraPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCameraPermissionRequester.h; path = EXPermissions/EXCameraPermissionRequester.h; sourceTree = ""; }; + C6A5F49A3232A9852B29023E165C1EED /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; + C7462F19497B41662B55C65E4FE28691 /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; C74F06CA3396E64F308DC487B0BD1373 /* UIApplication+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIApplication+RSKImageCropper.h"; path = "RSKImageCropper/UIApplication+RSKImageCropper.h"; sourceTree = ""; }; - C7801F5F9AB9999A9B95D2C8840FD8A6 /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; + C78EE0DB406FEF97CC30636A621299C7 /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; + C825FBB26BF52BDEC26C94B66C3A232F /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = ""; }; C835B8E4E53C0605BC7F8BA70CCB892F /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = Firebase/Core/Private/FIRComponentType.h; sourceTree = ""; }; - C83626728F7E9ECDFC89A428881F8A65 /* libRNScreens.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNScreens.a; path = libRNScreens.a; sourceTree = BUILT_PRODUCTS_DIR; }; - C85601D37D98DB8351B689768BCE4858 /* RCTKeyboardObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyboardObserver.m; sourceTree = ""; }; - C88386675428D169FA0E1D4B4DA5968C /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = ""; }; - C99363CDFE331A7A203AA7057DA0B950 /* 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; }; + C84865215A1349621CE1711245EE16EB /* libRNScreens.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNScreens.a; path = libRNScreens.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C8869378C5667F5922A8A45A942F4C0F /* libProtobuf.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libProtobuf.a; path = libProtobuf.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C8C4887E5D02345D6102DB7F1BCD938D /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; + C8F928AFD61464ABD4308027ADE67B30 /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; + C8FD6D2C85C06A396C8F16C8A889AA1D /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; + C91AF315C8F6271873F5668C6895D917 /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; + C98845C3EC72C6A4EA95B8CC75D68D7D /* React-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-dummy.m"; sourceTree = ""; }; + C9C658DAE2CAF45CA2CD3AF1CC1003E4 /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevSettings.h; sourceTree = ""; }; + C9D6226D1F21D313486C3EEE4B57D523 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; C9E29F269A06919AA1FD1E466BCF137C /* GoogleIDFASupport.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleIDFASupport.xcconfig; sourceTree = ""; }; - CA3C7DB2640EEC9A59219E4433780462 /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; + C9E8F4D02ECAE0FB2CCEEBF0584A0134 /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; + CA3DF8D9F1B29BC1C577D2BCDB0B93BB /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; + CA51B3E7AC9492D6D8433A8F45D032C4 /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; + CA766740E63182809C6209F49421A55E /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; + CA9BDAAC96B943CDCF3084611C6E68BF /* EXAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppLoaderProvider.m; path = EXAppLoaderProvider/EXAppLoaderProvider.m; sourceTree = ""; }; CB151BF6B6F22A525E316E9CC21FBF6C /* Pods-RocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.release.xcconfig"; sourceTree = ""; }; CB8724C8D4D696AD4C067B9326224A01 /* FIRInstanceIDUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDUtilities.h; path = Firebase/InstanceID/FIRInstanceIDUtilities.h; sourceTree = ""; }; - CB9074A3A03E2E7D8D1A3CBE5830643B /* react-native-splash-screen.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-splash-screen.xcconfig"; sourceTree = ""; }; + CBDEBAF5ACCC3A233ED5FB1B8C8E38CB /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; CC02B9C0F1CEDC2E11D97AAFA570B60F /* FIRInstanceIDTokenStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenStore.m; path = Firebase/InstanceID/FIRInstanceIDTokenStore.m; sourceTree = ""; }; + CC89E54AC9D6E3B2B8478FEA7E793BC8 /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; CC9DFE33B02231AD63A6E8D6916F6E68 /* FIRInstanceIDVersionUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDVersionUtilities.h; path = Firebase/InstanceID/FIRInstanceIDVersionUtilities.h; sourceTree = ""; }; - CCCC1128C2573E58DAFAF6BB4045AF84 /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; - CDB9CFB2E17926A7AE8C8BFD1745DC68 /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; - CDC371566812F0C84F9E604EFC5B9525 /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; + CD02C0562B0FFBAFDA6BFA52D6A153E0 /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; + CD57A67CED166E03989918060C14E4B9 /* RCTWKWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWKWebView.m; sourceTree = ""; }; + CDB50573EAA4566F3BCAA8852670294F /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.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 = ""; }; + CE7CDF47ECA304D288B260979AFB5BF1 /* libyoga.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libyoga.a; path = libyoga.a; sourceTree = BUILT_PRODUCTS_DIR; }; CE8C6D11CF7E5AF31E2AE0306111F7F1 /* FIRInstanceIDConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDConstants.h; path = Firebase/InstanceID/FIRInstanceIDConstants.h; sourceTree = ""; }; - CE9DC205752428EF97A38F142A7472DF /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageCache.m; path = Libraries/Image/RCTImageCache.m; sourceTree = ""; }; CEC87000B140231CF19A20D1E01F05BE /* Fabric.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Fabric.framework; path = iOS/Fabric.framework; sourceTree = ""; }; + CEEA19126793B4E7886EB0B70032630A /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; 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 = ""; }; - CF6A66F2F3D6415B244506141EE259AB /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; - D0405BF1045B0253D9A9E693987428E3 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - D0567417292A638AD0DB6E089A1E8D50 /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; - D067488F4F8D117AD88360A475B79C79 /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; + CF6E776002B29E81DF187AABECD07332 /* RCTKeyboardObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyboardObserver.m; sourceTree = ""; }; + CF72924BC22E3CAD5A963AC686441AFC /* RCTTiming.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTiming.m; sourceTree = ""; }; + CFE4275D3166F47998683E795C8A1F64 /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; + D040283635ADDA64DFF2B8A5A6289DD2 /* RCTWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWebViewManager.h; sourceTree = ""; }; D08A5D686D77F6A0E33952D2AD2EA06C /* GPBCodedInputStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBCodedInputStream.h; path = objectivec/GPBCodedInputStream.h; sourceTree = ""; }; - D091FC0DC178A789854D3E0FB04C0E1D /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; + D097D5F1D4776DF557A4F80AC6DE856D /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; + D12C4AA1B0A474BB4D9FF8E8275D5022 /* 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 = ""; }; - D16FFEAB8CE3B00C1D8E2CF0761C6E3A /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAsyncLocalStorage.h; sourceTree = ""; }; - D1760CEE7C77B8C39F3F304E5FCEE9A8 /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; - D18AB02E7921511273F4D30052D6EC4F /* EXAppLoaderProvider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppLoaderProvider.xcconfig; sourceTree = ""; }; - D19ABB6CAE9A8F8290C81743D8053264 /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; D19E2F79B0006C6B374700D05DB3D121 /* FirebaseInstanceID-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseInstanceID-dummy.m"; sourceTree = ""; }; - D1A71E848C4A31ED1E583EA8BD948081 /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; + D1CCBFB181FA8845A496ACFCE7C678A2 /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; D1D409B472D80F2EB4C71563990FC72D /* pb_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_common.h; sourceTree = ""; }; - D2114DF6DDCDFD257DEBAA509D5BCDD8 /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - D29061174C9046059772D65F707216D7 /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; - D2B70D075F2ED56C557779B6D990E0BF /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; - D2F65C16880118D5817D531C5F59249D /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; + D22E7FFDB562DDDA96335783EAF430D5 /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; + D25EB71968893137BF6CCC3EDF4ABE27 /* 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; }; + D2EE1945008DC2BAB401F9591A11B6ED /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; + D2F7C181F5F25E370577258969E41967 /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D3020DC825F5AFD969C5449E1D846D04 /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; + D305E109C5526F02464DADCE54BA66BC /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; D31213551926432FA2202EC56108DB24 /* bignum-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "bignum-dtoa.cc"; path = "double-conversion/bignum-dtoa.cc"; sourceTree = ""; }; D318286797895EE8DE84CE55BFFE541F /* GPBUnknownFieldSet.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBUnknownFieldSet.m; path = objectivec/GPBUnknownFieldSet.m; sourceTree = ""; }; - D31FB16267CEDFE0A248C8808965ACFF /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = ""; }; - D32A10C7B12C103D25936C5D0DD6A572 /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = ""; }; + D3519DE89E7F19767A213677FEDFE521 /* UMFaceDetectorInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.xcconfig; sourceTree = ""; }; D3697C3A80F55A1372F7514127AAE01A /* glog.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = glog.xcconfig; 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 = ""; }; + D3A653F567444EEAAFA22097C11FA70A /* libglog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libglog.a; path = libglog.a; sourceTree = BUILT_PRODUCTS_DIR; }; + D3A6AB6F1AF7998605B535EA3CBF7081 /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; D3BF9F21DC67AEF716304B2F5468563F /* CGGeometry+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CGGeometry+RSKImageCropper.h"; path = "RSKImageCropper/CGGeometry+RSKImageCropper.h"; sourceTree = ""; }; - D3C24E47DB104D8C532AFFD13CD4E23A /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.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 = ""; }; - D43DE3C3FD78359AD0DE8E020B258B0D /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = ""; }; - D45E7F2B5ABB3DE06FCF02EF727EF2BF /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; + D453138DC6145883EB192C788A21199E /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = ""; }; D4640D3CB0EE847C77BD022CCBE88A4D /* dynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = dynamic.cpp; path = folly/dynamic.cpp; sourceTree = ""; }; + D4996F9DE37AD30C6EBDCB36B3BB94BE /* 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; }; + D49DFE2AE2D6A6BBA4D60B2925770962 /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; D4D269F2C9249EB3191A02DBF3D4391C /* FIRInstanceIDKeyPairUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDKeyPairUtilities.h; path = Firebase/InstanceID/FIRInstanceIDKeyPairUtilities.h; sourceTree = ""; }; + D4F94CE5E46252F7CDBD8542EB23959A /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; D5405FEBAC392B770AD99B5AC7687E55 /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = src/raw_logging.cc; sourceTree = ""; }; - D5A3048DFA088832C36F0A7AD65DAE14 /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; - D5BD76AD8517BCFE91D5CFEB005DB34A /* RCTDataRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTDataRequestHandler.m; path = Libraries/Network/RCTDataRequestHandler.m; sourceTree = ""; }; + D595738BAEF34FC2D4B34A21C7C9A6D9 /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; 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 = ""; }; + D61715FC4B2FF2BCBBD26D52CF774B06 /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = ""; }; D64988EA80D874BD49F788383ACA30DC /* FIRInstanceIDCheckinStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinStore.h; path = Firebase/InstanceID/FIRInstanceIDCheckinStore.h; sourceTree = ""; }; - D694DA697DAD3D16C0DD828FC6BB91BA /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; + D68A920C27C8AB0F039567E129DD4EDC /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; + D691F235CF9653108D5AEAD3BEE072D2 /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; D6CE75889A37BBAFA6619B2E2D0A9152 /* GoogleUtilities.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.xcconfig; sourceTree = ""; }; D7001F9CBB5C587EE6303E5F0CB948FE /* QBAssetsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetsViewController.m; path = QBImagePicker/QBAssetsViewController.m; sourceTree = ""; }; - D7538757A173613724A4E5F1512E3DFA /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; - D776778A7831DB201A730932DE45C8B8 /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; - D7963DE47189F5A5D556E6FEFFDC83F9 /* libEXHaptics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXHaptics.a; path = libEXHaptics.a; sourceTree = BUILT_PRODUCTS_DIR; }; + D706DA86F1882F67F7BE54941094F60B /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; + D7798BDD99C1305FF7E5087418670EA2 /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; + D7A78A00E15E2494C3FDD8640B3B01FE /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; D7D23CD108787BFAAD18B7070B91E9C1 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = Firebase/Core/Private/FIRAppInternal.h; sourceTree = ""; }; - D7D3691C1B950432B4BDCFA3C891B2F6 /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; - D80D1DE5043BD3C1EFD378F2117D270D /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; - D81C363C5E5880D5A30BCDEFD019D38E /* RCTPerfMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerfMonitor.m; sourceTree = ""; }; - D8F1012B3A685E9BC60350AC6BCB49E5 /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; - D9103AA8819E14646CEDF6BFE7EEAC24 /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; + D854858552A9AE92F3790D7E5F6E47EB /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; + D8B34466404B540871E8CC5A4A8C0EAF /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; D9154A2A59EE836C6B4C8ABE26903A93 /* FirebaseInstanceID.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstanceID.xcconfig; sourceTree = ""; }; - D91E5E530660665B3E8B4A91BA0A3159 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; - D95E0EB31D3D6B86DAA446731C7DBC60 /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; - D9781077621162BF633E61A40302CDF0 /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; - D98564C13D57CA320FEF0A366183A22A /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; - D9E24C1EBBFFE4332ECFCC2E328784AF /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + D94B3C50F3E24C40C2E7756E3E518621 /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; + D9A8E1A4648C6D106280B33FB6624280 /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; + D9CDB7FF6CC72986A7254EFF8F2BDA82 /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = ""; }; DA25CB04EA64550643955E87AD36DBB1 /* FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptions.h; path = Firebase/Core/Public/FIROptions.h; sourceTree = ""; }; - DA7FC77512F2A26FABE40AC7EB1F5AE2 /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; - DA89F71F6BDC14BCD438C7083AA61BE8 /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = Libraries/ActionSheetIOS/RCTActionSheetManager.h; sourceTree = ""; }; - DAA3F6008B8D49969A76F999776E8742 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; - DAD8F3EB0214887CD104E448BC311359 /* EXHaptics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.xcconfig; sourceTree = ""; }; + DA361B9CE86EE861D9F56B9A4292B2EB /* RCTAppState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAppState.m; sourceTree = ""; }; + DACD21A90EDC93D6A83471E94B5E404D /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; DB26A8DCF5A6E3B4A1BC4152C6D9DC6C /* Pods-RocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-RocketChatRN-dummy.m"; sourceTree = ""; }; - DB829DED104EB7C4EC77420AF2CCB6A6 /* RCTWebSocketModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketModule.m; path = Libraries/WebSocket/RCTWebSocketModule.m; sourceTree = ""; }; - DB8561E445E930C2995A38DDBB3C5971 /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; - DB8640EAE58E53A6A3E0560871246FD1 /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; - DB992E4069A3538CD40DB21A98239288 /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; - DBF6AFBBE215DF5D53B8D06C5BB94E8A /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; - DC9BD0AA11B2883A19616A198AEA2012 /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = ""; }; + DB2A8AD245AFE08396D8D8F9FD706224 /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; + DB44519971E29877A6D3272AE511CC8E /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; + DC40FE3B90AE4411ECC6B268BF575E02 /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + DC4CCEDF80012E99F5FF8BBA53F19406 /* libQBImagePickerController.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libQBImagePickerController.a; path = libQBImagePickerController.a; sourceTree = BUILT_PRODUCTS_DIR; }; + DC784F34AA466191C56481584BADAE41 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; DCC7600BC172CA9427C27FD82BF17552 /* GULReachabilityMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityMessageCode.h; path = GoogleUtilities/Reachability/Private/GULReachabilityMessageCode.h; sourceTree = ""; }; - DDC09227133CA2814AEC3E34EF9396F9 /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; - DDFA1A4C969BC8368CCE296AEBED3BB1 /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; - DE4CD6D56121B8253900DFB4D0480989 /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; - DF554FB95B009429E79E59424B3DA457 /* EXLocationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocationRequester.m; path = EXPermissions/EXLocationRequester.m; sourceTree = ""; }; - DF7E534DA70F7D25A1C5F3F342DA8298 /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; - DFA81843A3BEA6B23C67E5DB7105587C /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; - DFAA547ED8AC03190FE6E7D9C0682EE4 /* RCTSettingsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSettingsManager.m; path = Libraries/Settings/RCTSettingsManager.m; sourceTree = ""; }; + DDA9A501E1D2AD694BAF879CAC6322DE /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = instrumentation.h; path = yoga/instrumentation.h; sourceTree = ""; }; + DDE7158D964327E4B8B45E18ED90D49F /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = ""; }; + DE6CFDABE348E6F20ACB6F0BC494B55F /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; + DEE1BC36C294C18EFC1DE73F43BF249E /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; + DF6A750165E116897D29272BE5A0207C /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+Text.m"; path = "Libraries/Text/RCTConvert+Text.m"; sourceTree = ""; }; DFB3B3A22A1D883E021456672D098678 /* fast-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fast-dtoa.h"; path = "double-conversion/fast-dtoa.h"; sourceTree = ""; }; - E00C3D0370833DA8695C725D67ED9D01 /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - E0171286B77C2C7D14BF54B56E2C8AD7 /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = ""; }; + DFD5C51728A96F61FAFD0FB6F6C2150F /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; + DFD95BDC417CF61E44CB4176D8361F40 /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; + E03350B4705FAFC774241C0C6485A6CA /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = ""; }; + E03522C216B1DF90B47156BF3117BA36 /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; E0C49F12A12309D11B852442959A76BB /* Folly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Folly-dummy.m"; sourceTree = ""; }; - E0EB6E27351FFD817514B3A36310EE3A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - E13D63D9DCAAC78D1A3DEE7438D8C2C8 /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; - E17011A1A43BAB97566A2C9ACF473948 /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; - E1B74A70CCC7CAA762BFA3204313080C /* UMTaskManagerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.xcconfig; sourceTree = ""; }; - E224C81A02489D545A4D0C0BCA7D1A68 /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; - E2BCC7850DC89B9B85C8AC790046B7AD /* RNCWKWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKWebView.m; path = ios/RNCWKWebView.m; sourceTree = ""; }; + E0CE4228F6C3CBF63E09C33C8FE8C4F9 /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; + E0D470315CFE4024716A1076E354B65F /* libnanopb.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libnanopb.a; path = libnanopb.a; sourceTree = BUILT_PRODUCTS_DIR; }; + E12DAB5484613854783AE35A74D21F09 /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; + E1324B256741EF07BA2B683C794DFB31 /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; + E14D1E6E42CBB3698E28115000B15E9A /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; + E196A3A1D270724A17C419421A1242E2 /* RCTLocalAssetImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTLocalAssetImageLoader.m; path = Libraries/Image/RCTLocalAssetImageLoader.m; sourceTree = ""; }; + E1BF883F5BBF98B48CBE0000C2901430 /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageUtils.m; path = Libraries/Image/RCTImageUtils.m; sourceTree = ""; }; + E1CB39C15B0AC9E7566816E528BC5577 /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; + E20B274E4A1E7C371770EAC1CEA0A256 /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; + E20C356E71041C9473DEEFE910AC373C /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; + E2788C1DD148B1080A737FAEE353F4DF /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; + E28FFD8724E81612B4508CFD87EFCAE0 /* UMBarCodeScannerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.xcconfig; sourceTree = ""; }; + E2BDF83F3376E6B27A25EFFF603A2FAB /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; + E2EF6A14FFEE541517297ABA63D310EC /* libEXPermissions.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXPermissions.a; path = libEXPermissions.a; sourceTree = BUILT_PRODUCTS_DIR; }; + E2F3EF181DD3E222928ECF419D3DF926 /* RCTSourceCode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSourceCode.m; sourceTree = ""; }; + E300540F6845ABF97AD2DE0C032B9F00 /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.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 = ""; }; - E423A1042B4C33D937036DEB76B7BBC5 /* libEXFileSystem.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXFileSystem.a; path = libEXFileSystem.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E44DDC1FAD82F6542941D1379BCE91DF /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - E453B899BDCDF49B67B6E627BAB9AC90 /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; + E37530AAABCD6AFC961C803C0254A30D /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; + E3B7951A008B5AEEDE66358AB8DA3049 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + E3C5E3A3C26EE280B9AD8231A476AAB5 /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; + E3EF50ACA6401D0A2A5014DD80E2E125 /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; + E4A31D19C52C328D0BCBEE400C3769C5 /* RCTFileRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTFileRequestHandler.m; path = Libraries/Network/RCTFileRequestHandler.m; sourceTree = ""; }; E4C48284CABF83F748FB75471EE6008D /* FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROptions.m; path = Firebase/Core/FIROptions.m; sourceTree = ""; }; E587B3F2F5ACE664165F9212BAC58A0B /* FIRInstanceIDCheckinService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCheckinService.m; path = Firebase/InstanceID/FIRInstanceIDCheckinService.m; sourceTree = ""; }; - E5AF5A4E4227842092EA1B23C6F65777 /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; - E64DE1DD89A7942683A36A1A8A372F72 /* UMSensorsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.xcconfig; sourceTree = ""; }; - E688205EE80F41B054CF8EAE8AA1FB05 /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; - E6951BE82C0C116F666512F3A042E998 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; - E6A15A782E3E4E3614699709BE382957 /* 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; }; - E6AAFDEBB2B88135928F52472DA89EE1 /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; - E6DD22A7C6B3799209750A958CD46643 /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; - E6FB2B7E3A8EE48BC283A81C17098C0E /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; - E741484880868D78CA81E4ADB66A5F25 /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; - E7581467D001F63179B5809452949F05 /* yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "yoga-prefix.pch"; sourceTree = ""; }; + E5C36E8990363498AF1F706E46F69464 /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E6DC125BD436EFD9274AAE9DF04851F3 /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; + E701C756CFC6AF190D05D5DB39107786 /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; + E7C450EF87F26A187CA1B529847609F6 /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; E7D881ED2B5743223827914D984E15E1 /* GTMSessionFetcherLogging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionFetcherLogging.m; path = Source/GTMSessionFetcherLogging.m; sourceTree = ""; }; + E7E1A2C770AE2663098B8C2984A009DA /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = ""; }; + E7E70D986059308E04198908D2E5C904 /* UMFontInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.xcconfig; sourceTree = ""; }; 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 = ""; }; - E810609616C0C97E478830C4A8D3F80A /* UMFontInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.xcconfig; sourceTree = ""; }; - E8660AE5163CFDD5D66BB2010CB804D7 /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; + E851A6DD869D2C563A504CDF160DC712 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; + E87AFF6DBB322AB1FB509924E17D96CD /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; + E8A48C532D0023B32954C3B641ACE8AA /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E8A867EAD11B13B4DCC454577E2E2F6D /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; + E8DD19990C1FF4425CE5165D0746DE01 /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; E8DE43DFD7CC3A804076BF1825A63034 /* QBCheckmarkView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBCheckmarkView.m; path = QBImagePicker/QBCheckmarkView.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 = ""; }; - E9844D2C5F4C50E80834AF5030647790 /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; + E91DD8F290E7B5B5DE509B64C4E6028C /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; + E97388D2ABD87632E8CAD8737ED5C313 /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; E99B0D64B717D3685A2D48961E286C54 /* GULAppDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULAppDelegateSwizzler.h; sourceTree = ""; }; - E9BA005EF2AF79AB01B13FAD08D67BD3 /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; - E9BAA308AFCBE63A1E0A238E6B54200D /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTExceptionsManager.h; sourceTree = ""; }; - E9D02081C8183D588ABAD1445E7243B6 /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; + E9D1F22F7FE6DF1B9159506E4F4C3A19 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; + E9E3C593A2AA318C8D8A095ACD66CA55 /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; EA452AF7C2948DFAEDF5BF8E102BDAA3 /* FIRInstanceIDTokenOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenOperation.h; path = Firebase/InstanceID/FIRInstanceIDTokenOperation.h; sourceTree = ""; }; - EAD8F33F68B075DD880F7C271B8F5963 /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; - EAE2B9CE3ACF488B76C8DF898CB7181A /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; + EAD548BD5653AE2D363A6BA516C44D1A /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; + EAF0D64CCD3507EA3F86ED5AE193C322 /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; + EAF638C11CE385E1EE6B92E4078C1367 /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; + EAFCA8120582B09E114FCFDD9A23AE72 /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; + EB00D6DA9EFD5124B59A411BD9E536DA /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; + EB02A3ED5321F1790F5279780F7469BB /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; EB054FF8A5D97A01475935D8C8EF580E /* QBImagePickerController.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = QBImagePickerController.xcconfig; sourceTree = ""; }; + EB3D12B50AC18CA621298BC35F46668F /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; 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 = ""; }; + EB9FF0DF4C75B9340F9CDC0C66BD64CE /* EXLocationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocationRequester.m; path = EXPermissions/EXLocationRequester.m; sourceTree = ""; }; EBE07153C75AA5C1C38348F1B3A27364 /* DoubleConversion.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DoubleConversion.xcconfig; sourceTree = ""; }; - EBF43FE7122B9CEB6D0FA323C35976D9 /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; - EC7760EDDE1FFE5D4A997F31568FBFC8 /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = ""; }; - EC9F8AC8C58E24BED5CED6DACF4BB663 /* RNCWKWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKWebViewManager.h; path = ios/RNCWKWebViewManager.h; sourceTree = ""; }; + EBF4E8056F9588AED1DDE2D274F2D598 /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = ""; }; + EC099F1FF656258700287FB2F0D597B4 /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = ""; }; ECAA1BE70470727702FE925831A02A0D /* FIRInstanceIDAPNSInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDAPNSInfo.m; path = Firebase/InstanceID/FIRInstanceIDAPNSInfo.m; sourceTree = ""; }; - ECC6FA3D1550465B4E35C0F99267B5C7 /* React-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-dummy.m"; sourceTree = ""; }; + ECC1D6E38AAB7E81AD33EC1E4432A9D1 /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; ECDE53F648C58F537F5674A4108DEB3E /* GPBWireFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBWireFormat.m; path = objectivec/GPBWireFormat.m; sourceTree = ""; }; - ED308A146ED5C815F780A1D6E885A74B /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; + ECEE1BDC40E8C2C4CFF1A1E82FAFE7D2 /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXPermissions/EXAudioRecordingPermissionRequester.h; sourceTree = ""; }; + ECFA5891C8AE60349A63AA8B2BCC55ED /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; ED3F83DE07B36FFE21FC3707F2802DDF /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = String.cpp; path = folly/String.cpp; sourceTree = ""; }; ED6B7E5A61EF834B72AD4268D2B5F4D1 /* FIRConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfiguration.h; path = Firebase/Core/Public/FIRConfiguration.h; sourceTree = ""; }; - EDE4B7C2078BC233706D256EAEE56894 /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageUtils.m; path = Libraries/Image/RCTImageUtils.m; sourceTree = ""; }; + EDA23BB0172F0EEF4150D366397DD15A /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; EE0E0D2257A57CE5396CC60C20291BA9 /* GULNetworkURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkURLSession.h; path = GoogleUtilities/Network/Private/GULNetworkURLSession.h; sourceTree = ""; }; - EE2AA20E2AD02717CF275C0E9189A190 /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; - EF06AA35EF837868548DB980DF9D695A /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; - F06A6B347E77E02FC7100912F113A8F5 /* RCTNativeAnimatedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNativeAnimatedModule.m; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.m; sourceTree = ""; }; + EEF287135C463E0BA9325634ACCD11A3 /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; F070DB8778F84DDDEFFBD0B665025401 /* QBAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetCell.m; path = QBImagePicker/QBAssetCell.m; sourceTree = ""; }; F13C9827FFA6E7331D6E301FE4773240 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = Firebase/Core/Private/FIRComponent.h; sourceTree = ""; }; - F158E3616BBD24FA9EEA84566381F4AD /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - F19FED734B7F70EF9D3B42F74FC53593 /* EXAppLoaderProvider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAppLoaderProvider-dummy.m"; sourceTree = ""; }; + F167613932A26F1D49B73114C21BCD03 /* libRSKImageCropper.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRSKImageCropper.a; path = libRSKImageCropper.a; sourceTree = BUILT_PRODUCTS_DIR; }; + F1A0D40AAC549B2F875EB595B2753F33 /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = ""; }; + F24BDA301DF015046877497F11CA84B0 /* EXAppLoaderProvider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAppLoaderProvider-dummy.m"; sourceTree = ""; }; F253D6BB700AA13956A26AA399F054C7 /* json_pointer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json_pointer.cpp; path = folly/json_pointer.cpp; sourceTree = ""; }; - F25405EA15F70384E1C3A2E47E3B5FF2 /* libGoogleUtilities.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleUtilities.a; path = libGoogleUtilities.a; sourceTree = BUILT_PRODUCTS_DIR; }; - F25A53CD038123D6EB4B93E14ADA6564 /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; + F2B29CF7E7D88E221CC7A112095DFEDA /* EXSystemBrightnessRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXSystemBrightnessRequester.h; path = EXPermissions/EXSystemBrightnessRequester.h; sourceTree = ""; }; + F2BF2369AE1F6E9E22FDB46CBB158061 /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; F2D27DF69275FBA4A8A9B94D0AE1274C /* Fabric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fabric.h; path = iOS/Fabric.framework/Headers/Fabric.h; sourceTree = ""; }; - F2E3AF02DC8CAF9045A3A2A9E8B2BCFD /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; - F2E820DFA6808D8F56CA36A97230B3A5 /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; - F3324C9CA8A965D5CAF518FD9E74F521 /* RCTImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageLoader.m; path = Libraries/Image/RCTImageLoader.m; sourceTree = ""; }; - F35B8067CB38799161B342B07CF317B9 /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; + F32F4FC839E260282273D3F87B65EDA8 /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; + F39F957EE78F6972CFF21AE70EC90989 /* EXHaptics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.xcconfig; sourceTree = ""; }; F3BCBFAD374F9A20E01958A9D04855DC /* UIApplication+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIApplication+RSKImageCropper.m"; path = "RSKImageCropper/UIApplication+RSKImageCropper.m"; sourceTree = ""; }; - F3F28FABDF89CEE4A86F3FBD6A1870AD /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; F3FE69CB45C28524B38B3FC95BAC3A6F /* Folly-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Folly-prefix.pch"; sourceTree = ""; }; F4153F9951FDA4E14A9C00C9F769089B /* Answers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Answers.h; path = iOS/Crashlytics.framework/Headers/Answers.h; sourceTree = ""; }; F43A98E4B0508D3EFD4EF6CA74449A52 /* FABAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FABAttributes.h; path = iOS/Fabric.framework/Headers/FABAttributes.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 = ""; }; - F48B73BEBA9704B906B50B746C4438AE /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; F4A3E35C402DA8FA4C4B62F2269FFC1C /* FIRInstanceIDStringEncoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDStringEncoding.m; path = Firebase/InstanceID/FIRInstanceIDStringEncoding.m; sourceTree = ""; }; - F4B9873A2E43DA6D2B7C573612339FA6 /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; - F4ED229E32FE38ADAC86C777DB39735B /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; - F51BBFBFDD2D272826CA5B0EB4FDCB67 /* react-native-webview.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.xcconfig"; sourceTree = ""; }; + F4E8D982A663BAB845720E82B1005DEE /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; + F500F244A8BE5C011E7A633CBF2C1C48 /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; F5242D0FBCBD7A1D99CEB88585EA682A /* GULNetworkConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkConstants.h; path = GoogleUtilities/Network/Private/GULNetworkConstants.h; sourceTree = ""; }; - F576126DAAF36547B3A6361BD25297DF /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; F5C9D78CFBB7872339127A65C944A51D /* ANSCompatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ANSCompatibility.h; path = iOS/Crashlytics.framework/Headers/ANSCompatibility.h; sourceTree = ""; }; - F5FAB4A58F83701130CB2B30A0A7FB95 /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; - F621535702BC530B305258AF577CAC66 /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - F663A0E10F9F1DE93DB1825DF3DE8ECC /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; - F6658AA388BD5B2046D1F9A8B2E3DB45 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; - F68E46E3304FF945ED659F6D6D64074A /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; - F7D787923A96982D17CA3854AC467D08 /* RCTGIFImageDecoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTGIFImageDecoder.m; path = Libraries/Image/RCTGIFImageDecoder.m; sourceTree = ""; }; - F7E663509EA96636AC0E176E79FAD244 /* EXSystemBrightnessRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXSystemBrightnessRequester.m; path = EXPermissions/EXSystemBrightnessRequester.m; sourceTree = ""; }; - F7EA11BE35B7CA5D5E7E11A26C8F6926 /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; - F7EBFA131625D8C8EC6418154D75028B /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - F8299EFDF80DD56FC2C000D805F3C53D /* React-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-prefix.pch"; sourceTree = ""; }; - F843D6DD7B9D560838C63D0AEA41A382 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; + F619E1141C3096EC2C346208D7CB5CDC /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; + F6399B25491E2E8C60356532BE6C0DD0 /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; + F6A7BBE3D4CD65903B4EFF815ABDE360 /* RNCWKWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKWebView.m; path = ios/RNCWKWebView.m; sourceTree = ""; }; + F6D12960CE2A42C0DF2D04780C4714BB /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; + F77F4DB6F0D0C918121F68B634BD2BE0 /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = Libraries/Image/RCTImageStoreManager.h; sourceTree = ""; }; + F7B0D1E58E01CBB522CB6B75B7B9471E /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; + F7D188FA372D3DB43310D9D9BBBEBB1F /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; + F8412DDE4D4E3A70EECC7B94EB62FE8F /* EXCalendarRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCalendarRequester.m; path = EXPermissions/EXCalendarRequester.m; sourceTree = ""; }; F861D6FCD688186A198304576ADBC85F /* FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRApp.m; path = Firebase/Core/FIRApp.m; sourceTree = ""; }; - F882ECE5EDFEC96BAA87FACD11FDF382 /* RCTClipboard.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTClipboard.m; sourceTree = ""; }; - F8B76EAD3E3566DCBE6DE74D2760AB72 /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; - F8C441CE10BCCF2489B026BB3251A226 /* RCTWebSocketExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketExecutor.m; path = Libraries/WebSocket/RCTWebSocketExecutor.m; sourceTree = ""; }; + F8B24A51A2006D1AB0010A271E2A3C7F /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; F92900861A1536FC2C06F634018F7F6A /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/Demangle.cpp; sourceTree = ""; }; F96F86515F70B8C017E7FC355A2B7CDB /* FirebaseCoreDiagnostics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseCoreDiagnostics.framework; path = Frameworks/FirebaseCoreDiagnostics.framework; sourceTree = ""; }; - F9DD3EEBCC666ACAE9D7750C0901BB89 /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = ""; }; - FB106E521D332CFEF0E2E66B5A34627F /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; - FB39F79B2539A2F187167F660B527BA4 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; - FB773479E3C804D047CDC60F25A90345 /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; + F978188633FA8256F739940A31127E46 /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; + F978FF17E2D614459AA9EF796BBD855A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + FA2EBE96991A3F46A9C68E1AE87EC93D /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = ""; }; + FA72B631FBE5E63E88853669EE1DA0F7 /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; + FA88B341B13CFD4D14E57D63DB464A52 /* RCTImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageLoader.m; path = Libraries/Image/RCTImageLoader.m; sourceTree = ""; }; + FB2BF24F70E64150888FF4F8B9502896 /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; + FB30B6D4A5F6696225AA3EA814FEF3D1 /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; + FB82079C7A062DEED144F4963E5DFCE5 /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; FB8F83C766BDABDF47DC628A400C9E8D /* GPBRootObject_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBRootObject_PackagePrivate.h; path = objectivec/GPBRootObject_PackagePrivate.h; sourceTree = ""; }; - FBC67C179159BA8ADB22BCBB9B85044A /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; - FC00B0789B4ECCD69926BC0E15823E73 /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; - FC2406572C55671A14DAEF85B7CDCA85 /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; + FC3B31C3A1A1D27D3EFE3858AF9F5C27 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.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 = ""; }; - FCA3B7DE3489D7501DCEDA245AC76814 /* UMFaceDetectorInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.xcconfig; sourceTree = ""; }; - FCB3B8C6344E501B1F1CBA0AC8159046 /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; + FC9BCE6DFF03C623658A231C602702EC /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; FD1FC6E5021013DE598D3FECD7E43103 /* GPBWellKnownTypes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBWellKnownTypes.m; path = objectivec/GPBWellKnownTypes.m; sourceTree = ""; }; - FD26845EA8192556978A7BFF631D39B6 /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; - FD3F039FB2B2EE427D3AA41C69F3B553 /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; - FD610C1409E3EA26556167B89CD3F904 /* RCTActionSheetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTActionSheetManager.m; path = Libraries/ActionSheetIOS/RCTActionSheetManager.m; sourceTree = ""; }; - FDCE0E8BC5A6079D5F2076963248B0CE /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; + FDCA142EC43F5FD5C4EDD8B11E95115D /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; FE0AD6A2B458F3446F9F710454023AD2 /* GPBRootObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBRootObject.m; path = objectivec/GPBRootObject.m; sourceTree = ""; }; - FE1B5808CCD70FA3C0E6538C56375BB6 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - FE1F854F46DE562643AD887EE0B62141 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; + FE1497394015DF2361E34B1C87933310 /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; 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 = ""; }; - FE5FAD27C99A05130348D63CBE4E2FF8 /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; - FE9822EB92F311180184448BB2931DA0 /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; - FF10121D5CA92E81241B41C540E4B081 /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = ""; }; + FEE60827F533311EB96330C7AB3121DA /* RCTImageEditingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageEditingManager.m; path = Libraries/Image/RCTImageEditingManager.m; sourceTree = ""; }; 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 = ""; }; - FF72352758B631E598C08C4CDE85CBFE /* RCTI18nManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nManager.m; sourceTree = ""; }; - FF92BFDDA99CB483A2ABC83587639702 /* RCTRedBox.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBox.m; sourceTree = ""; }; + FF878C7B4FE6C7FEDD7932FEA114D007 /* 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; }; + FF9E9486BC401271CD7D5354236A5BDA /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; + FFA805BA07966173606F8AD230344B58 /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; FFFA6C4730580F08F48B1B15E8603BB6 /* FIRInstanceIDTokenFetchOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenFetchOperation.h; path = Firebase/InstanceID/FIRInstanceIDTokenFetchOperation.h; sourceTree = ""; }; /* End PBXFileReference section */ @@ -2481,6 +2506,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 03E04BE339D7014A9B11F8DD9200C161 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 07AF97B0D58D7980D45A642B7B1B7C69 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -2488,7 +2520,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 101AE876F804BE17051F36957CB5C2C5 /* Frameworks */ = { + 186BEAC15B6B7E9590DDF3638841135E /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 19A069922086B0759E2E2E155D328E99 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2502,63 +2541,63 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 2F5CC1D603FECE9A1FD07D74FF58307D /* Frameworks */ = { + 27193B470F919680B8D01E09841DBE44 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 36B4E9EF1D621D0C6386E8F433C88ADF /* Frameworks */ = { + 29DDCCCAF9B1EDCC9998ECDADEFF7D8A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 473A8110860C0093E3A3B485287B1D20 /* Frameworks */ = { + 347EC368AF721C842A024D6349C5D459 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 502138ACCEF0F68D1CE899621C269230 /* Frameworks */ = { + 354E0CB112A4697FC0502D4F0C26E768 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 58D3C3D355D2D85A5DC6EA316DB08B23 /* Frameworks */ = { + 3A98B18BFA5EB2FE5C28511CAD147EDA /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 61756F3B6B9110FB5A6EF1095BF8F721 /* Frameworks */ = { + 57F07B03BFA5BB41A98E128FE2899CE6 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 65E85791551E15B53E361251A932B6DA /* Frameworks */ = { + 68E4DC721715B13364B7CFA56B002488 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 70DCC08B264C6FCAAF9029986DC4F583 /* Frameworks */ = { + 7E45C3FC79B9029C8BDA87BBEF9B76A0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 86975FA8969769E1025A58E3FEA10506 /* Frameworks */ = { + 7EFD21791256140F15ED5D4679C49B0D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2572,28 +2611,21 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 931012A1A9F967BF0AED5FB8DE7FA0C1 /* Frameworks */ = { + 9383A40AAFDC1D9533A19B8DD29AFC2E /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 933DA3B844AA36790E1184CF33F53746 /* Frameworks */ = { + 9A22F16A5E9D7F5EA2A5F36905D8D1DD /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 977B34A80819F5A745CF5B52D9236AFD /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 9C1143E77695FB4B58AA5D992DD06087 /* Frameworks */ = { + 9CAAEBC5F620E83BD5CB56084AC45E09 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2607,35 +2639,28 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - A3DFA725824C15A712AB7278E0D46EE1 /* Frameworks */ = { + 9E733131C6634D30DBD66BE2215B8CD3 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - B4EC8904C6EEBC27C5BD9158AF2C6A42 /* Frameworks */ = { + B8165C55B9049D277EC22BB093B9FBD5 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - C09BF11F1881278EB1AC1B19C7436806 /* Frameworks */ = { + B8E263271A672B5588806F2987A6EFCF /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - CEED69BFDF6A885185DB264BF3D59019 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - DE86A4FE36526627CDD510D1DC42CDCF /* Frameworks */ = { + CD7B4756815E824F4716FBA15A80256C /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2649,7 +2674,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - E51B582A38825BA23C31C9E58F5C9BAF /* Frameworks */ = { + E7DC1DDEB848F882683CE0543D06000B /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E9F22D6501C6AEB59FD7D4E41CAF3D58 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2663,14 +2695,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - EC3F1E53CF0CD26EF63ACE35EEDCDC87 /* Frameworks */ = { + F8DDB97379BDD27E3140E840D88D67F5 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - EE421417F9D7C7647C6712769182B19F /* Frameworks */ = { + FD758C1D3774BE266750501C74B521CC /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2680,48 +2712,26 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 00D368387A8C1D15002ECB23A14A5A15 /* Services */ = { + 017950C2EB41964A97683D7531F837E0 /* Surface */ = { isa = PBXGroup; children = ( - 0D1CDE9B63F7E1740A5800E02B9A0CC1 /* UMReactFontManager.h */, - DC9BD0AA11B2883A19616A198AEA2012 /* UMReactFontManager.m */, - 907624C2949E93EA378ECBF48948684B /* UMReactLogHandler.h */, - A5877F204271B75F61979E4D62EED9DE /* UMReactLogHandler.m */, - 5F522B04B6820F32291BE20351F2B3FD /* UMReactNativeAdapter.h */, - 51214EFD3D68E1D6C311916765C6C1B5 /* UMReactNativeAdapter.m */, - 649AC19744404C0C0634E9742E3B2CAC /* UMReactNativeEventEmitter.h */, - B869CDD3AC893C911F4D11369122E112 /* UMReactNativeEventEmitter.m */, + 01B4C36EF02F7055662A8B776D756EFB /* RCTSurface.h */, + 7AF5AD34EB75CEFE8BBDE7ACB26BA307 /* RCTSurface.mm */, + D9A8E1A4648C6D106280B33FB6624280 /* RCTSurfaceDelegate.h */, + 978EB96AFB4C8FC6A4401292B3C1E128 /* RCTSurfaceRootShadowView.h */, + 6889D23F6D5BC4DED02BE641168D5412 /* RCTSurfaceRootShadowView.m */, + D1CCBFB181FA8845A496ACFCE7C678A2 /* RCTSurfaceRootShadowViewDelegate.h */, + 20CA04EFE40F35A7C96199D57ADFB1D6 /* RCTSurfaceRootView.h */, + 4C7B0F971E8646BE8A16D164F57F95A1 /* RCTSurfaceRootView.mm */, + AF8CB58E771F5801CA35DC960D5FF60D /* RCTSurfaceStage.h */, + 1279C82531816D39075D79E144C26E69 /* RCTSurfaceStage.m */, + 8BE895E26BDF6A89B69E8ED7352FDD07 /* RCTSurfaceView.h */, + 9DA4FFB82DCD89F0F124AA4C94E42D3A /* RCTSurfaceView.mm */, + DFD5C51728A96F61FAFD0FB6F6C2150F /* RCTSurfaceView+Internal.h */, + CD4497F784D8F4AB0A7EF4E7BABADB65 /* SurfaceHostingView */, ); - name = Services; - path = UMReactNativeAdapter/Services; - sourceTree = ""; - }; - 013AB9A5B03CDA59B94ED5102F787080 /* Drivers */ = { - isa = PBXGroup; - children = ( - 8E1301D7FA389EC69EF755A602511830 /* RCTAnimationDriver.h */, - E13D63D9DCAAC78D1A3DEE7438D8C2C8 /* RCTDecayAnimation.h */, - A7C45AADB695D3ECA53A01A8F33D3E13 /* RCTDecayAnimation.m */, - 9EDB8B7B119C1DD15CD99816B6582B8B /* RCTEventAnimation.h */, - 09A130E22E136628424BF0FE05ED05FE /* RCTEventAnimation.m */, - 409D3DCE7BDFC47CEAEDCB5680E65BA4 /* RCTFrameAnimation.h */, - 1AF1E263292AE06126436CFEF324828F /* RCTFrameAnimation.m */, - 45809251A4E107AD0B999BA6BCA9D352 /* RCTSpringAnimation.h */, - 2002FAFFC1387CEA4FC75FB31B8058F4 /* RCTSpringAnimation.m */, - ); - name = Drivers; - path = Libraries/NativeAnimation/Drivers; - sourceTree = ""; - }; - 0282B38FD6F738E141B196F767CADC46 /* Support Files */ = { - isa = PBXGroup; - children = ( - CB9074A3A03E2E7D8D1A3CBE5830643B /* react-native-splash-screen.xcconfig */, - 16CCA8E92233B5FE9338D8F88B971B5D /* react-native-splash-screen-dummy.m */, - 82DD5618BCDBDB50D795B9301D681548 /* react-native-splash-screen-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-splash-screen"; + name = Surface; + path = Surface; sourceTree = ""; }; 0382A503BA90CA7904830F3A958469BC /* decode */ = { @@ -2731,40 +2741,26 @@ name = decode; sourceTree = ""; }; - 03EB07E2767A2C759B20AB261ADBBCE5 /* Pod */ = { + 04A5CC24BAF8038CA3B3428230E7D27D /* Support Files */ = { isa = PBXGroup; children = ( - A14ED720BFC78D11EF8998D66B37522F /* UMFaceDetectorInterface.podspec */, + 2F5746B355F03B27D0CD72B9771C688A /* UMCore.xcconfig */, + B5BE265E3B784CD1EE0E130ACA7A6B34 /* UMCore-dummy.m */, + AA529A31612B7DEB193DA61C7DD1FF95 /* UMCore-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/UMCore"; sourceTree = ""; }; - 055CEE4121EE6FE2AEC3144DC8328E68 /* RNScreens */ = { + 0514023BE076CE39BB0E728917BAC4FD /* Support Files */ = { isa = PBXGroup; children = ( - 652511981B0F8642FA9502EA4DD3F578 /* RNSScreen.h */, - B59737FDB54009CDEA02363F4880637E /* RNSScreen.m */, - 66080C4B1F21D38156943C8CEF895FEE /* RNSScreenContainer.h */, - BFD1A9691D63084D5A6DCF9E62ADE95A /* RNSScreenContainer.m */, - 6833933C5481990ECD4F856BD9D07C66 /* Pod */, - EC7F8AB8A83E4EE5881FF2DA6599FC4C /* Support Files */, + 9340203F8EF3AD7842EBA19998B2FD5A /* react-native-orientation-locker.xcconfig */, + E20C356E71041C9473DEEFE910AC373C /* react-native-orientation-locker-dummy.m */, + D3020DC825F5AFD969C5449E1D846D04 /* react-native-orientation-locker-prefix.pch */, ); - name = RNScreens; - path = "../../node_modules/react-native-screens"; - sourceTree = ""; - }; - 059DA777734185C2284F8F1B08070ACA /* EXConstants */ = { - isa = PBXGroup; - children = ( - 567385FE24142A67287A3E4750BC901E /* EXConstants.h */, - 0B2DEE9D6605950D85764B62EDB52E7C /* EXConstants.m */, - 41974FFBB9D38E3002BDC85797836D8C /* EXConstantsService.h */, - 7B2464956271EAC9A4D3C116C847B38A /* EXConstantsService.m */, - 6830FE7F6DB1ABC8089C9E3054824D27 /* Pod */, - 9EFACDB8AFFB3091DEAD519CA5E0B0FC /* Support Files */, - ); - name = EXConstants; - path = "../../node_modules/expo-constants/ios"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; sourceTree = ""; }; 05C01A9434CFBBF6615DA61F203FED12 /* Support Files */ = { @@ -2776,101 +2772,6 @@ path = "../Target Support Files/GoogleIDFASupport"; sourceTree = ""; }; - 07AB1CE8C44CD8D976A85B7C8B56BD75 /* Views */ = { - isa = PBXGroup; - children = ( - D1A71E848C4A31ED1E583EA8BD948081 /* RCTActivityIndicatorView.h */, - B0B70B2E92FC5DB99C53D5164B053238 /* RCTActivityIndicatorView.m */, - 106D6979FF3AC4091A6CD59CFEF71C95 /* RCTActivityIndicatorViewManager.h */, - 919037F42BD95E0FF1853A6B107C4E80 /* RCTActivityIndicatorViewManager.m */, - F48B73BEBA9704B906B50B746C4438AE /* RCTAnimationType.h */, - B1280F0D7E4AA0594A7549CDFF37204D /* RCTAutoInsetsProtocol.h */, - 81ABEAE2CBCBC10533490D000A14B48C /* RCTBorderDrawing.h */, - 8188699A24133E854EB25BE72B6105CA /* RCTBorderDrawing.m */, - A5E2CD6B541E153C741EB675CCBB0DA2 /* RCTBorderStyle.h */, - AB6D0734C876C2C41435B3854BE14BBF /* RCTComponent.h */, - 1A97D4C59A61BBB39F800298E466E731 /* RCTComponentData.h */, - B05DFE569B9B8E4C139E8CBE1CDEEC34 /* RCTComponentData.m */, - 177F85393BEFCEF3E230DB3F4C2A7B44 /* RCTConvert+CoreLocation.h */, - 4BE8E72AAD0537E96DC29BF90BE1CAE0 /* RCTConvert+CoreLocation.m */, - D3C24E47DB104D8C532AFFD13CD4E23A /* RCTConvert+Transform.h */, - 853FE581BCE1B642A94313EE66586BFC /* RCTConvert+Transform.m */, - A5AF48F497FB9C74664D2C42FE3B4C02 /* RCTDatePicker.h */, - F25A53CD038123D6EB4B93E14ADA6564 /* RCTDatePicker.m */, - 5AC59977CF1D5FCBF5DA8C5ABE5B82EC /* RCTDatePickerManager.h */, - 430B86F0193D1A77627DB5B70192100D /* RCTDatePickerManager.m */, - 7168A5F138D387671B457B95FFE5F3DF /* RCTFont.h */, - 682BE68F4C6FB3FAC23E21A10800223A /* RCTFont.mm */, - 4CC69680B444D1E80E4713D807ED5D63 /* RCTLayout.h */, - F5FAB4A58F83701130CB2B30A0A7FB95 /* RCTLayout.m */, - D9781077621162BF633E61A40302CDF0 /* RCTMaskedView.h */, - 32431EBBE214C397075E0657CE3403E8 /* RCTMaskedView.m */, - 8EC90F6024C653AC2F3C46395C28D6B5 /* RCTMaskedViewManager.h */, - AE1ECD597092E48136284E8430626396 /* RCTMaskedViewManager.m */, - 511DB55203A843693DAD2090A460AC44 /* RCTModalHostView.h */, - F4ED229E32FE38ADAC86C777DB39735B /* RCTModalHostView.m */, - 85CA58B6ED6DD4606B0ADFC520435266 /* RCTModalHostViewController.h */, - 9A8E85806EE3A52BF65E79776F25D9ED /* RCTModalHostViewController.m */, - B87C934FB54B77F7292F8B14BDC59B88 /* RCTModalHostViewManager.h */, - D776778A7831DB201A730932DE45C8B8 /* RCTModalHostViewManager.m */, - 70CF3C5A7350020B1560ACFDEA188F46 /* RCTModalManager.h */, - A4D68931CA745B8899D81EC55A05F025 /* RCTModalManager.m */, - E224C81A02489D545A4D0C0BCA7D1A68 /* RCTPicker.h */, - E6951BE82C0C116F666512F3A042E998 /* RCTPicker.m */, - C40F272CE5CFDFF3EA6FD52776F0F34C /* RCTPickerManager.h */, - C7801F5F9AB9999A9B95D2C8840FD8A6 /* RCTPickerManager.m */, - B075E4C5E42B32CD41528CBA9B735D64 /* RCTPointerEvents.h */, - F68E46E3304FF945ED659F6D6D64074A /* RCTProgressViewManager.h */, - A5BC64CAA70525FE6A2C1B15E400A0EB /* RCTProgressViewManager.m */, - 440C36CBB0AD6C8E7A3F5C73EE6EE403 /* RCTRefreshControl.h */, - 83070EEA5A2F37EE0FB033CDF47602E6 /* RCTRefreshControl.m */, - 1B5F7E7A2AE47BE5714CD75A9D4CFDDB /* RCTRefreshControlManager.h */, - 30121EF7E4737FABB1119BDE1AF02136 /* RCTRefreshControlManager.m */, - C3D2C654FAAAB3D1633EAC2387D9A22E /* RCTRootShadowView.h */, - CF6A66F2F3D6415B244506141EE259AB /* RCTRootShadowView.m */, - 512ABD07CDF6B668A83199DA866D4221 /* RCTSegmentedControl.h */, - E6FB2B7E3A8EE48BC283A81C17098C0E /* RCTSegmentedControl.m */, - 820ED04EBBB28B15CEE6CDA3A7A363FF /* RCTSegmentedControlManager.h */, - E17011A1A43BAB97566A2C9ACF473948 /* RCTSegmentedControlManager.m */, - 938187C4B0DC0B4EC2A5EE97E9AD4251 /* RCTShadowView.h */, - 6D4227CCE3B51F16EF5FE2C2A2105BD4 /* RCTShadowView.m */, - F2E820DFA6808D8F56CA36A97230B3A5 /* RCTShadowView+Internal.h */, - 406BAE00864E1B33EF382F43BFBFA96E /* RCTShadowView+Internal.m */, - A22CA4457C36739764D7446F3306EAA3 /* RCTShadowView+Layout.h */, - 9D48EB70A2613F54A7103BF2BF3414F7 /* RCTShadowView+Layout.m */, - D5A3048DFA088832C36F0A7AD65DAE14 /* RCTSlider.h */, - 1FBD65FFED5FFB2F05D422C3E059CC47 /* RCTSlider.m */, - 662956D6738667BD65B45E0CD51506D6 /* RCTSliderManager.h */, - 4B66F7A89929555830E1EBD60C302DA4 /* RCTSliderManager.m */, - 5AB98F2B54377C2DFDD704762E786557 /* RCTSwitch.h */, - 5EB18FC900CB60F0116F03ED1EEF394D /* RCTSwitch.m */, - 853386ACBE94A93989810C26794EED73 /* RCTSwitchManager.h */, - 492316F9B1A1B24D50F5928B33AD1645 /* RCTSwitchManager.m */, - 83E0B883D0E026F6698CBF14EF8A3442 /* RCTTextDecorationLineType.h */, - 39E74B7CDA9089B33E3B3E7325ADC2AE /* RCTView.h */, - BFF6EEBABCCA36C8D88E46163E4748DF /* RCTView.m */, - F2E3AF02DC8CAF9045A3A2A9E8B2BCFD /* RCTViewManager.h */, - AB0A1546531343D0D5F9D57A0DA8A825 /* RCTViewManager.m */, - BC57C8ABF98910ACD20286762DBB3D56 /* RCTWebView.h */, - 7CD4BD933EF27D5F6941D394207085B7 /* RCTWebView.m */, - 5260AF78E78E7390F1709DC0EE49278E /* RCTWebViewManager.h */, - 1500FE978E2364DB047F0990C65F65A4 /* RCTWebViewManager.m */, - 0A687B0AB4E33F6B3FA23BCC20519FF8 /* RCTWKWebView.h */, - 3FB866025089198843D22CBB1F0F1D24 /* RCTWKWebView.m */, - 1F4337A361922D4C245AF737273F03F9 /* RCTWKWebViewManager.h */, - BB58F5AFCBD9DDE8130EF61FC0571B4C /* RCTWKWebViewManager.m */, - D45E7F2B5ABB3DE06FCF02EF727EF2BF /* RCTWrapperViewController.h */, - A7D73627BEB4A8C2F7C85022EAAE529F /* RCTWrapperViewController.m */, - 0ED4044BC46DC09A3F7C3A122671EB5E /* UIView+Private.h */, - D98564C13D57CA320FEF0A366183A22A /* UIView+React.h */, - AB97DF025AF9A51624FF2795F705FE13 /* UIView+React.m */, - 736333244F251E64CB82F64763E96953 /* SafeAreaView */, - A8F2F3BA786491D28AED0B45AF7DDF41 /* ScrollView */, - ); - name = Views; - path = React/Views; - sourceTree = ""; - }; 0A7E0F530CEEA581B16197A5A636FC13 /* NSData+zlib */ = { isa = PBXGroup; children = ( @@ -2880,26 +2781,12 @@ name = "NSData+zlib"; sourceTree = ""; }; - 0B513FFF05B7C3B5D793F4A3E5F28746 /* UMViewManagerAdapter */ = { + 0C03EEF3CDF15D63E7D8A8EA300B93B6 /* Pod */ = { isa = PBXGroup; children = ( - 4A6A78AF7C4FBA72DCD931B7BC3EA363 /* UMViewManagerAdapter.h */, - 7C60CDA90970CA5F0154E2233D5E015A /* UMViewManagerAdapter.m */, + 14EE2528A671176221E59328A9F803A5 /* UMFaceDetectorInterface.podspec */, ); - name = UMViewManagerAdapter; - path = UMReactNativeAdapter/UMViewManagerAdapter; - sourceTree = ""; - }; - 0DC726FA7041421CA7B2304192B20CDD /* UMFaceDetectorInterface */ = { - isa = PBXGroup; - children = ( - 4DBAAB4107CA57D7CA45AEF718CFA494 /* UMFaceDetectorManager.h */, - 1158784F36D82CE72DD6C4213F187E8C /* UMFaceDetectorManagerProvider.h */, - 03EB07E2767A2C759B20AB261ADBBCE5 /* Pod */, - 660C9CE69E9A7741061E62151418797E /* Support Files */, - ); - name = UMFaceDetectorInterface; - path = "../../node_modules/unimodules-face-detector-interface/ios"; + name = Pod; sourceTree = ""; }; 0DFDA18E3B59B2B158CD057D79830762 /* encode */ = { @@ -2909,15 +2796,53 @@ name = encode; sourceTree = ""; }; - 112CC815B8781868F54A85A7EFD666BF /* Support Files */ = { + 0EBAFA75227FE1FC89CD51643BED3A82 /* UMNativeModulesProxy */ = { isa = PBXGroup; children = ( - 49DC055D39ED12E1A6960E7254FFA6F3 /* UMCore.xcconfig */, - 5D777AC3D8EE6C735B30A17B7E10CB86 /* UMCore-dummy.m */, - 19EAECC10BD9B92A78609143A38F2D4C /* UMCore-prefix.pch */, + 03B897573520966C84E88B1BBC37057F /* UMNativeModulesProxy.h */, + EAFCA8120582B09E114FCFDD9A23AE72 /* UMNativeModulesProxy.m */, + ); + name = UMNativeModulesProxy; + path = UMReactNativeAdapter/UMNativeModulesProxy; + sourceTree = ""; + }; + 10010C6301D3A51B9FAF968FA9398FA5 /* Support Files */ = { + isa = PBXGroup; + children = ( + 81D6504188670BC5E75619FF14C1D107 /* RNScreens.xcconfig */, + F4E8D982A663BAB845720E82B1005DEE /* RNScreens-dummy.m */, + 5F0E472B1853F8938964BA571BABA761 /* RNScreens-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMCore"; + path = "../../ios/Pods/Target Support Files/RNScreens"; + sourceTree = ""; + }; + 1033368FA39B69F8D45FA45E24CE17B5 /* Support Files */ = { + isa = PBXGroup; + children = ( + AF1A496EDBFEDF9532628CE2B7BBB84E /* EXPermissions.xcconfig */, + 07BA55325F41EE4F1999CF6A35B14607 /* EXPermissions-dummy.m */, + 258496CF6BEF5245CABAED27F673CA31 /* EXPermissions-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXPermissions"; + sourceTree = ""; + }; + 10B17CBAE0E52A13AEB0B31B9C2BEB2E /* Support Files */ = { + isa = PBXGroup; + children = ( + E7E70D986059308E04198908D2E5C904 /* UMFontInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFontInterface"; + sourceTree = ""; + }; + 1159DC168A18455C628FB9DFC1DE6F42 /* Pod */ = { + isa = PBXGroup; + children = ( + 9E427E9F408C92C445A34FDFCF670D59 /* UMBarCodeScannerInterface.podspec */, + ); + name = Pod; sourceTree = ""; }; 1236BC3FA18CAE87BFF0ED4ED0934871 /* FirebaseAnalytics */ = { @@ -2930,45 +2855,35 @@ path = FirebaseAnalytics; sourceTree = ""; }; - 13D8B51474FE1F2AAD7D70F9CD55F5D7 /* Support Files */ = { + 1418CD6FD084D3F1787D413F635A64EB /* Pod */ = { isa = PBXGroup; children = ( - 184829A45853A0F756120688448C3BA0 /* React.xcconfig */, - ECC6FA3D1550465B4E35C0F99267B5C7 /* React-dummy.m */, - F8299EFDF80DD56FC2C000D805F3C53D /* React-prefix.pch */, + D2F7C181F5F25E370577258969E41967 /* UMReactNativeAdapter.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 148DB9331379B809877035B41BD9CFBE /* Support Files */ = { + isa = PBXGroup; + children = ( + 4699C9F661A6DDD1B2459DCA67729086 /* EXConstants.xcconfig */, + A5DCF2AFD8FE857EDD6C25965368B6AF /* EXConstants-dummy.m */, + 615C12AF17EE997A18E18B79853E9AD9 /* EXConstants-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React"; + path = "../../../ios/Pods/Target Support Files/EXConstants"; sourceTree = ""; }; - 163065CDA3BAC576AE6F42DD94AE0F8A /* UIUtils */ = { + 179ED284FF51ADFD2FE26193747E4433 /* UMPermissionsInterface */ = { isa = PBXGroup; children = ( - 44A5AA93ECD4735D043B2EDD0D65FEC8 /* RCTUIUtils.h */, - B6DD110BE57330216A43C29951017B30 /* RCTUIUtils.m */, + 87C3642719C74281E6426FD8299F20B8 /* UMPermissionsInterface.h */, + 50ECDFDA07BC77863642EFC10C2E0E79 /* UMUserNotificationCenterProxyInterface.h */, + 4A38A09461DD8717069ED7E618F8363C /* Pod */, + FE16D7F4F6EAD412017A8D2B98111775 /* Support Files */, ); - name = UIUtils; - path = React/UIUtils; - sourceTree = ""; - }; - 165C6A1326570E8D9ECE668E1827D349 /* fishhook */ = { - isa = PBXGroup; - children = ( - 5C506C83FAFADB84283106988FD7BCB3 /* fishhook.c */, - 1928AF96BE73B92820A364CA7C40FBC9 /* fishhook.h */, - ); - name = fishhook; - sourceTree = ""; - }; - 171B894E5EE3A03D0D06EFC4F017C13B /* Support Files */ = { - isa = PBXGroup; - children = ( - F51BBFBFDD2D272826CA5B0EB4FDCB67 /* react-native-webview.xcconfig */, - D80D1DE5043BD3C1EFD378F2117D270D /* react-native-webview-dummy.m */, - 1376822057D64D97EDB97E367D37CFCE /* react-native-webview-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-webview"; + name = UMPermissionsInterface; + path = "../../node_modules/unimodules-permissions-interface/ios"; sourceTree = ""; }; 1ABDC0FAE3BBF85CF0DAACCB8AC673AA /* Core */ = { @@ -2996,39 +2911,37 @@ path = "../Target Support Files/FirebaseInstanceID"; sourceTree = ""; }; - 1DDBC67EEFB85267DA52B75A80CD3B10 /* yoga */ = { + 1D180FE68937AF878A1C8C9949B25455 /* UMFontInterface */ = { isa = PBXGroup; children = ( - 21F6D17D876AFD5FF656F7D8EAD43104 /* CompactValue.h */, - A5E0B7FF3A4315169CAFF25EF261953C /* instrumentation.h */, - A5C33BC63D922FE7C50AA2D12F22D7B7 /* Utils.cpp */, - 5B81BC5BD563B06DA975490A65EB28D3 /* Utils.h */, - 473C72E07377B720F9F4979C70B6BF3D /* YGConfig.cpp */, - 3ADB6ED8A29496CC4553AA21ECE75FF8 /* YGConfig.h */, - B94F4A7DAACD1880519239245DF3F5EC /* YGEnums.cpp */, - 5290808C37723CB0BC4DCF45FF29DC9A /* YGEnums.h */, - F7EA11BE35B7CA5D5E7E11A26C8F6926 /* YGFloatOptional.h */, - 0A3DA35AEA3A1AB76A6F9C584C532630 /* YGLayout.cpp */, - 85138410928599A555E8A23D10A63890 /* YGLayout.h */, - CDB9CFB2E17926A7AE8C8BFD1745DC68 /* YGMacros.h */, - 87238A610E2D73623ABB5A901A698AFF /* YGMarker.cpp */, - 8C1650F4EB619145F2D719F0300CC33E /* YGMarker.h */, - B0584F3F8860C573B6EC43DA81FA054F /* YGNode.cpp */, - 6296729557B4C266FB879564A0339D94 /* YGNode.h */, - F6658AA388BD5B2046D1F9A8B2E3DB45 /* YGNodePrint.cpp */, - 096F14BA72C6F12FB521A0BE09F7074A /* YGNodePrint.h */, - 9EC3159D85D08ED25791315962342573 /* YGStyle.cpp */, - 61A3278B510DEB9D2F985C2A3212CD3A /* YGStyle.h */, - B6F2BF586C76EBBF5B6A0547B3A7E40C /* YGValue.cpp */, - 27C025A92309D57C00D524C722C4478D /* YGValue.h */, - 4677F4B7C5DD8E2D1715C503AD8503C7 /* Yoga.cpp */, - 2764389E8ABD26D34BCDEF08DA7253D4 /* Yoga.h */, - 64BC3B12E4CBF094E7B65E7144D03C6E /* Yoga-internal.h */, - 4912FB1395CC4BC228D8B604C777CCDF /* Pod */, - 2956C01F640A661251B11C6C4024FF52 /* Support Files */, + B332C9CE5A23571E76BAA20C09CF302E /* UMFontManagerInterface.h */, + 08A80EB08739715271130AFF81D37BF0 /* UMFontProcessorInterface.h */, + 87E75C1105F495E4BC74A07FA293FF8D /* UMFontScalerInterface.h */, + D61715FC4B2FF2BCBBD26D52CF774B06 /* UMFontScalersManagerInterface.h */, + 302CD237E015852638C748286D8506E2 /* Pod */, + 10B17CBAE0E52A13AEB0B31B9C2BEB2E /* Support Files */, ); - name = yoga; - path = "../../node_modules/react-native/ReactCommon/yoga"; + name = UMFontInterface; + path = "../../node_modules/unimodules-font-interface/ios"; + sourceTree = ""; + }; + 1E3E35A442B071F02B73B42F416C1758 /* Protocols */ = { + isa = PBXGroup; + children = ( + 7F8987C7A184D022D6C2647ABC636D62 /* UMAppLifecycleListener.h */, + B3048495178F469E7CABD01B41AF85B5 /* UMAppLifecycleService.h */, + 5A037BCB051F40EE86B2C4B8F2057269 /* UMEventEmitter.h */, + B8129131786B32C6E003AD92EDAD5A56 /* UMEventEmitterService.h */, + 4F85AC598FF2F29296A236C680DCA985 /* UMInternalModule.h */, + 2EBB56C0F9061AC3F8415DB58CC13585 /* UMJavaScriptContextProvider.h */, + 147644E26FF753E12FFB6256DC7A0A79 /* UMKernelService.h */, + F500F244A8BE5C011E7A633CBF2C1C48 /* UMLogHandler.h */, + 1F11B93ADAAB6E4B537D574E0594197D /* UMModuleRegistryConsumer.h */, + AE74B13A862110F930B2402431A65AB6 /* UMUIManager.h */, + E7E1A2C770AE2663098B8C2984A009DA /* UMUtilitiesInterface.h */, + ); + name = Protocols; + path = UMCore/Protocols; sourceTree = ""; }; 1E49913644AAD602982BAD865F406891 /* FirebaseABTesting */ = { @@ -3041,6 +2954,16 @@ path = FirebaseABTesting; sourceTree = ""; }; + 1FDF41AF2DF2FE6F474F7370C4EDF264 /* UIUtils */ = { + isa = PBXGroup; + children = ( + 872423EB47D0A0782ABCC957496466D5 /* RCTUIUtils.h */, + 28C0D183B4D93C75902AEAAEF9148E2F /* RCTUIUtils.m */, + ); + name = UIUtils; + path = React/UIUtils; + sourceTree = ""; + }; 2141029150C2FA187180BCCCB97AC3C0 /* Folly */ = { isa = PBXGroup; children = ( @@ -3073,49 +2996,13 @@ name = Frameworks; sourceTree = ""; }; - 25713F8F773050FA1BC8F3C224B2F4EA /* EXPermissions */ = { + 293E415FF302C64E2E18BBCCD7B28BA1 /* Support Files */ = { isa = PBXGroup; children = ( - 27F428D24220F221FBAE8C7A461B3373 /* EXAudioRecordingPermissionRequester.h */, - AAEC02D46FF3FDA7E25A8D9C4F0EA4B2 /* EXAudioRecordingPermissionRequester.m */, - 42542E933DBB082E05C49AF7672B44B4 /* EXCalendarRequester.h */, - 5DAF1F1F927AA08E3439B90E191B28F7 /* EXCalendarRequester.m */, - 8941D9DF6FF070935F15CE6E424386B6 /* EXCameraPermissionRequester.h */, - C20130DD700D9E05AB9819EA9F50EC0A /* EXCameraPermissionRequester.m */, - 343B71FB74F4137D4BD196841FF15BDD /* EXCameraRollRequester.h */, - 4D6F821E2B93CB3EAEBB300E3BC4C28E /* EXCameraRollRequester.m */, - 5F48C0D74D371A9F91ABE12DA7B409E2 /* EXContactsRequester.h */, - 69B7A75C19066DFC7937F2A35BE5CB58 /* EXContactsRequester.m */, - 60F2AA45F675CC3245D0A35C97A88A34 /* EXLocationRequester.h */, - DF554FB95B009429E79E59424B3DA457 /* EXLocationRequester.m */, - D9103AA8819E14646CEDF6BFE7EEAC24 /* EXPermissions.h */, - 6382F111C6E6725DED86068507C906E4 /* EXPermissions.m */, - AA8CF15ECD3F51B147A5EDCA72AE8DE5 /* EXReactNativeUserNotificationCenterProxy.h */, - 40BDEFCEDBA7C6F4FC8E1AA1AE990E6E /* EXReactNativeUserNotificationCenterProxy.m */, - 8273F374BFF1861CEF7C786EAE150E18 /* EXRemindersRequester.h */, - 87C4A69892016B0B60C8BA6B6EF12DDD /* EXRemindersRequester.m */, - 4310BC0C9C3FF5CAD594564086096322 /* EXRemoteNotificationRequester.h */, - 5499AE39E85550D1F1DB83B639F0E161 /* EXRemoteNotificationRequester.m */, - B74355797360A160126F0A5F9F1D1982 /* EXSystemBrightnessRequester.h */, - F7E663509EA96636AC0E176E79FAD244 /* EXSystemBrightnessRequester.m */, - 75CF3C0457352665415A7DD0648B5274 /* EXUserNotificationRequester.h */, - 10F9FDCC21C245BE1F4B023FA9866ADB /* EXUserNotificationRequester.m */, - FC47FAA5A74FB04ACB75549DC0E15DFE /* Pod */, - 3C6FD885250CA47CA9BA2EDAC27D29A2 /* Support Files */, - ); - name = EXPermissions; - path = "../../node_modules/expo-permissions/ios"; - sourceTree = ""; - }; - 2956C01F640A661251B11C6C4024FF52 /* Support Files */ = { - isa = PBXGroup; - children = ( - 48074068C07C1FF030CC39F393077646 /* yoga.xcconfig */, - 5C7732FC60AE7FBD15447F7865946CA8 /* yoga-dummy.m */, - E7581467D001F63179B5809452949F05 /* yoga-prefix.pch */, + 88D5B8569BE83E36565DE608DEACF48A /* UMTaskManagerInterface.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/yoga"; + path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; sourceTree = ""; }; 2BD9E0D96E3A87D9AF2D1911D3C55E10 /* Support Files */ = { @@ -3129,22 +3016,25 @@ path = "../Target Support Files/Folly"; sourceTree = ""; }; - 2F5C80247426BB15C2B9D50CFDF313D0 /* UMBarCodeScannerInterface */ = { + 2C04FD1EB8D34A49DE240A402101B6A0 /* UMReactNativeAdapter */ = { isa = PBXGroup; children = ( - 89ADB9B449CBD35D5DA36EDAB48E3FBB /* UMBarCodeScannerInterface.h */, - 3B29DFF904C43C156C2A069E16589A74 /* UMBarCodeScannerProviderInterface.h */, - 4BBB81326696A8856D70042CAA1801E9 /* Pod */, - E65E3F055D193361A249072B348A1F1A /* Support Files */, + 7C68D2CEE38E5A9ABF52523980C592CE /* UMBridgeModule.h */, + 1418CD6FD084D3F1787D413F635A64EB /* Pod */, + 4A8266BE19A09A399AB6AF48E5CA0B74 /* Services */, + 4F358EDF34118A226B4945D517A5B539 /* Support Files */, + 819B070954DDB2BF7E9DDED2E48248D0 /* UMModuleRegistryAdapter */, + 0EBAFA75227FE1FC89CD51643BED3A82 /* UMNativeModulesProxy */, + FA5A14F29E14D8E66C9DE881CB111A3F /* UMViewManagerAdapter */, ); - name = UMBarCodeScannerInterface; - path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; + name = UMReactNativeAdapter; + path = "../../node_modules/@unimodules/react-native-adapter/ios"; sourceTree = ""; }; - 31A5696B444173B99F2C5DBB71CDFF4F /* Pod */ = { + 302CD237E015852638C748286D8506E2 /* Pod */ = { isa = PBXGroup; children = ( - F158E3616BBD24FA9EEA84566381F4AD /* EXHaptics.podspec */, + AB17F0D8F32CDEEEEA8E685DB1EDD911 /* UMFontInterface.podspec */, ); name = Pod; sourceTree = ""; @@ -3166,26 +3056,50 @@ name = Network; sourceTree = ""; }; - 3330BC5F602052F04CB4799225B16D86 /* RawText */ = { + 331CEB02ACC75BBB3CE51F37F5735F57 /* Pod */ = { isa = PBXGroup; children = ( - FC2406572C55671A14DAEF85B7CDCA85 /* RCTRawTextShadowView.h */, - A5E528BB4C27C8117DB8F85F5F14D529 /* RCTRawTextShadowView.m */, - 83E6558E152D0A2F1DB11E07C8B07C50 /* RCTRawTextViewManager.h */, - C3653658C8711A2BA27720BA6363FC7F /* RCTRawTextViewManager.m */, - ); - name = RawText; - path = Libraries/Text/RawText; - sourceTree = ""; - }; - 348BA231E9BB2E6B466DF550503AD246 /* Pod */ = { - isa = PBXGroup; - children = ( - D2114DF6DDCDFD257DEBAA509D5BCDD8 /* UMImageLoaderInterface.podspec */, + E3B7951A008B5AEEDE66358AB8DA3049 /* LICENSE */, + BA227A37EF40B946807575EE0BF751DE /* react-native-webview.podspec */, + C9D6226D1F21D313486C3EEE4B57D523 /* README.md */, ); name = Pod; sourceTree = ""; }; + 341AB6C9F4FFCC2923406F139D8DCF56 /* EXPermissions */ = { + isa = PBXGroup; + children = ( + ECEE1BDC40E8C2C4CFF1A1E82FAFE7D2 /* EXAudioRecordingPermissionRequester.h */, + A104D2B5F9BD5AC254937A67532E27D7 /* EXAudioRecordingPermissionRequester.m */, + 24CEBF77A8430360D09CF0952646D530 /* EXCalendarRequester.h */, + F8412DDE4D4E3A70EECC7B94EB62FE8F /* EXCalendarRequester.m */, + C61AB108A528C280D797DE03C7DF9920 /* EXCameraPermissionRequester.h */, + 73BACE1E26C389EBA51AA40934853955 /* EXCameraPermissionRequester.m */, + B1DA2D11537DEEE2E880AE95F8F1A720 /* EXCameraRollRequester.h */, + 294737B114A0D475D14C2052D6A30469 /* EXCameraRollRequester.m */, + C129E87286A5E0A944F80256EEA129C4 /* EXContactsRequester.h */, + 41BF3A144DA86DBD2266916A619A12B0 /* EXContactsRequester.m */, + 88E76D5B5A7228C45C5F7EE61BF267C1 /* EXLocationRequester.h */, + EB9FF0DF4C75B9340F9CDC0C66BD64CE /* EXLocationRequester.m */, + 0ACD7F22D2ADFFF061F44FD5B68C50B1 /* EXPermissions.h */, + 6A2B404A204EC7ECF8D87A17A9BEA94A /* EXPermissions.m */, + B82BE299CE92A0CA59F698F43CCAC2CD /* EXReactNativeUserNotificationCenterProxy.h */, + D4F94CE5E46252F7CDBD8542EB23959A /* EXReactNativeUserNotificationCenterProxy.m */, + 2E67E30C16E6296E46355DF3BB1B203D /* EXRemindersRequester.h */, + B659E2F1677E743FBB48DFD34C80D3A2 /* EXRemindersRequester.m */, + 1A10320571E05FCC3B4CC8FC20A6E168 /* EXRemoteNotificationRequester.h */, + A3B7D4F4BE0590417DB305B6E335BBC8 /* EXRemoteNotificationRequester.m */, + F2B29CF7E7D88E221CC7A112095DFEDA /* EXSystemBrightnessRequester.h */, + 50FBCE2B22EE450CFFE2969D7BC90CE9 /* EXSystemBrightnessRequester.m */, + 58C7F8430005FE0D9332F7E3CD0F2432 /* EXUserNotificationRequester.h */, + 8C637BB0616DAF1FC29D85803C0BCA0A /* EXUserNotificationRequester.m */, + 744100A7293596674013E5D3AE0E186F /* Pod */, + 1033368FA39B69F8D45FA45E24CE17B5 /* Support Files */, + ); + name = EXPermissions; + path = "../../node_modules/expo-permissions/ios"; + sourceTree = ""; + }; 34A37080B6F05E6577A9E8803274F297 /* Firebase */ = { isa = PBXGroup; children = ( @@ -3196,35 +3110,35 @@ path = Firebase; sourceTree = ""; }; - 34E987543AEF5865B191F8E1E168CF99 /* Support Files */ = { + 38E92D8A5946CCFD92B30E2AF6B41C5B /* RCTImage */ = { isa = PBXGroup; children = ( - E810609616C0C97E478830C4A8D3F80A /* UMFontInterface.xcconfig */, + 6EB9E2CE843F5C50D215AEE780CFD7E1 /* RCTGIFImageDecoder.h */, + 960ABA5B4BACD1253F2A1EC2A7C34DAE /* RCTGIFImageDecoder.m */, + 68BE9653FF3C3D2E30F70C5F69228536 /* RCTImageBlurUtils.h */, + 320849584DA6C35C5B33BBC9DAAAFEF5 /* RCTImageBlurUtils.m */, + C6A5F49A3232A9852B29023E165C1EED /* RCTImageCache.h */, + 8629421723938A1697A44881CD6463F5 /* RCTImageCache.m */, + B4DEB03CBF8131A2B3442A06CE615536 /* RCTImageEditingManager.h */, + FEE60827F533311EB96330C7AB3121DA /* RCTImageEditingManager.m */, + B9A030A013F4C4376D307D1CD7C70DC9 /* RCTImageLoader.h */, + FA88B341B13CFD4D14E57D63DB464A52 /* RCTImageLoader.m */, + 839AA000A6598B363F4594D0D0908743 /* RCTImageShadowView.h */, + AD2850F4998343F6CD7C70ACDA7C2F05 /* RCTImageShadowView.m */, + F77F4DB6F0D0C918121F68B634BD2BE0 /* RCTImageStoreManager.h */, + 137036403ACD2A8F266D694726774476 /* RCTImageStoreManager.m */, + 7877C335D0030720B7A94943CA6828E8 /* RCTImageUtils.h */, + E1BF883F5BBF98B48CBE0000C2901430 /* RCTImageUtils.m */, + 29B3DE91E9260F837B4E9FD2908F49E1 /* RCTImageView.h */, + 4E316BFF66F80CD630FFE20484BA591B /* RCTImageView.m */, + 239BE82C7D83161EA71DF7E85B95D24C /* RCTImageViewManager.h */, + B091184E388E86EAD2148831C7429CE0 /* RCTImageViewManager.m */, + 8C2AC834227ED89BBD162E917BE6B97B /* RCTLocalAssetImageLoader.h */, + E196A3A1D270724A17C419421A1242E2 /* RCTLocalAssetImageLoader.m */, + 0E2A963D36F433E911B2271D33EA1E64 /* RCTResizeMode.h */, + 74E57EF5ADDA0F13133C20225672197D /* RCTResizeMode.m */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFontInterface"; - sourceTree = ""; - }; - 3542442FA7515E77F03CC0D78CDB75FA /* React */ = { - isa = PBXGroup; - children = ( - E78FFE19304AAF75D85F07686D4CB847 /* Core */, - 165C6A1326570E8D9ECE668E1827D349 /* fishhook */, - D769449412215D6A5A3D293D956003C8 /* Pod */, - A1E72BB7B2CD04AD264864B0F64754AA /* RCTActionSheet */, - 599761F9D3F1775698117FCEDE078B60 /* RCTAnimation */, - ECCC9172BD620FD893742432229CF05F /* RCTBlob */, - 744CAAA030CF7B006DAD5E3E9C14334B /* RCTImage */, - 5103D41C619C82576399CDA45B0D7278 /* RCTLinkingIOS */, - 9BFB4CAA1E928D4B4774FAFF5AAB844E /* RCTNetwork */, - FC5644D8A523D0FCDD10510BAF562A14 /* RCTSettings */, - 71E7D1BE40ABBB36B144ABC8BA259408 /* RCTText */, - AB350A18505E3821D9F6A2B0EEC6036C /* RCTVibration */, - F81A43928179599EDCDD344AD0B56DD1 /* RCTWebSocket */, - 13D8B51474FE1F2AAD7D70F9CD55F5D7 /* Support Files */, - ); - name = React; - path = "../../node_modules/react-native"; + name = RCTImage; sourceTree = ""; }; 392E4784A690A07630EAD5B1548E949F /* Frameworks */ = { @@ -3235,52 +3149,101 @@ name = Frameworks; sourceTree = ""; }; - 3A270B534FFA946F2FFD91C2DE3032E0 /* UMPermissionsInterface */ = { + 3998515F72BDC702245E3F87D0D1784A /* Pod */ = { isa = PBXGroup; children = ( - C33F8C57DFC0CDC511682361E31AB49C /* UMPermissionsInterface.h */, - E741484880868D78CA81E4ADB66A5F25 /* UMUserNotificationCenterProxyInterface.h */, - 694D05EC5765733522B1FB48CCC31914 /* Pod */, - 78C84490324C09054E49CCB2AABF0667 /* Support Files */, + DC40FE3B90AE4411ECC6B268BF575E02 /* EXWebBrowser.podspec */, ); - name = UMPermissionsInterface; - path = "../../node_modules/unimodules-permissions-interface/ios"; + name = Pod; sourceTree = ""; }; - 3C6FD885250CA47CA9BA2EDAC27D29A2 /* Support Files */ = { + 3AE119FD48A37A5C43C43805D0CDB166 /* Pod */ = { isa = PBXGroup; children = ( - 7329DD6A846858B4C6F81571A0503D6A /* EXPermissions.xcconfig */, - AD6D86BDD8B845212226A30C2A268CFF /* EXPermissions-dummy.m */, - 1F394FB8A363617D8FE712336D4AA1BC /* EXPermissions-prefix.pch */, + 903551A303DFC5755D6967BE74DAAE45 /* EXHaptics.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 3BA85C9E62E9D96935208C08B96BF728 /* RCTText */ = { + isa = PBXGroup; + children = ( + 408DCEC210E328B54AEABC14AD66CB5F /* RCTConvert+Text.h */, + DF6A750165E116897D29272BE5A0207C /* RCTConvert+Text.m */, + 707C7C69EDD67E7E806B9CC437BA6C93 /* RCTTextAttributes.h */, + 6E8B49ECBC5B12F2F5D0AAE28E3A91DD /* RCTTextAttributes.m */, + 87F026DB0B79077966F53A4065BE6C69 /* RCTTextTransform.h */, + BEA600A1A666AA63D921F23D8DF391F0 /* BaseText */, + 5FD9AE6F1944513FA216B52332A1F333 /* RawText */, + B0102F53A27A65566FA65A7160E0CEA1 /* Text */, + 3CD79FE5B31FBBE0AE8D717EE5576300 /* TextInput */, + 63D9C85E54C8634B7E1DE67C1D31F6FE /* VirtualText */, + ); + name = RCTText; + sourceTree = ""; + }; + 3CD79FE5B31FBBE0AE8D717EE5576300 /* TextInput */ = { + isa = PBXGroup; + children = ( + 4E6DE02F822507BEBA31FD4AD49EFE76 /* RCTBackedTextInputDelegate.h */, + 147F799064803498CB801A9E5B99180F /* RCTBackedTextInputDelegateAdapter.h */, + B34E0497F54F5B54ADB6565219784B27 /* RCTBackedTextInputDelegateAdapter.m */, + 49A9DA46EC0ED358D65CC85ABF427B91 /* RCTBackedTextInputViewProtocol.h */, + 37B2C6F7F86FBD3090EA758AD9C0497B /* RCTBaseTextInputShadowView.h */, + EDA23BB0172F0EEF4150D366397DD15A /* RCTBaseTextInputShadowView.m */, + 04488336C2B088D80487363B5145242B /* RCTBaseTextInputView.h */, + B65C09678D98AA4910D7E864BE561E86 /* RCTBaseTextInputView.m */, + 7894757CE734EA8006DEE8972BBE3416 /* RCTBaseTextInputViewManager.h */, + ECFA5891C8AE60349A63AA8B2BCC55ED /* RCTBaseTextInputViewManager.m */, + 61317EA8FF19BF62F27DE3C70F246CC8 /* RCTInputAccessoryShadowView.h */, + E1324B256741EF07BA2B683C794DFB31 /* RCTInputAccessoryShadowView.m */, + 8D3DC8CA860AE879059CE0F3873BE1C7 /* RCTInputAccessoryView.h */, + 3ACA078FECB24FC4FBE7127C0B51C194 /* RCTInputAccessoryView.m */, + A2EA968187A2B499D4DF0399364AFCF4 /* RCTInputAccessoryViewContent.h */, + A71392673A95219CF91D5EA9DBB12CD7 /* RCTInputAccessoryViewContent.m */, + F7D188FA372D3DB43310D9D9BBBEBB1F /* RCTInputAccessoryViewManager.h */, + AC55EB6ABAEA3C6D0EF57B6D9C506136 /* RCTInputAccessoryViewManager.m */, + 68359FC0678435BB2A49A39E15C195EB /* RCTTextSelection.h */, + C1EEA25522E95981E6E39400530BD6B3 /* RCTTextSelection.m */, + E6ECE69AB692824BAE616E53A22663F7 /* Multiline */, + 5DAC432E7E5C8AE7752D54D4081ACF57 /* Singleline */, + ); + name = TextInput; + path = Libraries/Text/TextInput; + sourceTree = ""; + }; + 3D51948F0EC49520CA28E909A0C39FBB /* RNLocalize */ = { + isa = PBXGroup; + children = ( + 62F8F485A5510811BDB32502C8A5D81E /* RNLocalize.h */, + 78198317FB7683EF4AD5E2AE83E2D229 /* RNLocalize.m */, + A017676EDDB9C82B047F5A7DE8D9E704 /* Pod */, + B3B08F6C7340A06B95284D43EB281E6D /* Support Files */, + ); + name = RNLocalize; + path = "../../node_modules/react-native-localize"; + sourceTree = ""; + }; + 427CEF93249F03CB8F9D96A19120614C /* EXAppLoaderProvider */ = { + isa = PBXGroup; + children = ( + 9B3F6FFAF4ECC6E65BB8748B62A09D16 /* EXAppLoaderProvider.h */, + CA9BDAAC96B943CDCF3084611C6E68BF /* EXAppLoaderProvider.m */, + DAAA049476DDF3053AFC4AA84593F6F4 /* Interfaces */, + 53EF5C4F7F5A6424F169F03AB87C896F /* Pod */, + D2369A74E8A4FE773BE1E84F13CAE4FC /* Support Files */, + ); + name = EXAppLoaderProvider; + path = "../../node_modules/expo-app-loader-provider/ios"; + sourceTree = ""; + }; + 439BB99A4B4B2DBB7A97872D8D025CB6 /* Support Files */ = { + isa = PBXGroup; + children = ( + 6BC8032F7258B87CB29A1412F8AF94CD /* UMSensorsInterface.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXPermissions"; - sourceTree = ""; - }; - 40D7C5A019D377E3EBF770F5A6653B70 /* UMImageLoaderInterface */ = { - isa = PBXGroup; - children = ( - B8E18D2439A078F11207A00B0F4DB1E0 /* UMImageLoaderInterface.h */, - 348BA231E9BB2E6B466DF550503AD246 /* Pod */, - 45552C855CB8FB61EB801FADCCF8ADD2 /* Support Files */, - ); - name = UMImageLoaderInterface; - path = "../../node_modules/unimodules-image-loader-interface/ios"; - sourceTree = ""; - }; - 420119C6D5CD047BB7C30A69F2D29F27 /* UMFontInterface */ = { - isa = PBXGroup; - children = ( - 7453F78CC030B18151DD0AE8A71F5219 /* UMFontManagerInterface.h */, - B07CFD1135AE16EE506BE5B3A5CB78E2 /* UMFontProcessorInterface.h */, - A466AD805640C5C242E975D20F9C2A20 /* UMFontScalerInterface.h */, - 300B51CBF618DB4EE71AD7AEC7418EC0 /* UMFontScalersManagerInterface.h */, - B8FDCA705E9773AD1C8EB0DD99998DB8 /* Pod */, - 34E987543AEF5865B191F8E1E168CF99 /* Support Files */, - ); - name = UMFontInterface; - path = "../../node_modules/unimodules-font-interface/ios"; + path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; sourceTree = ""; }; 444D3A51C52BDCF503FA7733BB2A4739 /* nanopb */ = { @@ -3301,15 +3264,6 @@ path = nanopb; sourceTree = ""; }; - 45552C855CB8FB61EB801FADCCF8ADD2 /* Support Files */ = { - isa = PBXGroup; - children = ( - 6445BD9F80EC6ECD81FC04D9BA020D02 /* UMImageLoaderInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; - sourceTree = ""; - }; 459CD3D4C62D4FFDF5447A2BF1926935 /* FirebaseInstanceID */ = { isa = PBXGroup; children = ( @@ -3383,54 +3337,51 @@ path = FirebaseInstanceID; sourceTree = ""; }; - 4912FB1395CC4BC228D8B604C777CCDF /* Pod */ = { + 4A38A09461DD8717069ED7E618F8363C /* Pod */ = { isa = PBXGroup; children = ( - 344E6F5BBD6EF379BE0FEB4544118094 /* yoga.podspec */, + 5E0809EBB328317EB72000059C657869 /* UMPermissionsInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 4BBB81326696A8856D70042CAA1801E9 /* Pod */ = { + 4A8266BE19A09A399AB6AF48E5CA0B74 /* Services */ = { isa = PBXGroup; children = ( - 3113FA761D2B8E560617503959E37D23 /* UMBarCodeScannerInterface.podspec */, + FDCA142EC43F5FD5C4EDD8B11E95115D /* UMReactFontManager.h */, + 1FC457114AD13CE6579C59563744717C /* UMReactFontManager.m */, + 74DC67EAB7F949220770599CAE70C067 /* UMReactLogHandler.h */, + 2DD0857E374501B3A29D206003C86476 /* UMReactLogHandler.m */, + E9E3C593A2AA318C8D8A095ACD66CA55 /* UMReactNativeAdapter.h */, + C8F928AFD61464ABD4308027ADE67B30 /* UMReactNativeAdapter.m */, + EB02A3ED5321F1790F5279780F7469BB /* UMReactNativeEventEmitter.h */, + 98B5299791527DBA7C5792E72B21C9A1 /* UMReactNativeEventEmitter.m */, ); - name = Pod; + name = Services; + path = UMReactNativeAdapter/Services; sourceTree = ""; }; - 4DB3D35DF27513A2C9D7CDE6B51559AF /* Pod */ = { + 4E94AE0FDF9BA941AB45020DFFE03F7A /* EXWebBrowser */ = { isa = PBXGroup; children = ( - 46605810B33088BA6A42FF85931AE52A /* LICENSE */, - E6A15A782E3E4E3614699709BE382957 /* react-native-orientation-locker.podspec */, - 3F581BD6FBACC537840D0FC6A9B4914B /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 4DDBE767712FA22EA8CC63A59D495068 /* EXWebBrowser */ = { - isa = PBXGroup; - children = ( - EC7760EDDE1FFE5D4A997F31568FBFC8 /* EXWebBrowser.h */, - A91491FAF438D00E7F888ECAB6E83C41 /* EXWebBrowser.m */, - D5EB1660BD5586CCE4E7C13914F966A4 /* Pod */, - D1BF99C3954B1F08F3ED04754CE8138D /* Support Files */, + 47679C92B0F5F5D2E31EB99308F97D6A /* EXWebBrowser.h */, + C825FBB26BF52BDEC26C94B66C3A232F /* EXWebBrowser.m */, + 3998515F72BDC702245E3F87D0D1784A /* Pod */, + B9E4A1B58A2444B56D8092C3F799872B /* Support Files */, ); name = EXWebBrowser; path = "../../node_modules/expo-web-browser/ios"; sourceTree = ""; }; - 4FA0479CD41A6BF8A1184C0E5709E85E /* UMModuleRegistryAdapter */ = { + 4F358EDF34118A226B4945D517A5B539 /* Support Files */ = { isa = PBXGroup; children = ( - 644B8070975A8EC1C5728C413E649649 /* UMModuleRegistryAdapter.h */, - D091FC0DC178A789854D3E0FB04C0E1D /* UMModuleRegistryAdapter.m */, - 719620B440542499A489DC3961BC5624 /* UMViewManagerAdapterClassesRegistry.h */, - 15031C15CF029161D4506B5E7E21353B /* UMViewManagerAdapterClassesRegistry.m */, + AE09BA641F8ED1137702F7F40B0C0599 /* UMReactNativeAdapter.xcconfig */, + D9CDB7FF6CC72986A7254EFF8F2BDA82 /* UMReactNativeAdapter-dummy.m */, + 7D58DD13F3EA3222D526DA8129870F91 /* UMReactNativeAdapter-prefix.pch */, ); - name = UMModuleRegistryAdapter; - path = UMReactNativeAdapter/UMModuleRegistryAdapter; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; sourceTree = ""; }; 4FC37C41F11924A2602F786314152701 /* Pods */ = { @@ -3462,147 +3413,73 @@ name = Pods; sourceTree = ""; }; - 5103D41C619C82576399CDA45B0D7278 /* RCTLinkingIOS */ = { + 508AFDE6C5D8629BCCCF8CFB4EC0CFF5 /* UMCore */ = { isa = PBXGroup; children = ( - 3164541512A74A6C36FE0E452457B729 /* RCTLinkingManager.h */, - A669967D2CA60BA9BC08F7CF42A9A42E /* RCTLinkingManager.m */, + E03350B4705FAFC774241C0C6485A6CA /* UMAppDelegateWrapper.h */, + 1F1FEB9D9D8CE14E47D73F5BAC2F1100 /* UMAppDelegateWrapper.m */, + 4C882770B6489F41E8DDA4A264637E63 /* UMDefines.h */, + 31E8C0EC908EFBF797BDA3886C3D1853 /* UMExportedModule.h */, + C373CDF42DA75FFD29673936B59DC087 /* UMExportedModule.m */, + 187D3D26A1DF6B91C30D7D04B26929B4 /* UMSingletonModule.h */, + DEE1BC36C294C18EFC1DE73F43BF249E /* UMSingletonModule.m */, + 7281FAA6FD69716BD70ACDBA76979CC5 /* UMUtilities.h */, + C9E8F4D02ECAE0FB2CCEEBF0584A0134 /* UMUtilities.m */, + A2E1C4596B2844D85C1A419158DE60A9 /* UMViewManager.h */, + 13243D74EF6D6BC75B6F08F9AEF59271 /* UMViewManager.m */, + A0ABD0735505B41D2ED7FC4111729F3F /* Pod */, + 1E3E35A442B071F02B73B42F416C1758 /* Protocols */, + 6CC344AE349D89E9A8E9B58E34BDE78E /* Services */, + 04A5CC24BAF8038CA3B3428230E7D27D /* Support Files */, + C934109E4A86A42717AFE8D0E23252B7 /* UMModuleRegistry */, + E76F64E3B5ECD02D4B11D8F35C6126B2 /* UMModuleRegistryProvider */, ); - name = RCTLinkingIOS; + name = UMCore; + path = "../../node_modules/@unimodules/core/ios"; sourceTree = ""; }; - 526235F6F73D6397B233B1E05BF470CE /* Nodes */ = { + 5147FD81FC68A03B5C6A1D125BE1A852 /* Pod */ = { isa = PBXGroup; children = ( - 29E42B62E6117792DF8538BA81253543 /* RCTAdditionAnimatedNode.h */, - 35B9D3015A49B28B06AEE52D3B040E49 /* RCTAdditionAnimatedNode.m */, - 9320639DBF66C7A4F9A95D5E7EF6A15C /* RCTAnimatedNode.h */, - 4630B099272C8A542301107350E67A58 /* RCTAnimatedNode.m */, - E5AF5A4E4227842092EA1B23C6F65777 /* RCTDiffClampAnimatedNode.h */, - 8FFAC4AF38C8A0BD3B3B17D0AFEDDAF7 /* RCTDiffClampAnimatedNode.m */, - 44691A60863DD085C3A58A3869A0C3DD /* RCTDivisionAnimatedNode.h */, - 66D468D25C379F2DAAE84C36DD3C92DF /* RCTDivisionAnimatedNode.m */, - 2FE57F309FA13B2F3B7CAEF937808C5D /* RCTInterpolationAnimatedNode.h */, - A3732000F33F05A1A9FF0B683B345A2C /* RCTInterpolationAnimatedNode.m */, - 1A62398A2206EB142DB7A152C43C9B45 /* RCTModuloAnimatedNode.h */, - DA7FC77512F2A26FABE40AC7EB1F5AE2 /* RCTModuloAnimatedNode.m */, - 0B15B0DBE1D2A6B6A5B80B6908D5EB2A /* RCTMultiplicationAnimatedNode.h */, - A0D13ABC6FA35BCF07229C6BD1700504 /* RCTMultiplicationAnimatedNode.m */, - 4CB6EEB39A353AA946FC87D2985983B6 /* RCTPropsAnimatedNode.h */, - 9A51ABA5FA3A1DD573D8E0FDA96D7A03 /* RCTPropsAnimatedNode.m */, - 7E34A01EB0FF8CC842AFD9C2A69D5C14 /* RCTStyleAnimatedNode.h */, - AE3AFCAB779E65DE1C0D1D0A6EE4B906 /* RCTStyleAnimatedNode.m */, - 9C2549652CAD57CE9E1855A7DFA489CA /* RCTSubtractionAnimatedNode.h */, - 6615E7135BC4A72015D8686CFE37B532 /* RCTSubtractionAnimatedNode.m */, - 4AD8FB7177D8DE7C69E787CB57537375 /* RCTTrackingAnimatedNode.h */, - FE9822EB92F311180184448BB2931DA0 /* RCTTrackingAnimatedNode.m */, - A99F01DC131BBFFB749892ED5BFC33F0 /* RCTTransformAnimatedNode.h */, - 7672A360676DF4A69D80F386BD4BB1F1 /* RCTTransformAnimatedNode.m */, - DF7E534DA70F7D25A1C5F3F342DA8298 /* RCTValueAnimatedNode.h */, - D0567417292A638AD0DB6E089A1E8D50 /* RCTValueAnimatedNode.m */, - ); - name = Nodes; - path = Libraries/NativeAnimation/Nodes; - sourceTree = ""; - }; - 5413EEB20184873168EEE17C8F17446B /* Support Files */ = { - isa = PBXGroup; - children = ( - D18AB02E7921511273F4D30052D6EC4F /* EXAppLoaderProvider.xcconfig */, - F19FED734B7F70EF9D3B42F74FC53593 /* EXAppLoaderProvider-dummy.m */, - 664B13A2174456B32369166818924A83 /* EXAppLoaderProvider-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXAppLoaderProvider"; - sourceTree = ""; - }; - 55CC26909FC910D81969F483A7B393AB /* UMModuleRegistryProvider */ = { - isa = PBXGroup; - children = ( - 25A0F9F90A3E5DDE34E9890D15D5526C /* UMModuleRegistryProvider.h */, - 7390A2839A58F47E1409F2F64EC23343 /* UMModuleRegistryProvider.m */, - ); - name = UMModuleRegistryProvider; - path = UMCore/UMModuleRegistryProvider; - sourceTree = ""; - }; - 55F9A6750B1C64156E7EA7A071C2AFF6 /* Pod */ = { - isa = PBXGroup; - children = ( - 5FFD66EEE5F4E4D47ED600FC76F243EC /* UMTaskManagerInterface.podspec */, + E8A48C532D0023B32954C3B641ACE8AA /* UMImageLoaderInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 56BACE846B809BA7881491D444E92637 /* RNImageCropPicker */ = { + 518DA57E6244492233F69F87762CBE43 /* Support Files */ = { isa = PBXGroup; children = ( - 40F491DE7356E729E0D9AF02081FC86F /* Compression.h */, - B585FC3B46C2A9C5A7EB9D064D04C6D3 /* Compression.m */, - 7FBD23568439E0E29E57861B14354FC8 /* ImageCropPicker.h */, - 92D60C9A1D764AC5556CD4FE75BDE516 /* ImageCropPicker.m */, - 6F7BD618CB825D89B530EBB0353AD3C2 /* UIImage+Resize.h */, - DB8640EAE58E53A6A3E0560871246FD1 /* UIImage+Resize.m */, - ED8658F89627744385F385E6090E1FCB /* Pod */, - 8C1E818497CBCF3EEAAF668E08B32BC3 /* Support Files */, + B9DE0B233D160C30C9101E44C119C4AE /* UMConstantsInterface.xcconfig */, ); - name = RNImageCropPicker; - path = "../../node_modules/react-native-image-crop-picker"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; sourceTree = ""; }; - 592403AFC332B365A85F9C120C3BE0BC /* UMReactNativeAdapter */ = { + 53EF5C4F7F5A6424F169F03AB87C896F /* Pod */ = { isa = PBXGroup; children = ( - DFA81843A3BEA6B23C67E5DB7105587C /* UMBridgeModule.h */, - 8D32A7DC36601ABAEB1DF250FB102D82 /* Pod */, - 00D368387A8C1D15002ECB23A14A5A15 /* Services */, - E7EEEF5C3CA7566E17B960E4B2A0AC7A /* Support Files */, - 4FA0479CD41A6BF8A1184C0E5709E85E /* UMModuleRegistryAdapter */, - 6307702DC79C4D8C447B6216CE276DC7 /* UMNativeModulesProxy */, - 0B513FFF05B7C3B5D793F4A3E5F28746 /* UMViewManagerAdapter */, + 90F8437F9F068DF93E89BC04F19F8D50 /* EXAppLoaderProvider.podspec */, ); - name = UMReactNativeAdapter; - path = "../../node_modules/@unimodules/react-native-adapter/ios"; + name = Pod; sourceTree = ""; }; - 599761F9D3F1775698117FCEDE078B60 /* RCTAnimation */ = { + 55ABA2EF78F4C8FF2A4C3645C2AC3BA0 /* Support Files */ = { isa = PBXGroup; children = ( - 844F4F9F3FCA8EF0A3EE74E17134B583 /* RCTAnimationUtils.h */, - 11C3FB4E8461683342BB4593A5973637 /* RCTAnimationUtils.m */, - 83CD24F2191E8ECB2A9FD195CFFD6675 /* RCTNativeAnimatedModule.h */, - F06A6B347E77E02FC7100912F113A8F5 /* RCTNativeAnimatedModule.m */, - E9BA005EF2AF79AB01B13FAD08D67BD3 /* RCTNativeAnimatedNodesManager.h */, - 0A1D2789F07DB8D1B825B05FFB02D748 /* RCTNativeAnimatedNodesManager.m */, - 013AB9A5B03CDA59B94ED5102F787080 /* Drivers */, - 526235F6F73D6397B233B1E05BF470CE /* Nodes */, + D3519DE89E7F19767A213677FEDFE521 /* UMFaceDetectorInterface.xcconfig */, ); - name = RCTAnimation; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; sourceTree = ""; }; - 5A57BDA94DA16837799DDCB3D27BA385 /* UMCore */ = { + 57ADC4FCFC7344E7654957006F19488B /* Pod */ = { isa = PBXGroup; children = ( - A3B91D71C81CFC90F2C88329C2F9651E /* UMAppDelegateWrapper.h */, - AED47D832918D2F773C361B9E879A300 /* UMAppDelegateWrapper.m */, - C2D3B7DED338E55758B9F436B947D81E /* UMDefines.h */, - EE2AA20E2AD02717CF275C0E9189A190 /* UMExportedModule.h */, - B8E994B916AF07EF75492360279D04F2 /* UMExportedModule.m */, - A2744645ED45801821011A274A1DC1DA /* UMSingletonModule.h */, - 4DAC47E18182F546764D55FB581B0E3A /* UMSingletonModule.m */, - D32A10C7B12C103D25936C5D0DD6A572 /* UMUtilities.h */, - 22341E1A85056C1D8783FB8D8ACBB465 /* UMUtilities.m */, - FBC67C179159BA8ADB22BCBB9B85044A /* UMViewManager.h */, - 09B09B5FBD61C8C125354C95730CDFE5 /* UMViewManager.m */, - EAA73A773C5B38052F310F52E3542E49 /* Pod */, - C23AF1F608F25E3FF02D62AB5247E4DB /* Protocols */, - B0BDD7191DFAFE36292304CC1E133CFE /* Services */, - 112CC815B8781868F54A85A7EFD666BF /* Support Files */, - DF2C96FD98A73227D68CFBF45BBCBACF /* UMModuleRegistry */, - 55CC26909FC910D81969F483A7B393AB /* UMModuleRegistryProvider */, + 9D6AF617967301474306D59F46F79043 /* LICENSE */, + 06241C01929B9026FED68E9485779462 /* README.md */, + 3468D3CF3DE579609CF5FF5D74192C82 /* RNScreens.podspec */, ); - name = UMCore; - path = "../../node_modules/@unimodules/core/ios"; + name = Pod; sourceTree = ""; }; 5AEF3ADCEFFED332FBD4A8B103D40EF0 /* ISASwizzler */ = { @@ -3616,37 +3493,39 @@ name = ISASwizzler; sourceTree = ""; }; - 5B6B22AB71FB9E81A81EB73500A2A297 /* react-native-orientation-locker */ = { + 5CAEDC77F60B04395341EE6CD932FE4F /* RCTSettings */ = { isa = PBXGroup; children = ( - 95B9C1724712F4D696EC9FFF6631614A /* Orientation.h */, - 101999AB5B0B97C082C2CECED8DBC351 /* Orientation.m */, - 4DB3D35DF27513A2C9D7CDE6B51559AF /* Pod */, - C24481A6A7FDFE0AA176E689323067A1 /* Support Files */, + 97AB70E3B44C9BE06DC2CD3D71E86CE4 /* RCTSettingsManager.h */, + 11F85A8D21A3D7364709DB6ED9DB8772 /* RCTSettingsManager.m */, ); - name = "react-native-orientation-locker"; - path = "../../node_modules/react-native-orientation-locker"; + name = RCTSettings; sourceTree = ""; }; - 5D08953D2BE3C5FC2B0444C12AA989A0 /* VirtualText */ = { + 5DAC432E7E5C8AE7752D54D4081ACF57 /* Singleline */ = { isa = PBXGroup; children = ( - E688205EE80F41B054CF8EAE8AA1FB05 /* RCTVirtualTextShadowView.h */, - BA3154EDFE32E9FF3353E8A9F4EE2EFB /* RCTVirtualTextShadowView.m */, - 8719FD94393531927727AFA217E6FE21 /* RCTVirtualTextViewManager.h */, - 492D150470B7B9BFC76815724CAB0117 /* RCTVirtualTextViewManager.m */, + 294AE222FE5CB939AEEAC059ECB44BCB /* RCTSinglelineTextInputView.h */, + 60547AF384599EAA7C2E59C9B51F7F3B /* RCTSinglelineTextInputView.m */, + A9FEC3A25DB749F6BB553ECC5A23C6F9 /* RCTSinglelineTextInputViewManager.h */, + AA03DFB583E0E86165155ABA7697AEB2 /* RCTSinglelineTextInputViewManager.m */, + 246D949DB5C54A218B07C3EE0A3987BC /* RCTUITextField.h */, + 050A2CFC6D93A203543D85A023DEDF15 /* RCTUITextField.m */, ); - name = VirtualText; - path = Libraries/Text/VirtualText; + name = Singleline; + path = Singleline; sourceTree = ""; }; - 5FA7EC37E285E859F3AD0B6D4085F33F /* Support Files */ = { + 5FD9AE6F1944513FA216B52332A1F333 /* RawText */ = { isa = PBXGroup; children = ( - 7C8B34B29318280733B2371775740F57 /* UMCameraInterface.xcconfig */, + 0D789CD9CDC30CB084886656E48FD355 /* RCTRawTextShadowView.h */, + 3B97C33BDF5DF45BEB0887981BE8ADBF /* RCTRawTextShadowView.m */, + 05D524384ECD3F628C37BEFC944816F1 /* RCTRawTextViewManager.h */, + 507B68B6E3402AC69C141A7D89CADA28 /* RCTRawTextViewManager.m */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; + name = RawText; + path = Libraries/Text/RawText; sourceTree = ""; }; 6063987EB40204B4B3CF5FB8995D3747 /* Support Files */ = { @@ -3660,33 +3539,36 @@ path = "../Target Support Files/GoogleUtilities"; sourceTree = ""; }; - 61874DC15BB714694F2E11769444405C /* Pod */ = { + 60D87CFEC8BDE6C8C4CA516971A3C71B /* Support Files */ = { isa = PBXGroup; children = ( - 106A09E038872D5A4CF3B62354938016 /* LICENSE */, - 1F8137A575D9D15673727058E4451144 /* react-native-splash-screen.podspec */, - 5231D40564492B22E0B31B0B5D09D4BF /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 6307702DC79C4D8C447B6216CE276DC7 /* UMNativeModulesProxy */ = { - isa = PBXGroup; - children = ( - FE5FAD27C99A05130348D63CBE4E2FF8 /* UMNativeModulesProxy.h */, - 46AE38EDAFE73BA35172D49E51DFE2EE /* UMNativeModulesProxy.m */, - ); - name = UMNativeModulesProxy; - path = UMReactNativeAdapter/UMNativeModulesProxy; - sourceTree = ""; - }; - 637C9FBB4F546D5E50D93843856E8B0A /* Support Files */ = { - isa = PBXGroup; - children = ( - 1A1DF9375FDDEFBAF5377E9ECE4D6AE3 /* UMFileSystemInterface.xcconfig */, + 67643D95661EE7789DBB54FF7DEFF786 /* UMImageLoaderInterface.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; + path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; + sourceTree = ""; + }; + 618A950B6D822B0010FB66BF5CCB4F6F /* Support Files */ = { + isa = PBXGroup; + children = ( + A7D69B23843A520CE859D3F1E5CCA891 /* RNDeviceInfo.xcconfig */, + B8DEEC8ED6085B5E1A67FC82B28BCEB7 /* RNDeviceInfo-dummy.m */, + 377AFF7BEF5DCE70D2AFB9E7EB26233B /* RNDeviceInfo-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; + sourceTree = ""; + }; + 63D9C85E54C8634B7E1DE67C1D31F6FE /* VirtualText */ = { + isa = PBXGroup; + children = ( + FE1497394015DF2361E34B1C87933310 /* RCTVirtualTextShadowView.h */, + 7AD097DA253BA72F631A01CE208E06A7 /* RCTVirtualTextShadowView.m */, + 62E8A6986FAF6E69D8F241F8627E1776 /* RCTVirtualTextViewManager.h */, + 8D8600BC97E78BE3FC51AFCEE58FA711 /* RCTVirtualTextViewManager.m */, + ); + name = VirtualText; + path = Libraries/Text/VirtualText; sourceTree = ""; }; 641A583F5B6C8CDDF7A7C7DD4F43439C /* Support Files */ = { @@ -3716,53 +3598,25 @@ name = "Targets Support Files"; sourceTree = ""; }; - 655F92D40793686DCF24A3263A29A6C1 /* SurfaceHostingView */ = { + 66151BD0A62BE1724884B5F75300EECD /* Pod */ = { isa = PBXGroup; children = ( - DB992E4069A3538CD40DB21A98239288 /* RCTSurfaceHostingProxyRootView.h */, - 18CA73D76E21469621ACD465B305CFAB /* RCTSurfaceHostingProxyRootView.mm */, - 7A98D01E5188917281A2952FA5939600 /* RCTSurfaceHostingView.h */, - FB39F79B2539A2F187167F660B527BA4 /* RCTSurfaceHostingView.mm */, - E9D02081C8183D588ABAD1445E7243B6 /* RCTSurfaceSizeMeasureMode.h */, - 2616A3515F06B81FCDD6F4617FD35434 /* RCTSurfaceSizeMeasureMode.mm */, + B9572C2979AFDBD9CD06F45C8D1C58EA /* LICENSE */, + BF3519EB8E3EF95A4DDE8A740EC40184 /* README.md */, + 83B367550F196A0B6B27C4F25D7B2EFE /* RNDeviceInfo.podspec */, ); - name = SurfaceHostingView; - path = SurfaceHostingView; + name = Pod; sourceTree = ""; }; - 660C9CE69E9A7741061E62151418797E /* Support Files */ = { + 66B806474DBB5648744936EF13E6FE6A /* Support Files */ = { isa = PBXGroup; children = ( - FCA3B7DE3489D7501DCEDA245AC76814 /* UMFaceDetectorInterface.xcconfig */, + 142CB6889137AD1D63305C54BE7423A6 /* EXFileSystem.xcconfig */, + 8EABC8F04B4EDDC509BABF347C2746B3 /* EXFileSystem-dummy.m */, + 1CA4D967364DEFE5CE86F2A4BDF0C7CA /* EXFileSystem-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; - sourceTree = ""; - }; - 6830FE7F6DB1ABC8089C9E3054824D27 /* Pod */ = { - isa = PBXGroup; - children = ( - 1DFBA6529292C16DE1B06A471F9D838F /* EXConstants.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 6833933C5481990ECD4F856BD9D07C66 /* Pod */ = { - isa = PBXGroup; - children = ( - B16C433E705B12C6B5D282E83BADB611 /* LICENSE */, - 75B2468E57DE1576DBB76888FBB32D00 /* README.md */, - 3E9709F1200504327E02AE4748F821BA /* RNScreens.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 694D05EC5765733522B1FB48CCC31914 /* Pod */ = { - isa = PBXGroup; - children = ( - 7DFD61B07FB0C0ECC22F0CE080419D5E /* UMPermissionsInterface.podspec */, - ); - name = Pod; + path = "../../../ios/Pods/Target Support Files/EXFileSystem"; sourceTree = ""; }; 695F14F5C911ACECC1375EA56E53BEA8 /* Support Files */ = { @@ -3776,20 +3630,31 @@ path = "../Target Support Files/GTMSessionFetcher"; sourceTree = ""; }; - 6F18C52F231115E4C078A522DD7ED7AB /* Text */ = { + 6A84FE72ECD8CF6804B41292A4E3136B /* Support Files */ = { isa = PBXGroup; children = ( - AFB51E7098C45ABAD93552421D9BB160 /* NSTextStorage+FontScaling.h */, - FE1F854F46DE562643AD887EE0B62141 /* NSTextStorage+FontScaling.m */, - 16F4D878C41562F6FE5E27FDCDCBDD61 /* RCTTextShadowView.h */, - 24CBFB2D41618C9C0A2AB1AA3414631A /* RCTTextShadowView.m */, - B579D48C0EE945BEEA54C2CE07C4A56E /* RCTTextView.h */, - 1AA3B4A51136424450E912DAFD6D14BB /* RCTTextView.m */, - 49249F2DD87E156CFF1A500EB1C3DFB9 /* RCTTextViewManager.h */, - 8B6AD54359D409E00B14A790A8F88D0B /* RCTTextViewManager.m */, + 97C6B5A9CAB3A8AF7998D35A0DD44304 /* UMCameraInterface.xcconfig */, ); - name = Text; - path = Libraries/Text/Text; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; + sourceTree = ""; + }; + 6CB0A63B1979B934649355FBA7BC1448 /* Pod */ = { + isa = PBXGroup; + children = ( + 297182A6C3BD5BEEA15D0C351433F887 /* UMFileSystemInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 6CC344AE349D89E9A8E9B58E34BDE78E /* Services */ = { + isa = PBXGroup; + children = ( + 468BF3F19D013D01FB56A0501BACE6EC /* UMLogManager.h */, + 8BDADE3A53B6523295101E9F6C76F54A /* UMLogManager.m */, + ); + name = Services; + path = UMCore/Services; sourceTree = ""; }; 70762B0582BC2A467644A69BD840DA98 /* Support Files */ = { @@ -3812,68 +3677,23 @@ path = "../Target Support Files/boost-for-react-native"; sourceTree = ""; }; - 71E7D1BE40ABBB36B144ABC8BA259408 /* RCTText */ = { + 744100A7293596674013E5D3AE0E186F /* Pod */ = { isa = PBXGroup; children = ( - 41318E5B3E2A6EC45F2D30ED504BBAFF /* RCTConvert+Text.h */, - C2EFB75926104A64215B07916566A16A /* RCTConvert+Text.m */, - 7045EF4107FC6307B0EB65D560F2D999 /* RCTTextAttributes.h */, - 7E25990BD87BD19464713B59AAF32C4D /* RCTTextAttributes.m */, - 79EDC0716AF95A7B2E6F9C4E4EDA0091 /* RCTTextTransform.h */, - 776EB07AE7628965E25B17F27233526B /* BaseText */, - 3330BC5F602052F04CB4799225B16D86 /* RawText */, - 6F18C52F231115E4C078A522DD7ED7AB /* Text */, - A72CC7EF08393E91344251BCAB0F59E4 /* TextInput */, - 5D08953D2BE3C5FC2B0444C12AA989A0 /* VirtualText */, + D8B34466404B540871E8CC5A4A8C0EAF /* EXPermissions.podspec */, ); - name = RCTText; + name = Pod; sourceTree = ""; }; - 736333244F251E64CB82F64763E96953 /* SafeAreaView */ = { + 74602873B166B0334F2A864443FB4616 /* RCTBlob */ = { isa = PBXGroup; children = ( - EAE2B9CE3ACF488B76C8DF898CB7181A /* RCTSafeAreaShadowView.h */, - 06CC53E57BE8A13B80BE979DE3A011E8 /* RCTSafeAreaShadowView.m */, - A09815B59BA09B1C34E21A2E0D2A9820 /* RCTSafeAreaView.h */, - 49653EDAA07F0D6DDA44E051A49DC22E /* RCTSafeAreaView.m */, - 36BA7AEC472A0D2C7B0309876AF31C61 /* RCTSafeAreaViewLocalData.h */, - D19ABB6CAE9A8F8290C81743D8053264 /* RCTSafeAreaViewLocalData.m */, - C592C9FF540D597E18234D671B57DB5E /* RCTSafeAreaViewManager.h */, - 142F5F316A3BB25D592ACA36BD04EA7F /* RCTSafeAreaViewManager.m */, + 19D065C043070FDDC424555B13416C1E /* RCTBlobManager.h */, + A076E8715923626C6ECD039A5BDE355F /* RCTBlobManager.mm */, + E14D1E6E42CBB3698E28115000B15E9A /* RCTFileReaderModule.h */, + 1E350EC63715886DDA8B7E1C44E7B8EF /* RCTFileReaderModule.m */, ); - name = SafeAreaView; - path = SafeAreaView; - sourceTree = ""; - }; - 744CAAA030CF7B006DAD5E3E9C14334B /* RCTImage */ = { - isa = PBXGroup; - children = ( - 0BE3A9AC869BD34276885AB251FFFAAD /* RCTGIFImageDecoder.h */, - F7D787923A96982D17CA3854AC467D08 /* RCTGIFImageDecoder.m */, - ACF00ACADA020E403094D2CBCDE00228 /* RCTImageBlurUtils.h */, - 60B8A0AF195DFE943EC99E7FDAF038E3 /* RCTImageBlurUtils.m */, - 0AA4F4EF7880396B7795252B85D76EC1 /* RCTImageCache.h */, - CE9DC205752428EF97A38F142A7472DF /* RCTImageCache.m */, - 1FEE3004DA1EC64F861AF70CE5B85133 /* RCTImageEditingManager.h */, - 57591A2885B9DF3BF84E508282B06FEB /* RCTImageEditingManager.m */, - 221631FE87875AF1D9F03FB7DFE360C0 /* RCTImageLoader.h */, - F3324C9CA8A965D5CAF518FD9E74F521 /* RCTImageLoader.m */, - 91F21CB2986AFBBD624267A90980FFE6 /* RCTImageShadowView.h */, - 229BFBC743748D3B9E5C05105A98E940 /* RCTImageShadowView.m */, - 4A6386EB0C0045D507F5A27AEC94990E /* RCTImageStoreManager.h */, - 7EF7238A5B5BD89D50B59A08044893F7 /* RCTImageStoreManager.m */, - 2EE3906E3E4A34744C10AEF315841AE8 /* RCTImageUtils.h */, - EDE4B7C2078BC233706D256EAEE56894 /* RCTImageUtils.m */, - D2F65C16880118D5817D531C5F59249D /* RCTImageView.h */, - 330446C56219358695AF9ADFE1B0B7AB /* RCTImageView.m */, - BFAD0159DB9D36768F97CC7B1E707D4D /* RCTImageViewManager.h */, - 8E18C78E0BBC2400588C67C00BCED6FE /* RCTImageViewManager.m */, - 24A40930861F91D04D07E965DA09C8DE /* RCTLocalAssetImageLoader.h */, - 4CE60965BF57FA9ED769A3ED2AF8B830 /* RCTLocalAssetImageLoader.m */, - D7538757A173613724A4E5F1512E3DFA /* RCTResizeMode.h */, - 7E19C3A9AF197AD3A4468250EF673652 /* RCTResizeMode.m */, - ); - name = RCTImage; + name = RCTBlob; sourceTree = ""; }; 762603A95890769E48FE92655C29EAB8 /* Logger */ = { @@ -3885,40 +3705,15 @@ name = Logger; sourceTree = ""; }; - 76D9B15AFCC98BBE9EC88EB3872C4B9B /* UMTaskManagerInterface */ = { + 76661E1BC8138031D19D50D80F82CFE2 /* UMImageLoaderInterface */ = { isa = PBXGroup; children = ( - AB112D69C1BAE6F9143CF98D9832900A /* UMTaskConsumerInterface.h */, - B5E621ECF8B059E01518FBD2B39957BA /* UMTaskInterface.h */, - 95FA905DA365683DD0401CB39D62CC99 /* UMTaskLaunchReason.h */, - E6DD22A7C6B3799209750A958CD46643 /* UMTaskManagerInterface.h */, - BB509EBBD50F9EB3C2F7652388C2C529 /* UMTaskServiceInterface.h */, - 55F9A6750B1C64156E7EA7A071C2AFF6 /* Pod */, - D254C9E6AD25E87514BE695378DA115D /* Support Files */, + 590380F8439C130BE22AA6FF5085D9B2 /* UMImageLoaderInterface.h */, + 5147FD81FC68A03B5C6A1D125BE1A852 /* Pod */, + 60D87CFEC8BDE6C8C4CA516971A3C71B /* Support Files */, ); - name = UMTaskManagerInterface; - path = "../../node_modules/unimodules-task-manager-interface/ios"; - sourceTree = ""; - }; - 776EB07AE7628965E25B17F27233526B /* BaseText */ = { - isa = PBXGroup; - children = ( - DBF6AFBBE215DF5D53B8D06C5BB94E8A /* RCTBaseTextShadowView.h */, - 5EEAF878FE2BB3CE870F58642F2C467E /* RCTBaseTextShadowView.m */, - 823124DA0A461CE6E6A80D43D569B33B /* RCTBaseTextViewManager.h */, - D1760CEE7C77B8C39F3F304E5FCEE9A8 /* RCTBaseTextViewManager.m */, - ); - name = BaseText; - path = Libraries/Text/BaseText; - sourceTree = ""; - }; - 78C84490324C09054E49CCB2AABF0667 /* Support Files */ = { - isa = PBXGroup; - children = ( - 298CF0BB5A9BCEA1C7031D9A6BFB3BB0 /* UMPermissionsInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; + name = UMImageLoaderInterface; + path = "../../node_modules/unimodules-image-loader-interface/ios"; sourceTree = ""; }; 79991E90489B1D05DCEA2BC5B32DC5F3 /* Crashlytics */ = { @@ -3946,15 +3741,24 @@ name = CoreOnly; sourceTree = ""; }; - 7BBF6A54568C695AD98AE3B4D01505FC /* Support Files */ = { + 7B230D82D2527F9E41445357462B5DE3 /* EXFileSystem */ = { isa = PBXGroup; children = ( - 679D8A3887AC24280B378D77CE3663E4 /* EXFileSystem.xcconfig */, - 4DDA20DA47F3BB66E5B5973EB2E7677F /* EXFileSystem-dummy.m */, - FF10121D5CA92E81241B41C540E4B081 /* EXFileSystem-prefix.pch */, + BE738C73C4E529A5A1912D55691171DC /* EXDownloadDelegate.h */, + A25BBEEEE5767AA6FA233E50DEC4E3AE /* EXDownloadDelegate.m */, + C236DFB790202119E3C3AEF84324195D /* EXFilePermissionModule.h */, + 708A9E814F51ADA37EBDC6577B83D496 /* EXFilePermissionModule.m */, + 0C747CB7B27F13309836226E4FD6D254 /* EXFileSystem.h */, + 6715E712DD4EFF48C397F6EB221323F1 /* EXFileSystem.m */, + 02C98E82A21DD2A618432C9DEE7A9807 /* EXFileSystemAssetLibraryHandler.h */, + 71B6E007CFC596FCA8917CB6E0E005A2 /* EXFileSystemAssetLibraryHandler.m */, + E300540F6845ABF97AD2DE0C032B9F00 /* EXFileSystemLocalFileHandler.h */, + 103574EE79ABBE811AEB17950476C49E /* EXFileSystemLocalFileHandler.m */, + D0029FB6AA13C305A4B0543872B794A5 /* Pod */, + 66B806474DBB5648744936EF13E6FE6A /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXFileSystem"; + name = EXFileSystem; + path = "../../node_modules/expo-file-system/ios"; sourceTree = ""; }; 7C48559015DEF4F593759881A93D9E1F /* glog */ = { @@ -3978,26 +3782,6 @@ path = glog; sourceTree = ""; }; - 7D1976D5BA0ACBB12F8D438CF2B157FF /* EXFileSystem */ = { - isa = PBXGroup; - children = ( - 8F8C219D933CA4CBC47579FC89A782DD /* EXDownloadDelegate.h */, - 65037438147F52283E3C971FB2D6FB2B /* EXDownloadDelegate.m */, - 8CD738B15E547075EE757C406514C161 /* EXFilePermissionModule.h */, - 135B6280929F88140BDF70F232AD99E0 /* EXFilePermissionModule.m */, - 6C38D0ACCB62EC24B6C136B2BA7C082C /* EXFileSystem.h */, - 50C51F300E268E186AE672D4AC42FC22 /* EXFileSystem.m */, - C88386675428D169FA0E1D4B4DA5968C /* EXFileSystemAssetLibraryHandler.h */, - C394ABE10CBA02A7EF470C2919892313 /* EXFileSystemAssetLibraryHandler.m */, - F9DD3EEBCC666ACAE9D7750C0901BB89 /* EXFileSystemLocalFileHandler.h */, - 8912ACB78DA0AEB7F2A25A5FF3B2F359 /* EXFileSystemLocalFileHandler.m */, - C76CD146762370858BB354569B8CFC5C /* Pod */, - 7BBF6A54568C695AD98AE3B4D01505FC /* Support Files */, - ); - name = EXFileSystem; - path = "../../node_modules/expo-file-system/ios"; - sourceTree = ""; - }; 7D97861288D65B04CFD2336E0071DF8D /* Support Files */ = { isa = PBXGroup; children = ( @@ -4015,6 +3799,14 @@ name = Frameworks; sourceTree = ""; }; + 800C7C580C4F6E2DEFFB4C50186541C4 /* Pod */ = { + isa = PBXGroup; + children = ( + 892B9CD160736754C0D4E3D6C4A0A5A3 /* EXConstants.podspec */, + ); + name = Pod; + sourceTree = ""; + }; 80610257BEB9BD53AF7E018B27B780C8 /* Support Files */ = { isa = PBXGroup; children = ( @@ -4024,6 +3816,18 @@ path = "../Target Support Files/GoogleAppMeasurement"; sourceTree = ""; }; + 819B070954DDB2BF7E9DDED2E48248D0 /* UMModuleRegistryAdapter */ = { + isa = PBXGroup; + children = ( + EC099F1FF656258700287FB2F0D597B4 /* UMModuleRegistryAdapter.h */, + 56E22C479E2A34E95DEE6C2FB1082AC9 /* UMModuleRegistryAdapter.m */, + B74D29A2F898D94C5350EBC0366E0678 /* UMViewManagerAdapterClassesRegistry.h */, + B0D80A09526F93F0253E69A63F1B130A /* UMViewManagerAdapterClassesRegistry.m */, + ); + name = UMModuleRegistryAdapter; + path = UMReactNativeAdapter/UMModuleRegistryAdapter; + sourceTree = ""; + }; 81D36261BF12B9A295B9BE0E0DDB0E4B /* Support Files */ = { isa = PBXGroup; children = ( @@ -4046,86 +3850,6 @@ path = "../Target Support Files/RSKImageCropper"; sourceTree = ""; }; - 84FD1CD5B115436453649A88BB45EA3C /* Base */ = { - isa = PBXGroup; - children = ( - 6DCF827321A9CF428B2DA24B9EF3F1D4 /* RCTAssert.h */, - 92F51FAF3DAA893D97008B1519766EBF /* RCTAssert.m */, - ED308A146ED5C815F780A1D6E885A74B /* RCTBridge.h */, - C204730DEB359F5F23C873DEFD5D43CE /* RCTBridge.m */, - 95B0B69CF44E736FADE352E2C83F83E5 /* RCTBridge+Private.h */, - 0AEC452B11EF25C76D8B1AF0F51AF7F2 /* RCTBridgeDelegate.h */, - 6A3E8DD786A499123938CD5362324D0B /* RCTBridgeMethod.h */, - E6AAFDEBB2B88135928F52472DA89EE1 /* RCTBridgeModule.h */, - FCB3B8C6344E501B1F1CBA0AC8159046 /* RCTBundleURLProvider.h */, - B573E91884D5507BED7C23AC1CC19887 /* RCTBundleURLProvider.m */, - 436BE176273403B9F7F1EEC192994EC7 /* RCTConvert.h */, - 8E3131FF1D3501DBE8B7EDCAABC26790 /* RCTConvert.m */, - 07A03BA74EA93A92BDD529BD335DD282 /* RCTCxxConvert.h */, - 2E5027ABB31DBCCE317DFCC78BCC525C /* RCTCxxConvert.m */, - D7D3691C1B950432B4BDCFA3C891B2F6 /* RCTDefines.h */, - 2B4795352536FDDDDF443E8FCAFEA19D /* RCTDisplayLink.h */, - 4F1637E70CB4A879E3E5D2C2F9C2151E /* RCTDisplayLink.m */, - E8660AE5163CFDD5D66BB2010CB804D7 /* RCTErrorCustomizer.h */, - AAD39DB75AF5AB98E246EF83DCC1AE18 /* RCTErrorInfo.h */, - 287749933CFC413BDC4316426BE95DDD /* RCTErrorInfo.m */, - 12A661EEDCD89228B9FBD71009AC0690 /* RCTEventDispatcher.h */, - AB3F34414AC07F564FC51D62FCA6A85A /* RCTEventDispatcher.m */, - 501AF6484C98A3E8EBF6ED5608246A5D /* RCTFrameUpdate.h */, - C365C14CAF5E815F47AF935416EF5B3B /* RCTFrameUpdate.m */, - 152F5223677B47BB03575848A2FD9483 /* RCTImageSource.h */, - F576126DAAF36547B3A6361BD25297DF /* RCTImageSource.m */, - 277005663249D993DCB172D2B1039E1F /* RCTInvalidating.h */, - 101309B8417EEC4E2FE55199DEC7C679 /* RCTJavaScriptExecutor.h */, - 6B10A1826D3A16CB37D5644F9342E7A2 /* RCTJavaScriptLoader.h */, - 93EDC209BF6C6E87220B1CBA32A145B2 /* RCTJavaScriptLoader.mm */, - 3E24415C7072D67F65AFA283E52414B9 /* RCTJSStackFrame.h */, - 050CAF3D5CFA4EF2DF97B4A88561AA7D /* RCTJSStackFrame.m */, - 6C99F96508DF478E641510E26535F270 /* RCTKeyCommands.h */, - 07EF3FE3D82DB78D1A9AB19713BF43BD /* RCTKeyCommands.m */, - 33F0D1151D1A1F03BA6AABC21145582A /* RCTLog.h */, - 3153A0192F9680A66AC73D180AD3B486 /* RCTLog.mm */, - F843D6DD7B9D560838C63D0AEA41A382 /* RCTManagedPointer.h */, - D694DA697DAD3D16C0DD828FC6BB91BA /* RCTManagedPointer.mm */, - 5350AFC61027B0596968BC971FAC9E57 /* RCTModuleData.h */, - 3729DBD8FFD5E4E723CDC603ADEA2D5A /* RCTModuleData.mm */, - B284D8DD3F6B17041EA71714DF62DB75 /* RCTModuleMethod.h */, - 4E2484730320A55D0D86DDA5F50D1CA9 /* RCTModuleMethod.mm */, - 3C0B33350836FCB1E64810BFA1E1776F /* RCTMultipartDataTask.h */, - 5481967086CFD427E3267D80277E1992 /* RCTMultipartDataTask.m */, - 67827E1676CA912E227342305664911F /* RCTMultipartStreamReader.h */, - 014C335787583647BC2620F6F4B744E3 /* RCTMultipartStreamReader.m */, - E453B899BDCDF49B67B6E627BAB9AC90 /* RCTNullability.h */, - CDC371566812F0C84F9E604EFC5B9525 /* RCTParserUtils.h */, - A97F031415304A67BC62CC843A213C22 /* RCTParserUtils.m */, - 272C8A821D0CA08A07E26E388B824887 /* RCTPerformanceLogger.h */, - 61CC2FDB8491F4772F06EC8A2AD5DD0C /* RCTPerformanceLogger.m */, - C0896760BB2ECC92AB3DD8D72897B775 /* RCTPlatform.h */, - 5BD735A963E84B6CA6CD4FB62E2E025D /* RCTPlatform.m */, - AAAF6001EC7A96E14C038C2BA0543E14 /* RCTReloadCommand.h */, - 2839174A2642BC4AC1F02AF8CB7C2FEB /* RCTReloadCommand.m */, - 3CAAC145B0FCD849417B54B2A4C6ED9C /* RCTRootContentView.h */, - 1084E17CD7AFF1BA53D26E432E4F3CAB /* RCTRootContentView.m */, - 5DCB77C7655ED6A56389CB95C21559D5 /* RCTRootView.h */, - C4909DE655FD8E1AD3326177D67C6C3E /* RCTRootView.m */, - B5635DA27FBFAD8B389C7AEF21807718 /* RCTRootViewDelegate.h */, - FB773479E3C804D047CDC60F25A90345 /* RCTRootViewInternal.h */, - B1774BC1407778CE98E715DA02D4CAFB /* RCTTouchEvent.h */, - DDFA1A4C969BC8368CCE296AEBED3BB1 /* RCTTouchEvent.m */, - 32703CEB8259D0F052422D7733631713 /* RCTTouchHandler.h */, - 4499E67B56D61443B2287A0D5139DD6B /* RCTTouchHandler.m */, - 18F461BC2B2F741A8B61664F954AB815 /* RCTURLRequestDelegate.h */, - 7ED8451EA7D0857F3DC1B9457E446A00 /* RCTURLRequestHandler.h */, - 075F8F6E97F200A30409CE3A60F94188 /* RCTUtils.h */, - 25B75E1A8014CADA47EBD64F07605423 /* RCTUtils.m */, - 0DD4B8381E7969F7B7755F09760E46D1 /* RCTVersion.h */, - 613B3E6092E0933A2CEC3457778F58FD /* RCTVersion.m */, - AC422BB8157C2E0FA65957A71748F5AC /* Surface */, - ); - name = Base; - path = React/Base; - sourceTree = ""; - }; 85AC4B197013A70793286BD7623BD5D5 /* FirebaseCore */ = { isa = PBXGroup; children = ( @@ -4169,39 +3893,6 @@ path = FirebaseCore; sourceTree = ""; }; - 85B979BAE741DA8E210FF9DDE4561AD2 /* Development Pods */ = { - isa = PBXGroup; - children = ( - 8AB72BDB9C229DC8F0EC7CE308251BDB /* EXAppLoaderProvider */, - 059DA777734185C2284F8F1B08070ACA /* EXConstants */, - 7D1976D5BA0ACBB12F8D438CF2B157FF /* EXFileSystem */, - BA47C16AA21F67BC586A5EBC74CC0C50 /* EXHaptics */, - 25713F8F773050FA1BC8F3C224B2F4EA /* EXPermissions */, - 4DDBE767712FA22EA8CC63A59D495068 /* EXWebBrowser */, - 3542442FA7515E77F03CC0D78CDB75FA /* React */, - 5B6B22AB71FB9E81A81EB73500A2A297 /* react-native-orientation-locker */, - BD191035E30FE191F0AB684F14106CE7 /* react-native-splash-screen */, - D831C007C1BC2FD77820B4049E5217BC /* react-native-webview */, - AD77292F5AA69415EEC3C22BB15B0B18 /* RNDeviceInfo */, - 56BACE846B809BA7881491D444E92637 /* RNImageCropPicker */, - 055CEE4121EE6FE2AEC3144DC8328E68 /* RNScreens */, - 2F5C80247426BB15C2B9D50CFDF313D0 /* UMBarCodeScannerInterface */, - C6BB720DD074E01E0440635A423061D5 /* UMCameraInterface */, - E53476E7E12B1B642BD97DDCF24C39CE /* UMConstantsInterface */, - 5A57BDA94DA16837799DDCB3D27BA385 /* UMCore */, - 0DC726FA7041421CA7B2304192B20CDD /* UMFaceDetectorInterface */, - D1163E55C85CBCBB2D1FC1BB466E9963 /* UMFileSystemInterface */, - 420119C6D5CD047BB7C30A69F2D29F27 /* UMFontInterface */, - 40D7C5A019D377E3EBF770F5A6653B70 /* UMImageLoaderInterface */, - 3A270B534FFA946F2FFD91C2DE3032E0 /* UMPermissionsInterface */, - 592403AFC332B365A85F9C120C3BE0BC /* UMReactNativeAdapter */, - D97D4F0A6EBC83C43B39F5DF505938C3 /* UMSensorsInterface */, - 76D9B15AFCC98BBE9EC88EB3872C4B9B /* UMTaskManagerInterface */, - 1DDBC67EEFB85267DA52B75A80CD3B10 /* yoga */, - ); - name = "Development Pods"; - sourceTree = ""; - }; 8626E3BD152CC634748AF21E205BA767 /* Support Files */ = { isa = PBXGroup; children = ( @@ -4211,6 +3902,14 @@ path = "../Target Support Files/FirebasePerformance"; sourceTree = ""; }; + 871095F08FAE17A4F004EF5BA5A53CA6 /* Pod */ = { + isa = PBXGroup; + children = ( + A79C97803529DA5877D3F5089C23E4E0 /* UMCameraInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; 877C6DC2D0047F734A22226CCD030AD5 /* MethodSwizzler */ = { isa = PBXGroup; children = ( @@ -4221,19 +3920,6 @@ name = MethodSwizzler; sourceTree = ""; }; - 8AB72BDB9C229DC8F0EC7CE308251BDB /* EXAppLoaderProvider */ = { - isa = PBXGroup; - children = ( - 5B8751A91DE6DFA13257EEE32F23CD26 /* EXAppLoaderProvider.h */, - 006323E83A3F18D457B50ED365BA095C /* EXAppLoaderProvider.m */, - DA3CB1A5B7D536FB3B9ED16BBDC99992 /* Interfaces */, - AA00E3423F7531D13851FFC52799FC47 /* Pod */, - 5413EEB20184873168EEE17C8F17446B /* Support Files */, - ); - name = EXAppLoaderProvider; - path = "../../node_modules/expo-app-loader-provider/ios"; - sourceTree = ""; - }; 8AD636CD55EE871DE57F398C552E84C4 /* Environment */ = { isa = PBXGroup; children = ( @@ -4243,29 +3929,62 @@ name = Environment; sourceTree = ""; }; - 8C1E818497CBCF3EEAAF668E08B32BC3 /* Support Files */ = { + 8DB56834D612AA3F137735AD848D7194 /* UMSensorsInterface */ = { isa = PBXGroup; children = ( - 404F67BC5B59B1AC7D07101C842DCB68 /* RNImageCropPicker.xcconfig */, - 05BABEA17C5563F4FDF21B7FFF9DAB55 /* RNImageCropPicker-dummy.m */, - B8394993737E196E0F960F3A93D82974 /* RNImageCropPicker-prefix.pch */, + 150DD3E7EB4AF760769E7116B682F66E /* UMAccelerometerInterface.h */, + D453138DC6145883EB192C788A21199E /* UMBarometerInterface.h */, + 34DB1A486400FC0129C204F3BA73AF63 /* UMDeviceMotionInterface.h */, + 28A8C098C18B13008071B4521820F501 /* UMGyroscopeInterface.h */, + 542697236506CF58155E6FAAECA7490D /* UMMagnetometerInterface.h */, + F1A0D40AAC549B2F875EB595B2753F33 /* UMMagnetometerUncalibratedInterface.h */, + 98B3A6BD90D0F62590E665BB795AF727 /* Pod */, + 439BB99A4B4B2DBB7A97872D8D025CB6 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; + name = UMSensorsInterface; + path = "../../node_modules/unimodules-sensors-interface/ios"; sourceTree = ""; }; - 8CE9803A5BF46CE639B09BFF10815D80 /* Pod */ = { + 8EBBB3FEDB8ED83929B66BD1547421A1 /* Development Pods */ = { isa = PBXGroup; children = ( - E44DDC1FAD82F6542941D1379BCE91DF /* UMFileSystemInterface.podspec */, + 427CEF93249F03CB8F9D96A19120614C /* EXAppLoaderProvider */, + EAC063757E42C23580C8A3A53057CBEB /* EXConstants */, + 7B230D82D2527F9E41445357462B5DE3 /* EXFileSystem */, + 95FC8E5878DF7F6F3166D74C54AAC0CB /* EXHaptics */, + 341AB6C9F4FFCC2923406F139D8DCF56 /* EXPermissions */, + 4E94AE0FDF9BA941AB45020DFFE03F7A /* EXWebBrowser */, + C0BA95A47CB86ADF30155CA7E0BB08CF /* React */, + C806BB04FDF3D77481FDAF913AF879CA /* react-native-orientation-locker */, + F7C70A77AA7B40D7D5575AE80D82DF1B /* react-native-splash-screen */, + AF47FB95D823D61EEC6F38C5A7BE43F6 /* react-native-webview */, + C3D856B7BFD26344EFC09BED58A70BFB /* RNDeviceInfo */, + DF04A1AA4EE96F641AC40B03F823A859 /* RNImageCropPicker */, + 3D51948F0EC49520CA28E909A0C39FBB /* RNLocalize */, + AC2006B4ADFEDE6469B3EA13F339F8F3 /* RNScreens */, + BCF38F43A97DE21360329ADB6E2FC7A9 /* UMBarCodeScannerInterface */, + 9A514C4F31087601B96F236BCA65C8E9 /* UMCameraInterface */, + ACA42A9CF94B7ED9132AE22B53C37EE1 /* UMConstantsInterface */, + 508AFDE6C5D8629BCCCF8CFB4EC0CFF5 /* UMCore */, + 991B2CC747ECD83868D31CCFF07ADA3D /* UMFaceDetectorInterface */, + C79A7E1F2210F179617F4068C584618C /* UMFileSystemInterface */, + 1D180FE68937AF878A1C8C9949B25455 /* UMFontInterface */, + 76661E1BC8138031D19D50D80F82CFE2 /* UMImageLoaderInterface */, + 179ED284FF51ADFD2FE26193747E4433 /* UMPermissionsInterface */, + 2C04FD1EB8D34A49DE240A402101B6A0 /* UMReactNativeAdapter */, + 8DB56834D612AA3F137735AD848D7194 /* UMSensorsInterface */, + D3F715541331796BA25C32912C61218D /* UMTaskManagerInterface */, + A2F04F94970CA7E336792D8C5B670580 /* yoga */, ); - name = Pod; + name = "Development Pods"; sourceTree = ""; }; - 8D32A7DC36601ABAEB1DF250FB102D82 /* Pod */ = { + 91DA50741D974EB709EE2D7CEB73051F /* Pod */ = { isa = PBXGroup; children = ( - 7065BB0E59A1F41B173CFAE2796B7B65 /* UMReactNativeAdapter.podspec */, + 37943A1ABCA8B9F615890EDAE8393BCB /* LICENSE */, + 055C209694331196C14E9FA7D11030B2 /* React.podspec */, + 93E9B477DC9CC9539AE0F60A203665F7 /* README.md */, ); name = Pod; sourceTree = ""; @@ -4341,6 +4060,18 @@ path = Protobuf; sourceTree = ""; }; + 95FC8E5878DF7F6F3166D74C54AAC0CB /* EXHaptics */ = { + isa = PBXGroup; + children = ( + 3728B77F228FC2A67AF140F11276EAE5 /* EXHapticsModule.h */, + EBF4E8056F9588AED1DDE2D274F2D598 /* EXHapticsModule.m */, + 3AE119FD48A37A5C43C43805D0CDB166 /* Pod */, + C96A686DC29DA904D0E7909B58C05166 /* Support Files */, + ); + name = EXHaptics; + path = "../../node_modules/expo-haptics/ios"; + sourceTree = ""; + }; 96179E1B26E42CDDFA772FDF542DECE9 /* Support Files */ = { isa = PBXGroup; children = ( @@ -4369,14 +4100,46 @@ path = "../Target Support Files/Crashlytics"; sourceTree = ""; }; - 9A71BEC3EE782055509AFF2C64E932DB /* Pod */ = { + 98B3A6BD90D0F62590E665BB795AF727 /* Pod */ = { isa = PBXGroup; children = ( - 5798E21B42A0670FEE3E6EBCF34C882A /* UMSensorsInterface.podspec */, + 4A11281EAD67AD7409DFADEECB22D879 /* UMSensorsInterface.podspec */, ); name = Pod; sourceTree = ""; }; + 991B2CC747ECD83868D31CCFF07ADA3D /* UMFaceDetectorInterface */ = { + isa = PBXGroup; + children = ( + AC106ED2C7FAE2D1023567A9601D1526 /* UMFaceDetectorManager.h */, + EAF0D64CCD3507EA3F86ED5AE193C322 /* UMFaceDetectorManagerProvider.h */, + 0C03EEF3CDF15D63E7D8A8EA300B93B6 /* Pod */, + 55ABA2EF78F4C8FF2A4C3645C2AC3BA0 /* Support Files */, + ); + name = UMFaceDetectorInterface; + path = "../../node_modules/unimodules-face-detector-interface/ios"; + sourceTree = ""; + }; + 9956229E6A5BD1FA4D6B566676848B73 /* RCTActionSheet */ = { + isa = PBXGroup; + children = ( + 80DD58C7B41C9F8EFB1E5F4BFE2CE71A /* RCTActionSheetManager.h */, + 461F4AA2C18863F24117A366B0F1CF77 /* RCTActionSheetManager.m */, + ); + name = RCTActionSheet; + sourceTree = ""; + }; + 9A514C4F31087601B96F236BCA65C8E9 /* UMCameraInterface */ = { + isa = PBXGroup; + children = ( + 79B4EBA14FE5C4D078D8672736082620 /* UMCameraInterface.h */, + 871095F08FAE17A4F004EF5BA5A53CA6 /* Pod */, + 6A84FE72ECD8CF6804B41292A4E3136B /* Support Files */, + ); + name = UMCameraInterface; + path = "../../node_modules/unimodules-camera-interface/ios"; + sourceTree = ""; + }; 9A81BED9556EDAEC6528B85C1025362F /* GoogleIDFASupport */ = { isa = PBXGroup; children = ( @@ -4387,25 +4150,6 @@ path = GoogleIDFASupport; sourceTree = ""; }; - 9BFB4CAA1E928D4B4774FAFF5AAB844E /* RCTNetwork */ = { - isa = PBXGroup; - children = ( - AB54412E339C4C041154AD5E6EF8B7D9 /* RCTDataRequestHandler.h */, - D5BD76AD8517BCFE91D5CFEB005DB34A /* RCTDataRequestHandler.m */, - 2EF60D5C438BEB4CB521AF2EA5CE03C9 /* RCTFileRequestHandler.h */, - 18A585C00B357738EDF779E950ED4E1C /* RCTFileRequestHandler.m */, - 79FC469F93DD324B12FED331D81582A3 /* RCTHTTPRequestHandler.h */, - 2513D8DA83BA65E8792B3AA68222C977 /* RCTHTTPRequestHandler.mm */, - 42AB9DEED0ACFCAB27C53133D6F3EDF3 /* RCTNetInfo.h */, - ACD42BBC1E4C99ACA0A6DF3296664EB6 /* RCTNetInfo.m */, - B8E23C3835DD8EA84C4D46E64F100D55 /* RCTNetworking.h */, - C15D41AFB0FB273290CC490C1FDD4F16 /* RCTNetworking.mm */, - 80620FFF8B70D1EF2DCBDE94C57732F2 /* RCTNetworkTask.h */, - 3854A31D61D303819F15298C5F8AD289 /* RCTNetworkTask.m */, - ); - name = RCTNetwork; - sourceTree = ""; - }; 9D86C1A9AEDE6B78974D2ED7C7E8A632 /* Support Files */ = { isa = PBXGroup; children = ( @@ -4417,15 +4161,13 @@ path = "../Target Support Files/GoogleToolboxForMac"; sourceTree = ""; }; - 9EFACDB8AFFB3091DEAD519CA5E0B0FC /* Support Files */ = { + A017676EDDB9C82B047F5A7DE8D9E704 /* Pod */ = { isa = PBXGroup; children = ( - 93CB347B0BAC3CA6B2499B62D9E469A5 /* EXConstants.xcconfig */, - 5E1DB5A55C5832BD16262261605E0D45 /* EXConstants-dummy.m */, - 617A7D8D00BE005A752990053BB968CC /* EXConstants-prefix.pch */, + 7EC66C82CF8B03DEC69BA8AF799E1C5D /* README.md */, + 87EA7D820BDC4D2C748F272F7B878252 /* RNLocalize.podspec */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXConstants"; + name = Pod; sourceTree = ""; }; A03428A51F6449FD7349EDE1E28B6448 /* boost-for-react-native */ = { @@ -4446,24 +4188,12 @@ name = "NSData+zlib"; sourceTree = ""; }; - A1E72BB7B2CD04AD264864B0F64754AA /* RCTActionSheet */ = { + A0ABD0735505B41D2ED7FC4111729F3F /* Pod */ = { isa = PBXGroup; children = ( - DA89F71F6BDC14BCD438C7083AA61BE8 /* RCTActionSheetManager.h */, - FD610C1409E3EA26556167B89CD3F904 /* RCTActionSheetManager.m */, + C5EB3623AD99D31A6BF60C9D60586390 /* UMCore.podspec */, ); - name = RCTActionSheet; - sourceTree = ""; - }; - A20032B0BDA746890702FBF0678E8109 /* Support Files */ = { - isa = PBXGroup; - children = ( - B4B4B3F0C4EE2ED166BBCCF7E8C9C8BF /* RNDeviceInfo.xcconfig */, - 5411838FCE29199BF69C2638D1FBD5EB /* RNDeviceInfo-dummy.m */, - D29061174C9046059772D65F707216D7 /* RNDeviceInfo-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; + name = Pod; sourceTree = ""; }; A2D7FEA77C752A5CCA3C09AF4430F46D /* Fabric */ = { @@ -4478,6 +4208,60 @@ path = Fabric; sourceTree = ""; }; + A2F04F94970CA7E336792D8C5B670580 /* yoga */ = { + isa = PBXGroup; + children = ( + AC1FFEB247932E438CB9D9C83EE0A792 /* CompactValue.h */, + DDA9A501E1D2AD694BAF879CAC6322DE /* instrumentation.h */, + ECC1D6E38AAB7E81AD33EC1E4432A9D1 /* Utils.cpp */, + B3EEAC8253B1EFDCC135AB22DCFCF52F /* Utils.h */, + AF7C91C90119BE95E102133FBF3DE500 /* YGConfig.cpp */, + 8FE8D0571806DA652678B5BDAD0778B2 /* YGConfig.h */, + E8A867EAD11B13B4DCC454577E2E2F6D /* YGEnums.cpp */, + 37323DB200005E8E79D1526C6D776535 /* YGEnums.h */, + 836041EC0AD5DDF38A82E7BCE68A038D /* YGFloatOptional.h */, + 3E8F76B40B500DCEA87C0C65F9EC408B /* YGLayout.cpp */, + 6B5E45B354A0254C5B403D2CAD4B7E5D /* YGLayout.h */, + 4F26D487097ADB89B176A24654DD1B8C /* YGMacros.h */, + 1028CB80A5A9E17F7C33235DA2DF6975 /* YGMarker.cpp */, + 27BB03D5D5CE6A1D7C189E45D9510440 /* YGMarker.h */, + 9953F62D53B61D0A08E0EF115C40CB95 /* YGNode.cpp */, + AE1A1B7E658E6963F761FF9A08DCA6B1 /* YGNode.h */, + E9D1F22F7FE6DF1B9159506E4F4C3A19 /* YGNodePrint.cpp */, + 76C2DF9C809D6D29B1E01E9E00B3368B /* YGNodePrint.h */, + 647CAD3A01C396D13D0A628FFBE2B15E /* YGStyle.cpp */, + C27E59773DF5E1725E499E40BDE75A4F /* YGStyle.h */, + A1963F1B64E822FFD9F85C845E96CDD3 /* YGValue.cpp */, + 56FE2D4F756CFFB6D0493194DCCEFA79 /* YGValue.h */, + 1B20E5B4BD15B15F8C5AA88C58E64829 /* Yoga.cpp */, + C4AD3046FFCF446EAA195A061EE5B3B0 /* Yoga.h */, + CA51B3E7AC9492D6D8433A8F45D032C4 /* Yoga-internal.h */, + CF3442318B5324C912DFF28C5117F6A4 /* Pod */, + B1685D34B61AD032AC4DBEF346EEF00B /* Support Files */, + ); + name = yoga; + path = "../../node_modules/react-native/ReactCommon/yoga"; + sourceTree = ""; + }; + A44AA15BC67E886C71145CC8E93E6C73 /* Pod */ = { + isa = PBXGroup; + children = ( + A45AF4BB024061F36814B9352C841A19 /* LICENSE */, + D25EB71968893137BF6CCC3EDF4ABE27 /* react-native-orientation-locker.podspec */, + 5ABE5522DEDF3C841364D3288D0390ED /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + A4584A47C6E2B74BB7D5C75FDC4C3467 /* fishhook */ = { + isa = PBXGroup; + children = ( + 22157D8D92328DB807B136DC3B52510C /* fishhook.c */, + A4AF0519B92EBF608C1BBE25E8463B59 /* fishhook.h */, + ); + name = fishhook; + sourceTree = ""; + }; A4B637D514F44D29D03380C521612787 /* QBImagePickerController */ = { isa = PBXGroup; children = ( @@ -4506,94 +4290,52 @@ path = QBImagePickerController; sourceTree = ""; }; - A72CC7EF08393E91344251BCAB0F59E4 /* TextInput */ = { + A4E93F89A83D022106045C4301C226DF /* Support Files */ = { isa = PBXGroup; children = ( - 2C94D3DA5D27F9B7D0494876D790B9CF /* RCTBackedTextInputDelegate.h */, - 984C9543B7168FE98CE6A5E3901EE0ED /* RCTBackedTextInputDelegateAdapter.h */, - D95E0EB31D3D6B86DAA446731C7DBC60 /* RCTBackedTextInputDelegateAdapter.m */, - 418B9E196C29ACD41C724566BCD282D0 /* RCTBackedTextInputViewProtocol.h */, - 21F401DB1AB3043FA1422A6531497BB1 /* RCTBaseTextInputShadowView.h */, - FC00B0789B4ECCD69926BC0E15823E73 /* RCTBaseTextInputShadowView.m */, - B6F2C5FC457AAE983E9FC8147E179164 /* RCTBaseTextInputView.h */, - 6A35F41E50F2FC39AFDFDD6FE9E121F6 /* RCTBaseTextInputView.m */, - B207DCAE7A6B12BF28047544D880513A /* RCTBaseTextInputViewManager.h */, - 1903123B5CC6EDF22D72B93DFF5F06AB /* RCTBaseTextInputViewManager.m */, - 1EA0DD6E96186722C4FEE641466A2093 /* RCTInputAccessoryShadowView.h */, - FB106E521D332CFEF0E2E66B5A34627F /* RCTInputAccessoryShadowView.m */, - DAA3F6008B8D49969A76F999776E8742 /* RCTInputAccessoryView.h */, - 1CC78FDF7ABF3A8258AD74C924E87E07 /* RCTInputAccessoryView.m */, - 54DF384CA8D041C7CE93CBB2655BF1A4 /* RCTInputAccessoryViewContent.h */, - C6B9126D8B7BA7B6440229B650AE58C2 /* RCTInputAccessoryViewContent.m */, - 9DCDA76EF62E0C4074060057A229C354 /* RCTInputAccessoryViewManager.h */, - 73D46F86335AEBA9348A5E756F24CC9C /* RCTInputAccessoryViewManager.m */, - 5738DE19D8C387C7CD7A3C4A11E7F897 /* RCTTextSelection.h */, - B5156A63BEA308EC900E12768C326247 /* RCTTextSelection.m */, - EB97AA477561DB37B068AE498C8C55FB /* Multiline */, - BFC1DE7E100941C3BD208CB1A943EBB0 /* Singleline */, + 8B6A4D6896B881DD0E6AB07264F572D3 /* RNImageCropPicker.xcconfig */, + D595738BAEF34FC2D4B34A21C7C9A6D9 /* RNImageCropPicker-dummy.m */, + E12DAB5484613854783AE35A74D21F09 /* RNImageCropPicker-prefix.pch */, ); - name = TextInput; - path = Libraries/Text/TextInput; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; sourceTree = ""; }; - A8F2F3BA786491D28AED0B45AF7DDF41 /* ScrollView */ = { + AC2006B4ADFEDE6469B3EA13F339F8F3 /* RNScreens */ = { isa = PBXGroup; children = ( - D067488F4F8D117AD88360A475B79C79 /* RCTScrollableProtocol.h */, - 5CE86C62392D368CD3918713773FFB22 /* RCTScrollContentShadowView.h */, - 752EA21339105493586B2311BA981645 /* RCTScrollContentShadowView.m */, - 0D2E9568103F84382BB0F9AA05C4443B /* RCTScrollContentView.h */, - DB8561E445E930C2995A38DDBB3C5971 /* RCTScrollContentView.m */, - AFBBE34EBBF23CCB1A0D872B94F252AC /* RCTScrollContentViewManager.h */, - FD26845EA8192556978A7BFF631D39B6 /* RCTScrollContentViewManager.m */, - 1FD08E6FA82043F66C05A0B8275B5BCB /* RCTScrollView.h */, - D8F1012B3A685E9BC60350AC6BCB49E5 /* RCTScrollView.m */, - 057293510C873376FADFE3EF8DBBFAD0 /* RCTScrollViewManager.h */, - 1DF07E0B1956AC0169D3FD35E0CC4802 /* RCTScrollViewManager.m */, + EB3D12B50AC18CA621298BC35F46668F /* RNSScreen.h */, + 7C9472CE65B2987AE7EFC2B36FFA5C70 /* RNSScreen.m */, + 26451F3A73A4A8076405DA0C328309BA /* RNSScreenContainer.h */, + 73739BDA5E3CFF0277762732A1F44DBA /* RNSScreenContainer.m */, + 57ADC4FCFC7344E7654957006F19488B /* Pod */, + 10010C6301D3A51B9FAF968FA9398FA5 /* Support Files */, ); - name = ScrollView; - path = ScrollView; + name = RNScreens; + path = "../../node_modules/react-native-screens"; sourceTree = ""; }; - AA00E3423F7531D13851FFC52799FC47 /* Pod */ = { + ACA42A9CF94B7ED9132AE22B53C37EE1 /* UMConstantsInterface */ = { isa = PBXGroup; children = ( - 0BAFDE37B8B2ECC57C3CB50013E11AF8 /* EXAppLoaderProvider.podspec */, + 5BB1C415CE6739B0C93B165594B1E74C /* UMConstantsInterface.h */, + B770BA27A3684AF86D79D05EACAC872E /* Pod */, + 518DA57E6244492233F69F87762CBE43 /* Support Files */, + ); + name = UMConstantsInterface; + path = "../../node_modules/unimodules-constants-interface/ios"; + sourceTree = ""; + }; + ACC440BEDD5514B0EA087A459AED06D9 /* Pod */ = { + isa = PBXGroup; + children = ( + F978FF17E2D614459AA9EF796BBD855A /* LICENSE */, + 8CCF6F469DCC08CA089854588C5112B1 /* README.md */, + 40410E05840DF8B10582A9924A44861E /* RNImageCropPicker.podspec */, ); name = Pod; sourceTree = ""; }; - AB350A18505E3821D9F6A2B0EEC6036C /* RCTVibration */ = { - isa = PBXGroup; - children = ( - AFBD0A5841C438CC3AFD48533E08B122 /* RCTVibration.h */, - 84C4609BAE18F6BE6DCF2C8E38BEAD59 /* RCTVibration.m */, - ); - name = RCTVibration; - sourceTree = ""; - }; - AC422BB8157C2E0FA65957A71748F5AC /* Surface */ = { - isa = PBXGroup; - children = ( - 64771C531BA53A0F2561501D36FB1CBB /* RCTSurface.h */, - D91E5E530660665B3E8B4A91BA0A3159 /* RCTSurface.mm */, - 220D823C3599CD9D33DF861E5FF34072 /* RCTSurfaceDelegate.h */, - AD267EA37D17FD5854A6AFD0AEAFCC91 /* RCTSurfaceRootShadowView.h */, - A72F01368A40F236A5394D51A6A854A2 /* RCTSurfaceRootShadowView.m */, - AED8F0168633DA3B9CC7B66118728ACF /* RCTSurfaceRootShadowViewDelegate.h */, - 33A98F3443DDA9DE59F4B0A4693DCD27 /* RCTSurfaceRootView.h */, - 4134923B843A31CC3A220A7FEE58F4D2 /* RCTSurfaceRootView.mm */, - EAD8F33F68B075DD880F7C271B8F5963 /* RCTSurfaceStage.h */, - 22F68A1F8F5D4D146FB19C686BC5BAE0 /* RCTSurfaceStage.m */, - B32A53A8669E7099965B84A270F716C0 /* RCTSurfaceView.h */, - B4341C0AB2D588EA85CD3E65ABC84594 /* RCTSurfaceView.mm */, - AF23E07DC4E3BC0DEFD5323807DA39CD /* RCTSurfaceView+Internal.h */, - 655F92D40793686DCF24A3263A29A6C1 /* SurfaceHostingView */, - ); - name = Surface; - path = Surface; - sourceTree = ""; - }; ACF6B0DDA33E83229CBCCD8A0BB9BE70 /* RSKImageCropper */ = { isa = PBXGroup; children = ( @@ -4620,20 +4362,6 @@ path = RSKImageCropper; sourceTree = ""; }; - AD77292F5AA69415EEC3C22BB15B0B18 /* RNDeviceInfo */ = { - isa = PBXGroup; - children = ( - 29B90A4C820988D90E6E749DD6C6BE27 /* DeviceUID.h */, - 98F4C81F2CFD8C595710D5A7407ECD2B /* DeviceUID.m */, - AE7AF9AB3C037236CF0FF55AE4FA14CE /* RNDeviceInfo.h */, - 4A40B417AD2CD9C5EF3880B0B2B8C362 /* RNDeviceInfo.m */, - C9317E48B45C3BBF1BDD5FB57572831F /* Pod */, - A20032B0BDA746890702FBF0678E8109 /* Support Files */, - ); - name = RNDeviceInfo; - path = "../../node_modules/react-native-device-info"; - sourceTree = ""; - }; AD987FB3AA51D0B6DA87021A75211969 /* Logger */ = { isa = PBXGroup; children = ( @@ -4653,6 +4381,42 @@ path = "../Target Support Files/Firebase"; sourceTree = ""; }; + AF47FB95D823D61EEC6F38C5A7BE43F6 /* react-native-webview */ = { + isa = PBXGroup; + children = ( + AAB62DC3F7D34B55DED0B20B69D43069 /* RNCUIWebView.h */, + 9BEA35EB4497F17E40B95397FBC0555F /* RNCUIWebView.m */, + 4EB6E121E7640AE36CF1600C047CBA13 /* RNCUIWebViewManager.h */, + C28639AE4CE2CFA7280CFA1E0448D8FA /* RNCUIWebViewManager.m */, + 644AE7BA2E15D241F25F80FA50F13421 /* RNCWKProcessPoolManager.h */, + BD2901D3D060B3500A5D1F553BBDCCB6 /* RNCWKProcessPoolManager.m */, + 96EC93A96E6C4FB5BC6E78022F57080A /* RNCWKWebView.h */, + F6A7BBE3D4CD65903B4EFF815ABDE360 /* RNCWKWebView.m */, + 88AE41598E7A1040BE84A14DACF0D164 /* RNCWKWebViewManager.h */, + 2C7E0B8C93DD0538EA0CAF8DAFBA04C9 /* RNCWKWebViewManager.m */, + 331CEB02ACC75BBB3CE51F37F5735F57 /* Pod */, + ED2136F27A1AC7DAB3CAF7A41F4F2551 /* Support Files */, + ); + name = "react-native-webview"; + path = "../../node_modules/react-native-webview"; + sourceTree = ""; + }; + B0102F53A27A65566FA65A7160E0CEA1 /* Text */ = { + isa = PBXGroup; + children = ( + 3EF4EB1B2E24D351F70ADFA726E880F8 /* NSTextStorage+FontScaling.h */, + FC3B31C3A1A1D27D3EFE3858AF9F5C27 /* NSTextStorage+FontScaling.m */, + 6EF6B1BA0D6D13C43998E68914E6A514 /* RCTTextShadowView.h */, + BD68BDC8FCD2B9761202DABB9FBD23A7 /* RCTTextShadowView.m */, + 651CD8D43249B30C86BD4789FE3E7E69 /* RCTTextView.h */, + A8606811A2959FD95EB14C11222275C1 /* RCTTextView.m */, + D2EE1945008DC2BAB401F9591A11B6ED /* RCTTextViewManager.h */, + 07E4C6876A997A3353015CF31F2B8799 /* RCTTextViewManager.m */, + ); + name = Text; + path = Libraries/Text/Text; + sourceTree = ""; + }; B0B14F0A7B74B461C5E79F8A35BA225B /* Support Files */ = { isa = PBXGroup; children = ( @@ -4662,56 +4426,163 @@ path = "../Target Support Files/FirebaseABTesting"; sourceTree = ""; }; - B0BDD7191DFAFE36292304CC1E133CFE /* Services */ = { + B1685D34B61AD032AC4DBEF346EEF00B /* Support Files */ = { isa = PBXGroup; children = ( - 995A7AB9746D3A244ACEE545EB4537DF /* UMLogManager.h */, - EBF43FE7122B9CEB6D0FA323C35976D9 /* UMLogManager.m */, + 2E657EB8A5923EF09912E167F0F21ACF /* yoga.xcconfig */, + A628A9F1D28002879C71D75F544425B5 /* yoga-dummy.m */, + 221AE8BA7A69F06F295C708CF7AD2333 /* yoga-prefix.pch */, ); - name = Services; - path = UMCore/Services; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/yoga"; sourceTree = ""; }; - B8FDCA705E9773AD1C8EB0DD99998DB8 /* Pod */ = { + B18D4DBA9E72DA5E79A2895E572D7E27 /* RCTVibration */ = { isa = PBXGroup; children = ( - 96D333FF499006A1F35583BA23F9EF9D /* UMFontInterface.podspec */, + A094C4AF0BD3A9B0B467EFDA21D8EE89 /* RCTVibration.h */, + 9725C0B95F053CEA93415F383DAEE446 /* RCTVibration.m */, + ); + name = RCTVibration; + sourceTree = ""; + }; + B3B08F6C7340A06B95284D43EB281E6D /* Support Files */ = { + isa = PBXGroup; + children = ( + A5EB45A00F8A40475C44BF7440EE0136 /* RNLocalize.xcconfig */, + 44DDF2BAF0C925DEE6EBCDE3097B3BC9 /* RNLocalize-dummy.m */, + 4F0F85CD7A2153BDBEE85E44A4FFE6BD /* RNLocalize-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNLocalize"; + sourceTree = ""; + }; + B770BA27A3684AF86D79D05EACAC872E /* Pod */ = { + isa = PBXGroup; + children = ( + E5C36E8990363498AF1F706E46F69464 /* UMConstantsInterface.podspec */, ); name = Pod; sourceTree = ""; }; - BA47C16AA21F67BC586A5EBC74CC0C50 /* EXHaptics */ = { + B805F10A176296B3986CDB85B3AC9E87 /* Base */ = { isa = PBXGroup; children = ( - 9273C9D88A0111ECC013272D7BB5B64A /* EXHapticsModule.h */, - 5B227B77549A57A7FB9BB5908B7850D0 /* EXHapticsModule.m */, - 31A5696B444173B99F2C5DBB71CDFF4F /* Pod */, - EE6073E8F59E626EA9A23043EC0DF6C4 /* Support Files */, + 8583C2C31D57302C748FAD771527CBA3 /* RCTAssert.h */, + D12C4AA1B0A474BB4D9FF8E8275D5022 /* RCTAssert.m */, + 9979B1D5CCCDE47A4E7F9A183DF18C37 /* RCTBridge.h */, + 71D7D3D72FA20C510D5012B9EDE696FF /* RCTBridge.m */, + F2BF2369AE1F6E9E22FDB46CBB158061 /* RCTBridge+Private.h */, + 32B3B793AC1109FEE907F4987D104EB6 /* RCTBridgeDelegate.h */, + 5B462D92F155C2ABF56D5A7B4732E87F /* RCTBridgeMethod.h */, + A072A0815406C6FB590FA8E447EB4050 /* RCTBridgeModule.h */, + 835ECBFE5A40BB61A2BC3AF77B26859F /* RCTBundleURLProvider.h */, + 15B6BB352B8791D119865D9E1466A581 /* RCTBundleURLProvider.m */, + D94B3C50F3E24C40C2E7756E3E518621 /* RCTConvert.h */, + E91DD8F290E7B5B5DE509B64C4E6028C /* RCTConvert.m */, + A6011AB5DE82C53D31C1281E0F9537BB /* RCTCxxConvert.h */, + 3716DA8C01705C208C68E7CDFA3E97B9 /* RCTCxxConvert.m */, + A8BEF7253E3F35B7D01FF2F1116C223F /* RCTDefines.h */, + 36BA993B7890E62B5E8308FEB31F4289 /* RCTDisplayLink.h */, + 25EBB515B61500A8BEC829915FE9F07D /* RCTDisplayLink.m */, + 197D184FE5BF1822EC762D157E890C36 /* RCTErrorCustomizer.h */, + 2C0727585B7E3732421BFD0B62598478 /* RCTErrorInfo.h */, + CBDEBAF5ACCC3A233ED5FB1B8C8E38CB /* RCTErrorInfo.m */, + 5BC407CBFA3FB85A76CFFAD9F908CF4A /* RCTEventDispatcher.h */, + 080C17B3B8D082F1F69860719DC4F84E /* RCTEventDispatcher.m */, + D691F235CF9653108D5AEAD3BEE072D2 /* RCTFrameUpdate.h */, + 4EFD119AD1AC58743AB2F7A53DB7F064 /* RCTFrameUpdate.m */, + 782F8E8AFF98DA8B8A502312CFD5AB3B /* RCTImageSource.h */, + F7B0D1E58E01CBB522CB6B75B7B9471E /* RCTImageSource.m */, + 32E5F556E1A94871EE7BE851C2FEAF38 /* RCTInvalidating.h */, + A2F111F8AFABB8EBB5CD536CEAF6EB2B /* RCTJavaScriptExecutor.h */, + C4687B032CCF15ED38E21B377A036697 /* RCTJavaScriptLoader.h */, + D49DFE2AE2D6A6BBA4D60B2925770962 /* RCTJavaScriptLoader.mm */, + E851A6DD869D2C563A504CDF160DC712 /* RCTJSStackFrame.h */, + 1BD73EE2D1A05F9D438B8247A8E67B76 /* RCTJSStackFrame.m */, + F8B24A51A2006D1AB0010A271E2A3C7F /* RCTKeyCommands.h */, + E701C756CFC6AF190D05D5DB39107786 /* RCTKeyCommands.m */, + CC89E54AC9D6E3B2B8478FEA7E793BC8 /* RCTLog.h */, + FF9E9486BC401271CD7D5354236A5BDA /* RCTLog.mm */, + DC784F34AA466191C56481584BADAE41 /* RCTManagedPointer.h */, + FB82079C7A062DEED144F4963E5DFCE5 /* RCTManagedPointer.mm */, + 4C8573E5A3F3C2EF86D360850ED469CB /* RCTModuleData.h */, + D7798BDD99C1305FF7E5087418670EA2 /* RCTModuleData.mm */, + B1F4DDC46B3E683AA780B6F21FC48DC6 /* RCTModuleMethod.h */, + 7631F2C848D05CC3A56DE0AF140E5840 /* RCTModuleMethod.mm */, + AC75CB636C2B27CD9B8D3B662BD93E7E /* RCTMultipartDataTask.h */, + 0DD95497B412DFA8195128DA85AA2782 /* RCTMultipartDataTask.m */, + 06299F1F26A83FE33D0135BAAA814F7D /* RCTMultipartStreamReader.h */, + 8B612638181DFE799EAAA22A202AA22E /* RCTMultipartStreamReader.m */, + 31BE553D0B3A942FA2B9DE57D6D0CDFE /* RCTNullability.h */, + BAFFB41C949F7E051B2F4269B967CF5D /* RCTParserUtils.h */, + 9B9CEE95DCE0A48C20BEDECCAC3992AC /* RCTParserUtils.m */, + 3BD55EA832B710C0E22397F4CB9031C6 /* RCTPerformanceLogger.h */, + A207123603371565C7C4A70EA0BF372C /* RCTPerformanceLogger.m */, + 50252D58F348BD619FE4C2C67016C637 /* RCTPlatform.h */, + 8A17FC0AA871E7E8A271F065985D9048 /* RCTPlatform.m */, + 03D44413E373B31D064E19D1BF2C75B1 /* RCTReloadCommand.h */, + 98C31D2E809F6A37B9BAC05C1AFC0162 /* RCTReloadCommand.m */, + 42EFFF689A82E1E9314719A48B91F152 /* RCTRootContentView.h */, + 33E0062F617852082D29AF686D42B05D /* RCTRootContentView.m */, + 73D9C7815CB45F52F00712F7ABE7F3AC /* RCTRootView.h */, + E8DD19990C1FF4425CE5165D0746DE01 /* RCTRootView.m */, + C7462F19497B41662B55C65E4FE28691 /* RCTRootViewDelegate.h */, + FB2BF24F70E64150888FF4F8B9502896 /* RCTRootViewInternal.h */, + 7024CEB4929DA4E125AF7050AA1B7737 /* RCTTouchEvent.h */, + 5E1F1EBB839A79D8B33CB0ECE01C3AF5 /* RCTTouchEvent.m */, + FA72B631FBE5E63E88853669EE1DA0F7 /* RCTTouchHandler.h */, + 72D8B0E431F02CFE9E10CBFA6DE6A87F /* RCTTouchHandler.m */, + E3EF50ACA6401D0A2A5014DD80E2E125 /* RCTURLRequestDelegate.h */, + 6BB1713F752569DC3B97F403498D8CD1 /* RCTURLRequestHandler.h */, + C4E37BAC685E0AD5D269012260E24304 /* RCTUtils.h */, + 8760FCF4AD8432C345B8508EDDA47986 /* RCTUtils.m */, + 2F0A7775D4F2825527CFC194EEAD5136 /* RCTVersion.h */, + D22E7FFDB562DDDA96335783EAF430D5 /* RCTVersion.m */, + 017950C2EB41964A97683D7531F837E0 /* Surface */, ); - name = EXHaptics; - path = "../../node_modules/expo-haptics/ios"; + name = Base; + path = React/Base; sourceTree = ""; }; - BB30408BC815964E13F8BB51BE9332B0 /* Pod */ = { + B9D75CB64E1D59A4F4D44660E1945D8A /* Drivers */ = { isa = PBXGroup; children = ( - FE1B5808CCD70FA3C0E6538C56375BB6 /* LICENSE */, - 326278F4A9BCA1111D5784B6B977D082 /* react-native-webview.podspec */, - E0EB6E27351FFD817514B3A36310EE3A /* README.md */, + 141AF37C2E9015423F5CEFFEF48D3542 /* RCTAnimationDriver.h */, + FC9BCE6DFF03C623658A231C602702EC /* RCTDecayAnimation.h */, + 223E5E9543530AF202AE2D33BFED5BDC /* RCTDecayAnimation.m */, + EEF287135C463E0BA9325634ACCD11A3 /* RCTEventAnimation.h */, + 1AD39C57250C1F486BA94E1C5CE2CBC6 /* RCTEventAnimation.m */, + B225B90AFE924E4FF729C315DA408B6B /* RCTFrameAnimation.h */, + A0E858194FE8616F8CA2ACCC10D27CEF /* RCTFrameAnimation.m */, + 758C5B62A71BB6C536A57370B509E6E9 /* RCTSpringAnimation.h */, + 25D86FD30633BE592D4CE30EA6DE7B9B /* RCTSpringAnimation.m */, ); - name = Pod; + name = Drivers; + path = Libraries/NativeAnimation/Drivers; sourceTree = ""; }; - BD191035E30FE191F0AB684F14106CE7 /* react-native-splash-screen */ = { + B9E4A1B58A2444B56D8092C3F799872B /* Support Files */ = { isa = PBXGroup; children = ( - 5C4A48136C0B2CA0819B5D8853D4DB12 /* RNSplashScreen.h */, - C5D09C724074FFB6B3993510F3FDF0CC /* RNSplashScreen.m */, - 61874DC15BB714694F2E11769444405C /* Pod */, - 0282B38FD6F738E141B196F767CADC46 /* Support Files */, + 433E42EEAC5EEE7650F1081AA78BD759 /* EXWebBrowser.xcconfig */, + DDE7158D964327E4B8B45E18ED90D49F /* EXWebBrowser-dummy.m */, + 08517FB1F08FB7AFBAD6DAD9F1B99359 /* EXWebBrowser-prefix.pch */, ); - name = "react-native-splash-screen"; - path = "../../node_modules/react-native-splash-screen"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; + sourceTree = ""; + }; + BCF38F43A97DE21360329ADB6E2FC7A9 /* UMBarCodeScannerInterface */ = { + isa = PBXGroup; + children = ( + 16C3E0C18537D81C56B5B8A15F3AD99B /* UMBarCodeScannerInterface.h */, + 012FC2F22EC7C1D82FA9F878DEDDA645 /* UMBarCodeScannerProviderInterface.h */, + 1159DC168A18455C628FB9DFC1DE6F42 /* Pod */, + F74797BB952E054ED491873A4DFE3E97 /* Support Files */, + ); + name = UMBarCodeScannerInterface; + path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; sourceTree = ""; }; BDA7536C8CAC72B07ED9CF717C00A9BB /* GTMSessionFetcher */ = { @@ -4742,6 +4613,37 @@ name = Frameworks; sourceTree = ""; }; + BEA600A1A666AA63D921F23D8DF391F0 /* BaseText */ = { + isa = PBXGroup; + children = ( + E2788C1DD148B1080A737FAEE353F4DF /* RCTBaseTextShadowView.h */, + A82BD6CF7D6E5BC0191B9782F9AF30D8 /* RCTBaseTextShadowView.m */, + E97388D2ABD87632E8CAD8737ED5C313 /* RCTBaseTextViewManager.h */, + BD859E03F93351DC58DA5836452B62ED /* RCTBaseTextViewManager.m */, + ); + name = BaseText; + path = Libraries/Text/BaseText; + sourceTree = ""; + }; + BEFBD25AAD407617D2DB4BFDAED0AE39 /* ScrollView */ = { + isa = PBXGroup; + children = ( + A2666F2C88B482E882F928581305A8EB /* RCTScrollableProtocol.h */, + 65B547BB4C4891BA8B4B8BC3FFC69442 /* RCTScrollContentShadowView.h */, + 6CA5CCBA6F4FFB6C4A2F1B72EFED5655 /* RCTScrollContentShadowView.m */, + 07442DE3720E27B68535467D508DEE6E /* RCTScrollContentView.h */, + D854858552A9AE92F3790D7E5F6E47EB /* RCTScrollContentView.m */, + CEEA19126793B4E7886EB0B70032630A /* RCTScrollContentViewManager.h */, + E2BDF83F3376E6B27A25EFFF603A2FAB /* RCTScrollContentViewManager.m */, + 5C2DC63339E4D958A31F062DCC67F756 /* RCTScrollView.h */, + 3B26801705816DB1CF243628583ACA87 /* RCTScrollView.m */, + 9DE9A65D1DB4BFA4D5940C75DA55E44B /* RCTScrollViewManager.h */, + 1D3A93BFDABFB5CC6B530FA2E2939664 /* RCTScrollViewManager.m */, + ); + name = ScrollView; + path = ScrollView; + sourceTree = ""; + }; BF29E20B3515EAD8CA9AB46A89E098D1 /* Reachability */ = { isa = PBXGroup; children = ( @@ -4764,18 +4666,26 @@ path = "../Target Support Files/Protobuf"; sourceTree = ""; }; - BFC1DE7E100941C3BD208CB1A943EBB0 /* Singleline */ = { + C0BA95A47CB86ADF30155CA7E0BB08CF /* React */ = { isa = PBXGroup; children = ( - 87A816EB719F7EC75B8425B0103B9FA6 /* RCTSinglelineTextInputView.h */, - BC0A17C2758909A460787E8DFE22B480 /* RCTSinglelineTextInputView.m */, - 42B0F0AC1A1AC771B3910C1AAC4F7229 /* RCTSinglelineTextInputViewManager.h */, - 6F99DAC31C59BD1C8D9B60B14D1024C7 /* RCTSinglelineTextInputViewManager.m */, - 7B538242EA01D4E8620E79EC17E9FF4A /* RCTUITextField.h */, - 6421A1B8F31B4FF8751EC754CAEFB645 /* RCTUITextField.m */, + E0642BA9B899E9001D5E744B56987DD4 /* Core */, + A4584A47C6E2B74BB7D5C75FDC4C3467 /* fishhook */, + 91DA50741D974EB709EE2D7CEB73051F /* Pod */, + 9956229E6A5BD1FA4D6B566676848B73 /* RCTActionSheet */, + C576BE058B5D6381A93F55D7BE9A2A7E /* RCTAnimation */, + 74602873B166B0334F2A864443FB4616 /* RCTBlob */, + 38E92D8A5946CCFD92B30E2AF6B41C5B /* RCTImage */, + D44819C922D9EE63D85E4CCD8A08FBA8 /* RCTLinkingIOS */, + EC5C022A2A3F8703D09888A0075FA271 /* RCTNetwork */, + 5CAEDC77F60B04395341EE6CD932FE4F /* RCTSettings */, + 3BA85C9E62E9D96935208C08B96BF728 /* RCTText */, + B18D4DBA9E72DA5E79A2895E572D7E27 /* RCTVibration */, + E8A2534B3BAF89B25A2C8D347397AA1C /* RCTWebSocket */, + F172D18EDFA8BD649A9D10EB6EC74F5C /* Support Files */, ); - name = Singleline; - path = Singleline; + name = React; + path = "../../node_modules/react-native"; sourceTree = ""; }; C0F1D135B699391FEBEF59BA679DA149 /* Support Files */ = { @@ -4790,36 +4700,6 @@ path = "../Target Support Files/QBImagePickerController"; sourceTree = ""; }; - C23AF1F608F25E3FF02D62AB5247E4DB /* Protocols */ = { - isa = PBXGroup; - children = ( - A5A4EBD6153F5BA37A774CCDBFF7CBAA /* UMAppLifecycleListener.h */, - AFD445827223021D33395DF5502FBBC0 /* UMAppLifecycleService.h */, - 58B94351A183601F151A075F186850AC /* UMEventEmitter.h */, - 7261558D673771339424C5D58B879B6B /* UMEventEmitterService.h */, - AD804BCA6E3359356AE3E6DCD0AE9032 /* UMInternalModule.h */, - 45E86DAD529F51163935911987BA6E23 /* UMJavaScriptContextProvider.h */, - 89DC3DEAE2A8575D95A57DBECABE3E18 /* UMKernelService.h */, - F35B8067CB38799161B342B07CF317B9 /* UMLogHandler.h */, - A8CDA8BFB119B77D80923A53428B46D2 /* UMModuleRegistryConsumer.h */, - FD3F039FB2B2EE427D3AA41C69F3B553 /* UMUIManager.h */, - 39BB85AE2C618E035D1354CC2636DA08 /* UMUtilitiesInterface.h */, - ); - name = Protocols; - path = UMCore/Protocols; - sourceTree = ""; - }; - C24481A6A7FDFE0AA176E689323067A1 /* Support Files */ = { - isa = PBXGroup; - children = ( - 741061F41439E555E783203CC6D8D268 /* react-native-orientation-locker.xcconfig */, - 4CDA25D70181B834891ABAA4688D1436 /* react-native-orientation-locker-dummy.m */, - 32E995840BC548A677C43BC82CC57C5C /* react-native-orientation-locker-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; - sourceTree = ""; - }; C2B611C5AD48E2DCE0FA32B005821A1D /* GoogleUtilities */ = { isa = PBXGroup; children = ( @@ -4838,56 +4718,18 @@ path = GoogleUtilities; sourceTree = ""; }; - C2C652BA5C2AF88E5121B9178F9C898D /* Modules */ = { + C3D856B7BFD26344EFC09BED58A70BFB /* RNDeviceInfo */ = { isa = PBXGroup; children = ( - B4E997FB728F07D1D494C902528A06EE /* RCTAccessibilityManager.h */, - A6EBA4A30C98EB6E19B9F48DFEF87EB6 /* RCTAccessibilityManager.m */, - 68A3DBD561E2D94B8CDD9BCE3130506A /* RCTAlertManager.h */, - 2A9D0896076B1B2C2CB6525EBDB7FA9D /* RCTAlertManager.m */, - BD21E5B19F2A7864627B36E0DCFBCA34 /* RCTAppState.h */, - A39C094C0A86C473C94BC7484C24CED4 /* RCTAppState.m */, - D16FFEAB8CE3B00C1D8E2CF0761C6E3A /* RCTAsyncLocalStorage.h */, - 13D51F7954C5677A0C636D221D2D1EED /* RCTAsyncLocalStorage.m */, - A71E0BCDD184D9DE9D80397533B1D911 /* RCTClipboard.h */, - F882ECE5EDFEC96BAA87FACD11FDF382 /* RCTClipboard.m */, - 28785DFC53448FF6956336BBE984561D /* RCTDeviceInfo.h */, - 5C7751349E791E93C6992B712F1B63AD /* RCTDeviceInfo.m */, - 1C03336F922054AD70102903C4F9C1F8 /* RCTDevSettings.h */, - 417F439AE2A0D0D7A6B1F00376CC48F6 /* RCTDevSettings.mm */, - 48C65CE4762377AC216691594AF63653 /* RCTEventEmitter.h */, - 7390308A61C85571FAE1ABC51D13BA00 /* RCTEventEmitter.m */, - E9BAA308AFCBE63A1E0A238E6B54200D /* RCTExceptionsManager.h */, - 7E3792DC34600115B21B4766AAFC512F /* RCTExceptionsManager.m */, - B774100954DF43150AF96B3C99DB39EE /* RCTI18nManager.h */, - FF72352758B631E598C08C4CDE85CBFE /* RCTI18nManager.m */, - 874FB48CB7FBE1947122DE5DD19A4D99 /* RCTI18nUtil.h */, - 2FEC305D8BDF308C138105D2B019F9F5 /* RCTI18nUtil.m */, - 0B4EA647D37E12FB370A96DD632C8979 /* RCTKeyboardObserver.h */, - C85601D37D98DB8351B689768BCE4858 /* RCTKeyboardObserver.m */, - F663A0E10F9F1DE93DB1825DF3DE8ECC /* RCTLayoutAnimation.h */, - 432ED31078600D3B1BC4CACFBDEE3794 /* RCTLayoutAnimation.m */, - BBF95BA962C2085E60B1D539138DB06F /* RCTLayoutAnimationGroup.h */, - 2D46ED2981C5A9270EF0C35F9E81FBBF /* RCTLayoutAnimationGroup.m */, - 7C8B1C440E9AE651BD2D632B25C4A6C1 /* RCTRedBox.h */, - FF92BFDDA99CB483A2ABC83587639702 /* RCTRedBox.m */, - ABD10DC8BDA13164647A1AD2AFA917F3 /* RCTRedBoxExtraDataViewController.h */, - F4B9873A2E43DA6D2B7C573612339FA6 /* RCTRedBoxExtraDataViewController.m */, - C22095E3034320FBCD5A206E11F81E1C /* RCTSourceCode.h */, - 060E23922D2031B473998708E1BA04B5 /* RCTSourceCode.m */, - 27C18F4C704C1A881AAB2040721837D7 /* RCTStatusBarManager.h */, - 56B2116D16CD2C71D396426E61FC335C /* RCTStatusBarManager.m */, - AA0E26C8086FC490BFCE2BBA8E347BF9 /* RCTTiming.h */, - 6D1A26827252D7CC86A03CDF62A063CC /* RCTTiming.m */, - CA3C7DB2640EEC9A59219E4433780462 /* RCTUIManager.h */, - B9929DD9D6E705A247ED150379839CB5 /* RCTUIManager.m */, - CCCC1128C2573E58DAFAF6BB4045AF84 /* RCTUIManagerObserverCoordinator.h */, - DDC09227133CA2814AEC3E34EF9396F9 /* RCTUIManagerObserverCoordinator.mm */, - 7F282B107F5E274477CD24108CAA67CD /* RCTUIManagerUtils.h */, - 1F4847F831699142D9A63D391797D6D6 /* RCTUIManagerUtils.m */, + C255B9FEEC57F3F344E3CC5A6FA25BEF /* DeviceUID.h */, + 94DE6F857669CECD5259FBEBD3074D77 /* DeviceUID.m */, + DFD95BDC417CF61E44CB4176D8361F40 /* RNDeviceInfo.h */, + 69191110D228F9C8A023B23FADAB2737 /* RNDeviceInfo.m */, + 66151BD0A62BE1724884B5F75300EECD /* Pod */, + 618A950B6D822B0010FB66BF5CCB4F6F /* Support Files */, ); - name = Modules; - path = React/Modules; + name = RNDeviceInfo; + path = "../../node_modules/react-native-device-info"; sourceTree = ""; }; C5600A66407EAFEEAFE44D7950601953 /* Frameworks */ = { @@ -4898,86 +4740,134 @@ name = Frameworks; sourceTree = ""; }; - C6BB720DD074E01E0440635A423061D5 /* UMCameraInterface */ = { + C576BE058B5D6381A93F55D7BE9A2A7E /* RCTAnimation */ = { isa = PBXGroup; children = ( - 8EC6887C9DE2727E0852206BC8F33826 /* UMCameraInterface.h */, - D8629D99CCD612FD64762FF236237313 /* Pod */, - 5FA7EC37E285E859F3AD0B6D4085F33F /* Support Files */, + 01E6324807846CF0D4C5DEB07DD6898B /* RCTAnimationUtils.h */, + 423C2C443213326238D5BF3C4E16B349 /* RCTAnimationUtils.m */, + 912EB3CC1AC4350392A9C3AD6C46FBBF /* RCTNativeAnimatedModule.h */, + 687FE3553BAD91E67ABA40DABFAB3E36 /* RCTNativeAnimatedModule.m */, + 1A39202DC54DFE34708FF9C00AFF4168 /* RCTNativeAnimatedNodesManager.h */, + 606516EE7FC2050A844FAB80A23BE4D1 /* RCTNativeAnimatedNodesManager.m */, + B9D75CB64E1D59A4F4D44660E1945D8A /* Drivers */, + E27C7350A86D6015E7AE1C66DC072578 /* Nodes */, ); - name = UMCameraInterface; - path = "../../node_modules/unimodules-camera-interface/ios"; + name = RCTAnimation; sourceTree = ""; }; - C76CD146762370858BB354569B8CFC5C /* Pod */ = { + C79A7E1F2210F179617F4068C584618C /* UMFileSystemInterface */ = { isa = PBXGroup; children = ( - C16733B9B8B34F43D641B074AF7B5BF7 /* EXFileSystem.podspec */, + C38E697F0380E204A87634304D1BA36A /* UMFilePermissionModuleInterface.h */, + 1B5D07985E44D347482D2C60FB21AA98 /* UMFileSystemInterface.h */, + 6CB0A63B1979B934649355FBA7BC1448 /* Pod */, + E1C8820542E0485DA83FDF63C21CFC1C /* Support Files */, ); - name = Pod; + name = UMFileSystemInterface; + path = "../../node_modules/unimodules-file-system-interface/ios"; sourceTree = ""; }; - C9317E48B45C3BBF1BDD5FB57572831F /* Pod */ = { + C7CCA0B7053B79EB13EBC9D5095EB9E2 /* SafeAreaView */ = { isa = PBXGroup; children = ( - 9702C074918F8941A9CD4A559DC69C98 /* LICENSE */, - D0405BF1045B0253D9A9E693987428E3 /* README.md */, - 1D10BD810511D9A87BFF7272E30C6761 /* RNDeviceInfo.podspec */, + 578C7448E346DE8561914E2B2C5F8002 /* RCTSafeAreaShadowView.h */, + 209EC6B1CFDD67D26BF01EB368EE1C5B /* RCTSafeAreaShadowView.m */, + 4FA8D9EC2D91608728E19E9A5131048D /* RCTSafeAreaView.h */, + 867C547411E2C313D3A0DA997D2116A2 /* RCTSafeAreaView.m */, + 70CE642281CA8D9D9936616E20C83461 /* RCTSafeAreaViewLocalData.h */, + 14C17D0A3C0EE633524B1D1A7536FAE5 /* RCTSafeAreaViewLocalData.m */, + 04F01E5172B6C5A776BFC4B9357B36FD /* RCTSafeAreaViewManager.h */, + AF117CB4D8CCFDF797B6B744D0CFF88C /* RCTSafeAreaViewManager.m */, ); - name = Pod; + name = SafeAreaView; + path = SafeAreaView; sourceTree = ""; }; - C9E1C032168C38E8F0FC2A5673570F45 /* Support Files */ = { + C806BB04FDF3D77481FDAF913AF879CA /* react-native-orientation-locker */ = { isa = PBXGroup; children = ( - 89FC01CE5595DBF9AB70F52ED6801451 /* UMConstantsInterface.xcconfig */, + 30C2465E8E4F2472D21792948803A692 /* Orientation.h */, + 6F0F7FF534B0EB951C7D599177A02A07 /* Orientation.m */, + A44AA15BC67E886C71145CC8E93E6C73 /* Pod */, + 0514023BE076CE39BB0E728917BAC4FD /* Support Files */, + ); + name = "react-native-orientation-locker"; + path = "../../node_modules/react-native-orientation-locker"; + sourceTree = ""; + }; + C934109E4A86A42717AFE8D0E23252B7 /* UMModuleRegistry */ = { + isa = PBXGroup; + children = ( + 0AB34758CB6226F31950615104850E69 /* UMModuleRegistry.h */, + DB2A8AD245AFE08396D8D8F9FD706224 /* UMModuleRegistry.m */, + A4B37481584A56108ED41687F5618E98 /* UMModuleRegistryDelegate.h */, + ); + name = UMModuleRegistry; + path = UMCore/UMModuleRegistry; + sourceTree = ""; + }; + C96A686DC29DA904D0E7909B58C05166 /* Support Files */ = { + isa = PBXGroup; + children = ( + F39F957EE78F6972CFF21AE70EC90989 /* EXHaptics.xcconfig */, + 1AB73FA574D706AF1125FB6A78CF44D8 /* EXHaptics-dummy.m */, + FA2EBE96991A3F46A9C68E1AE87EC93D /* EXHaptics-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; + path = "../../../ios/Pods/Target Support Files/EXHaptics"; sourceTree = ""; }; - CC30E5101D041BB5AB5674B7435FAC38 /* Support Files */ = { + CD4497F784D8F4AB0A7EF4E7BABADB65 /* SurfaceHostingView */ = { isa = PBXGroup; children = ( - E64DE1DD89A7942683A36A1A8A372F72 /* UMSensorsInterface.xcconfig */, + EAD548BD5653AE2D363A6BA516C44D1A /* RCTSurfaceHostingProxyRootView.h */, + E7C450EF87F26A187CA1B529847609F6 /* RCTSurfaceHostingProxyRootView.mm */, + 976FE6ACE242ABDFF3D838A1BBC9B65F /* RCTSurfaceHostingView.h */, + 409B65BE1C266F7595AC9D7776D5EDDF /* RCTSurfaceHostingView.mm */, + 82A924397B2E5E6EF9CAEE85948920B3 /* RCTSurfaceSizeMeasureMode.h */, + 00E487917B4B6729921665515E754EA1 /* RCTSurfaceSizeMeasureMode.mm */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; + name = SurfaceHostingView; + path = SurfaceHostingView; sourceTree = ""; }; CF1408CF629C7361332E53B88F7BD30C = { isa = PBXGroup; children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, - 85B979BAE741DA8E210FF9DDE4561AD2 /* Development Pods */, + 8EBBB3FEDB8ED83929B66BD1547421A1 /* Development Pods */, D89477F20FB1DE18A04690586D7808C4 /* Frameworks */, 4FC37C41F11924A2602F786314152701 /* Pods */, - FAF6BC2FF500ACC91531B00C2A3F45EF /* Products */, + EE073E38D198FB86E54839B12B600FB8 /* Products */, 64F063D584DCC83598AB7F1D35E7F984 /* Targets Support Files */, ); sourceTree = ""; }; - D1163E55C85CBCBB2D1FC1BB466E9963 /* UMFileSystemInterface */ = { + CF3442318B5324C912DFF28C5117F6A4 /* Pod */ = { isa = PBXGroup; children = ( - FDCE0E8BC5A6079D5F2076963248B0CE /* UMFilePermissionModuleInterface.h */, - 98467784096BBF54A91005EAECEA4DEC /* UMFileSystemInterface.h */, - 8CE9803A5BF46CE639B09BFF10815D80 /* Pod */, - 637C9FBB4F546D5E50D93843856E8B0A /* Support Files */, + 4E32EF5525D9AC351428435A1F8AE942 /* yoga.podspec */, ); - name = UMFileSystemInterface; - path = "../../node_modules/unimodules-file-system-interface/ios"; + name = Pod; sourceTree = ""; }; - D1BF99C3954B1F08F3ED04754CE8138D /* Support Files */ = { + D0029FB6AA13C305A4B0543872B794A5 /* Pod */ = { isa = PBXGroup; children = ( - AEE99FF50F74B0F5A9508B6172E99ECD /* EXWebBrowser.xcconfig */, - 8EA29490485CCCD275CA36AE44EFF99A /* EXWebBrowser-dummy.m */, - 166E092BB2C52623FFAA0AC668906A43 /* EXWebBrowser-prefix.pch */, + 3DD134E1D085F13341A8CAF562F35E60 /* EXFileSystem.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + D2369A74E8A4FE773BE1E84F13CAE4FC /* Support Files */ = { + isa = PBXGroup; + children = ( + 9FBEA0FA2998769195041F5EA95969D2 /* EXAppLoaderProvider.xcconfig */, + F24BDA301DF015046877497F11CA84B0 /* EXAppLoaderProvider-dummy.m */, + A1B30E172F3E53F991240743CF690AA8 /* EXAppLoaderProvider-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; + path = "../../../ios/Pods/Target Support Files/EXAppLoaderProvider"; sourceTree = ""; }; D244689683E954BC8C0AE8160EEEFCA5 /* Pods-RocketChatRN */ = { @@ -4994,15 +4884,6 @@ path = "Target Support Files/Pods-RocketChatRN"; sourceTree = ""; }; - D254C9E6AD25E87514BE695378DA115D /* Support Files */ = { - isa = PBXGroup; - children = ( - E1B74A70CCC7CAA762BFA3204313080C /* UMTaskManagerInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; - sourceTree = ""; - }; D2EF23320DAD5A5B1FC7AF07287026CF /* Support Files */ = { isa = PBXGroup; children = ( @@ -5014,6 +4895,30 @@ path = "../Target Support Files/nanopb"; sourceTree = ""; }; + D3F715541331796BA25C32912C61218D /* UMTaskManagerInterface */ = { + isa = PBXGroup; + children = ( + E87AFF6DBB322AB1FB509924E17D96CD /* UMTaskConsumerInterface.h */, + 82D7CF234B5EBBC60EDFBCAF52E101BD /* UMTaskInterface.h */, + 07343F5E3630F2A34ACB32BEA59786B4 /* UMTaskLaunchReason.h */, + 282E415EC1FD110B419F1E6B49DF3FF1 /* UMTaskManagerInterface.h */, + 197FD76673D99F185ACA197763AF39A2 /* UMTaskServiceInterface.h */, + E75BE9A391AED2B0D3D08C00F7261669 /* Pod */, + 293E415FF302C64E2E18BBCCD7B28BA1 /* Support Files */, + ); + name = UMTaskManagerInterface; + path = "../../node_modules/unimodules-task-manager-interface/ios"; + sourceTree = ""; + }; + D44819C922D9EE63D85E4CCD8A08FBA8 /* RCTLinkingIOS */ = { + isa = PBXGroup; + children = ( + 6D650F9532244D55BD7A8C0F6DDC1104 /* RCTLinkingManager.h */, + 551EC296FD24DFB91133D21611F27E2D /* RCTLinkingManager.m */, + ); + name = RCTLinkingIOS; + sourceTree = ""; + }; D5508FF389A7D2254703F631B15372D7 /* AppDelegateSwizzler */ = { isa = PBXGroup; children = ( @@ -5025,52 +4930,6 @@ name = AppDelegateSwizzler; sourceTree = ""; }; - D5EB1660BD5586CCE4E7C13914F966A4 /* Pod */ = { - isa = PBXGroup; - children = ( - E00C3D0370833DA8695C725D67ED9D01 /* EXWebBrowser.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - D769449412215D6A5A3D293D956003C8 /* Pod */ = { - isa = PBXGroup; - children = ( - 32803217E4A256F8BC3C89E13431E640 /* LICENSE */, - 67AE94719A7798E468DA85119F97BBF7 /* React.podspec */, - 102E8941D3B089BE00CAD83D22C39A33 /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - D831C007C1BC2FD77820B4049E5217BC /* react-native-webview */ = { - isa = PBXGroup; - children = ( - ABC46FE48BA2DEE30F9D771C6471DB9B /* RNCUIWebView.h */, - 070BEB7A593BFA8899ED9BA8B075474F /* RNCUIWebView.m */, - 86A72E4085A8D43C3A255DEAF8CC3E20 /* RNCUIWebViewManager.h */, - 5F07D8DD9CF1C67C9C705550A34FDB2A /* RNCUIWebViewManager.m */, - 8BE8C16CA396C3230F20A627AA2E5FB9 /* RNCWKProcessPoolManager.h */, - AEE0D54ECCD2FDB1FAF07FA0C8100E95 /* RNCWKProcessPoolManager.m */, - 8C84EC04AA33468AE8AD356D9EE50376 /* RNCWKWebView.h */, - E2BCC7850DC89B9B85C8AC790046B7AD /* RNCWKWebView.m */, - EC9F8AC8C58E24BED5CED6DACF4BB663 /* RNCWKWebViewManager.h */, - 68B0335C8C9575C0D4D35D706F2044F8 /* RNCWKWebViewManager.m */, - BB30408BC815964E13F8BB51BE9332B0 /* Pod */, - 171B894E5EE3A03D0D06EFC4F017C13B /* Support Files */, - ); - name = "react-native-webview"; - path = "../../node_modules/react-native-webview"; - sourceTree = ""; - }; - D8629D99CCD612FD64762FF236237313 /* Pod */ = { - isa = PBXGroup; - children = ( - 6EE30D2408F7DFCA3658856CD03A8644 /* UMCameraInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; D89477F20FB1DE18A04690586D7808C4 /* Frameworks */ = { isa = PBXGroup; children = ( @@ -5078,35 +4937,11 @@ name = Frameworks; sourceTree = ""; }; - D97D4F0A6EBC83C43B39F5DF505938C3 /* UMSensorsInterface */ = { + DAAA049476DDF3053AFC4AA84593F6F4 /* Interfaces */ = { isa = PBXGroup; children = ( - 73225AB78F3B0FF0F425B9B44B1B5216 /* UMAccelerometerInterface.h */, - 7993CEB6672E0783B2E199A5DA393C59 /* UMBarometerInterface.h */, - F3F28FABDF89CEE4A86F3FBD6A1870AD /* UMDeviceMotionInterface.h */, - A86EF55247C722A0357BF037BB9FEEC2 /* UMGyroscopeInterface.h */, - 50EC1AF9B3A0F16304961F5BB87FCAA6 /* UMMagnetometerInterface.h */, - 8920CC8B1F2B1F7674884A1BCD4F3C45 /* UMMagnetometerUncalibratedInterface.h */, - 9A71BEC3EE782055509AFF2C64E932DB /* Pod */, - CC30E5101D041BB5AB5674B7435FAC38 /* Support Files */, - ); - name = UMSensorsInterface; - path = "../../node_modules/unimodules-sensors-interface/ios"; - sourceTree = ""; - }; - D99532FC5A17FD8B68D1F3FB0220881E /* Pod */ = { - isa = PBXGroup; - children = ( - 60CFEF9F7605ABF7E595A0BA9D026573 /* UMConstantsInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - DA3CB1A5B7D536FB3B9ED16BBDC99992 /* Interfaces */ = { - isa = PBXGroup; - children = ( - 2CFEEAB193348ACA0AA563CB2FD04959 /* EXAppLoaderInterface.h */, - 50FB219D676A89DE3DF6CA01AB58EA75 /* EXAppRecordInterface.h */, + 77EFD59CE8873E857BFA58366E5D2E9D /* EXAppLoaderInterface.h */, + 01E22853C31DA3187F652F1C6C9C928E /* EXAppRecordInterface.h */, ); name = Interfaces; path = EXAppLoaderProvider/Interfaces; @@ -5129,15 +4964,20 @@ path = "../Target Support Files/FirebaseRemoteConfig"; sourceTree = ""; }; - DF2C96FD98A73227D68CFBF45BBCBACF /* UMModuleRegistry */ = { + DF04A1AA4EE96F641AC40B03F823A859 /* RNImageCropPicker */ = { isa = PBXGroup; children = ( - F8B76EAD3E3566DCBE6DE74D2760AB72 /* UMModuleRegistry.h */, - 3C92D3016EE0A05A1A5AB6FF66E30D27 /* UMModuleRegistry.m */, - 7BCEE58EC2C9BB07E7BF2D8577775B77 /* UMModuleRegistryDelegate.h */, + 314D05E5073ED296968D8672E5E83DF4 /* Compression.h */, + 4813E6EFD62CD203067FC71A32FA3C5F /* Compression.m */, + 88D5B80B7892B20000CBBC322AFEB611 /* ImageCropPicker.h */, + 45703846CE1DB61639D42106EFF7B9E0 /* ImageCropPicker.m */, + AC554B525FBFFA961C04F993894573F2 /* UIImage+Resize.h */, + 768F87DC4852B38BEF00A4A8FCC3AB2B /* UIImage+Resize.m */, + ACC440BEDD5514B0EA087A459AED06D9 /* Pod */, + A4E93F89A83D022106045C4301C226DF /* Support Files */, ); - name = UMModuleRegistry; - path = UMCore/UMModuleRegistry; + name = RNImageCropPicker; + path = "../../node_modules/react-native-image-crop-picker"; sourceTree = ""; }; E0532FB94575FED5D3154EFB3E5EA1F7 /* Frameworks */ = { @@ -5148,69 +4988,190 @@ name = Frameworks; sourceTree = ""; }; - E53476E7E12B1B642BD97DDCF24C39CE /* UMConstantsInterface */ = { + E0642BA9B899E9001D5E744B56987DD4 /* Core */ = { isa = PBXGroup; children = ( - BD862400E6F6214DA01AEDD24D5EA209 /* UMConstantsInterface.h */, - D99532FC5A17FD8B68D1F3FB0220881E /* Pod */, - C9E1C032168C38E8F0FC2A5673570F45 /* Support Files */, - ); - name = UMConstantsInterface; - path = "../../node_modules/unimodules-constants-interface/ios"; - sourceTree = ""; - }; - E65E3F055D193361A249072B348A1F1A /* Support Files */ = { - isa = PBXGroup; - children = ( - 5F0E06511BF3A0BF1C6458AF3110DC25 /* UMBarCodeScannerInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; - sourceTree = ""; - }; - E78FFE19304AAF75D85F07686D4CB847 /* Core */ = { - isa = PBXGroup; - children = ( - 84FD1CD5B115436453649A88BB45EA3C /* Base */, - C2C652BA5C2AF88E5121B9178F9C898D /* Modules */, - FC35178E882C9933B5E69AA131F27BB6 /* Profiler */, - 163065CDA3BAC576AE6F42DD94AE0F8A /* UIUtils */, - 07AB1CE8C44CD8D976A85B7C8B56BD75 /* Views */, + B805F10A176296B3986CDB85B3AC9E87 /* Base */, + E79451F0677E37104BEAD73936E626A1 /* Modules */, + E66D5B44CBC441FCCDEA5508D0BDE1B6 /* Profiler */, + 1FDF41AF2DF2FE6F474F7370C4EDF264 /* UIUtils */, + FE74E608A0D876804CE47CEDF5998AC0 /* Views */, ); name = Core; sourceTree = ""; }; - E7EEEF5C3CA7566E17B960E4B2A0AC7A /* Support Files */ = { + E1C8820542E0485DA83FDF63C21CFC1C /* Support Files */ = { isa = PBXGroup; children = ( - 5AA513A34E8471B03A33D9E8FA6602C2 /* UMReactNativeAdapter.xcconfig */, - D31FB16267CEDFE0A248C8808965ACFF /* UMReactNativeAdapter-dummy.m */, - 236C18E8515BD4516AEC2BA981CAB35A /* UMReactNativeAdapter-prefix.pch */, + 46E2F3A63414B49026F96E10C3703EC9 /* UMFileSystemInterface.xcconfig */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; + path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; sourceTree = ""; }; - EAA73A773C5B38052F310F52E3542E49 /* Pod */ = { + E27C7350A86D6015E7AE1C66DC072578 /* Nodes */ = { isa = PBXGroup; children = ( - B803DDC2DF76E8BD3060E90CA469D47A /* UMCore.podspec */, + CFE4275D3166F47998683E795C8A1F64 /* RCTAdditionAnimatedNode.h */, + 79A12C8A13DD2D77DEA43CC9C788B385 /* RCTAdditionAnimatedNode.m */, + 24FA60F945D7CC199715947C68E6323D /* RCTAnimatedNode.h */, + C4CFE1C3D0DC4952E4E49F26994766F4 /* RCTAnimatedNode.m */, + 671894DE5AEEF8180CCD619CC2B82C1F /* RCTDiffClampAnimatedNode.h */, + 90DEED647674B2C18FB7940F4CBBB4FE /* RCTDiffClampAnimatedNode.m */, + 4C2F54D4567E64C55A310EA85A5C9A30 /* RCTDivisionAnimatedNode.h */, + 82AFF01A15189D525BCF85043DFB0DA5 /* RCTDivisionAnimatedNode.m */, + 2A4B6D67790545A2A6FE19258A55328A /* RCTInterpolationAnimatedNode.h */, + B3341AE2F0896FCF5F050849B5450897 /* RCTInterpolationAnimatedNode.m */, + 73959362E9D595EDC684963224747F14 /* RCTModuloAnimatedNode.h */, + 8CFAD7A2E52EE02EAB686A287E9A72CD /* RCTModuloAnimatedNode.m */, + DB44519971E29877A6D3272AE511CC8E /* RCTMultiplicationAnimatedNode.h */, + 25787F0112E0260C63401BA92441374D /* RCTMultiplicationAnimatedNode.m */, + C91AF315C8F6271873F5668C6895D917 /* RCTPropsAnimatedNode.h */, + B2351EDC3A3B0412CF3CEAC6899F657D /* RCTPropsAnimatedNode.m */, + D3A6AB6F1AF7998605B535EA3CBF7081 /* RCTStyleAnimatedNode.h */, + 58F84B35812027DC7E6F9CFA0D6FEE66 /* RCTStyleAnimatedNode.m */, + C389C50B3D234D54D438F4AF9EDB05CE /* RCTSubtractionAnimatedNode.h */, + B7602D67E87F986091A79A4B3FD61A54 /* RCTSubtractionAnimatedNode.m */, + 280316438456A666CBA37199D67FBA50 /* RCTTrackingAnimatedNode.h */, + E0CE4228F6C3CBF63E09C33C8FE8C4F9 /* RCTTrackingAnimatedNode.m */, + 4D462D3772FC348846A96F769DCD6694 /* RCTTransformAnimatedNode.h */, + AB6EC1F352B2025FCC86A286CA27FA5A /* RCTTransformAnimatedNode.m */, + 877B82C3FB4BBE7ABAAF325E98A9375A /* RCTValueAnimatedNode.h */, + 94C91FEBAD27630B0C9CA6E71D78A85D /* RCTValueAnimatedNode.m */, + ); + name = Nodes; + path = Libraries/NativeAnimation/Nodes; + sourceTree = ""; + }; + E66D5B44CBC441FCCDEA5508D0BDE1B6 /* Profiler */ = { + isa = PBXGroup; + children = ( + 6CCF3290611333EB29B32CAD535196A2 /* RCTFPSGraph.h */, + 9659F207EAC953CACC94E3B2178DEA8F /* RCTFPSGraph.m */, + 622300D8286AC50BDC3A03EEF47AC112 /* RCTMacros.h */, + BD5BC4FD8D50D413F2ACA4DF12193CB9 /* RCTPerfMonitor.m */, + 452FB7505CB7496C3FDCD350B322F2D7 /* RCTProfile.h */, + B048580B0A956799C5225096141C846C /* RCTProfile.m */, + 731E9DF93A8EAB05868EE38FAE9E7679 /* RCTProfileTrampoline-arm.S */, + CA766740E63182809C6209F49421A55E /* RCTProfileTrampoline-arm64.S */, + E37530AAABCD6AFC961C803C0254A30D /* RCTProfileTrampoline-i386.S */, + 53E97C06392066D484CE238F3EE67050 /* RCTProfileTrampoline-x86_64.S */, + ); + name = Profiler; + path = React/Profiler; + sourceTree = ""; + }; + E6ECE69AB692824BAE616E53A22663F7 /* Multiline */ = { + isa = PBXGroup; + children = ( + 4407FF264B896A177B8997F6E30DC285 /* RCTMultilineTextInputView.h */, + E1CB39C15B0AC9E7566816E528BC5577 /* RCTMultilineTextInputView.m */, + 5FE77BB2D46F3A06F6D1F63956D9DC35 /* RCTMultilineTextInputViewManager.h */, + 242133CA5D4D34CADF322DC7844D9649 /* RCTMultilineTextInputViewManager.m */, + 822C4E3023425B2B7CB1CF05CACBA89F /* RCTUITextView.h */, + 8CDFB1863CDCBBB8438EE6FBBCE7D94D /* RCTUITextView.m */, + ); + name = Multiline; + path = Multiline; + sourceTree = ""; + }; + E75BE9A391AED2B0D3D08C00F7261669 /* Pod */ = { + isa = PBXGroup; + children = ( + 697D2D342CC80D0A36BA5B3863D0B01A /* UMTaskManagerInterface.podspec */, ); name = Pod; sourceTree = ""; }; - EB97AA477561DB37B068AE498C8C55FB /* Multiline */ = { + E76F64E3B5ECD02D4B11D8F35C6126B2 /* UMModuleRegistryProvider */ = { isa = PBXGroup; children = ( - 3E948814E078FD9C8448F76AE607DA42 /* RCTMultilineTextInputView.h */, - 2297690D4ABFCDF008D8E9B9A9B6C6A1 /* RCTMultilineTextInputView.m */, - 26FC041BD2832565FE75E9C209D63F1B /* RCTMultilineTextInputViewManager.h */, - 752F345322A08948145286FB1D6CAAA2 /* RCTMultilineTextInputViewManager.m */, - 10F19AD99F05402B5CF41CDE5D6FBFAB /* RCTUITextView.h */, - 989C042BF54CB4D50D189FB244310612 /* RCTUITextView.m */, + 131A33F73617323A59A2341E446E70C6 /* UMModuleRegistryProvider.h */, + 61ADF25B04F0CA8332EF8296165904D3 /* UMModuleRegistryProvider.m */, ); - name = Multiline; - path = Multiline; + name = UMModuleRegistryProvider; + path = UMCore/UMModuleRegistryProvider; + sourceTree = ""; + }; + E79451F0677E37104BEAD73936E626A1 /* Modules */ = { + isa = PBXGroup; + children = ( + 0D17F3E4B583D4DE131D4E7BC3B81F6E /* RCTAccessibilityManager.h */, + 8437C9B3F6E691E0E4008162A033074F /* RCTAccessibilityManager.m */, + 04708FEB853CFDC182AEC8B33054A738 /* RCTAlertManager.h */, + 46CDD1BA8D627E02BD5EDDF0EFCEB1B2 /* RCTAlertManager.m */, + 886975FDA0141E28493EF470F77C09B4 /* RCTAppState.h */, + DA361B9CE86EE861D9F56B9A4292B2EB /* RCTAppState.m */, + 95CD838E261A55A1F4F9CD00E8B9F5AC /* RCTAsyncLocalStorage.h */, + 48C53DF684B6453DBD2E63BC07788F93 /* RCTAsyncLocalStorage.m */, + 0F9FF78D55B47107D28BC2D5C9EB8995 /* RCTClipboard.h */, + A1C983F30CE50697D99110EA25AB9D63 /* RCTClipboard.m */, + 09E2F8BF109D8BDFFCABE077E40A9C67 /* RCTDeviceInfo.h */, + 3D56419BF0D2606EF6A8EA4C5F5FF8D9 /* RCTDeviceInfo.m */, + C9C658DAE2CAF45CA2CD3AF1CC1003E4 /* RCTDevSettings.h */, + ADF8A31B3DCA65D7DA705DA41930FA51 /* RCTDevSettings.mm */, + 25403EFB00D76EF827E6F56A561ED23F /* RCTEventEmitter.h */, + BDB9CFFD52B062733B4926B39F3B7E42 /* RCTEventEmitter.m */, + 46AE75E4B5785AE7653BD3BA2848F6DB /* RCTExceptionsManager.h */, + 98FF8163CCDFF27138845788FB7674BA /* RCTExceptionsManager.m */, + 34B01B8C9AFCA6DE65B46F167094831C /* RCTI18nManager.h */, + C4D476D253F7378BD8816D014D638004 /* RCTI18nManager.m */, + C8FD6D2C85C06A396C8F16C8A889AA1D /* RCTI18nUtil.h */, + BC2071A169F5A39A11991F545D249A45 /* RCTI18nUtil.m */, + 212E858C05B53E277BD9415D2C661D11 /* RCTKeyboardObserver.h */, + CF6E776002B29E81DF187AABECD07332 /* RCTKeyboardObserver.m */, + 087E9ADF8236C301AB59A185CC45EC19 /* RCTLayoutAnimation.h */, + CD02C0562B0FFBAFDA6BFA52D6A153E0 /* RCTLayoutAnimation.m */, + 8DC74C0EDE63E9F1E216C8409A3AEA0D /* RCTLayoutAnimationGroup.h */, + 5F546F4AB5917CEEF41F96B5627D803B /* RCTLayoutAnimationGroup.m */, + 1CDECF07E208E665E6CF351D281428F3 /* RCTRedBox.h */, + 86D2250AD738642C24D4EF3C5B70A7CA /* RCTRedBox.m */, + D68A920C27C8AB0F039567E129DD4EDC /* RCTRedBoxExtraDataViewController.h */, + 5076DBC720B08277493CC7DA8D639E7B /* RCTRedBoxExtraDataViewController.m */, + 3EDB476D8B34F515510BC923D6622EED /* RCTSourceCode.h */, + E2F3EF181DD3E222928ECF419D3DF926 /* RCTSourceCode.m */, + A0EE3C7A7248BB3CC01ECBA2A2159E25 /* RCTStatusBarManager.h */, + 8292B90905C31EB5F48D13269BD3DA2A /* RCTStatusBarManager.m */, + 11787684DC77AE767DE6F48E612B3BC0 /* RCTTiming.h */, + CF72924BC22E3CAD5A963AC686441AFC /* RCTTiming.m */, + F32F4FC839E260282273D3F87B65EDA8 /* RCTUIManager.h */, + FB30B6D4A5F6696225AA3EA814FEF3D1 /* RCTUIManager.m */, + 6E455FF120AC663B6A49B08D70DF4392 /* RCTUIManagerObserverCoordinator.h */, + D097D5F1D4776DF557A4F80AC6DE856D /* RCTUIManagerObserverCoordinator.mm */, + EAF638C11CE385E1EE6B92E4078C1367 /* RCTUIManagerUtils.h */, + 48D8B4C4E85A097007638447DCB3C980 /* RCTUIManagerUtils.m */, + ); + name = Modules; + path = React/Modules; + sourceTree = ""; + }; + E8A2534B3BAF89B25A2C8D347397AA1C /* RCTWebSocket */ = { + isa = PBXGroup; + children = ( + C4F1B512112E8ACE3DB1722761DF685A /* RCTReconnectingWebSocket.h */, + DE6CFDABE348E6F20ACB6F0BC494B55F /* RCTReconnectingWebSocket.m */, + F6D12960CE2A42C0DF2D04780C4714BB /* RCTSRWebSocket.h */, + 7FE3F2556C79961D1FF12F5F8C303A73 /* RCTSRWebSocket.m */, + 4F53A559B54BE3326E9015D493D9CEA1 /* RCTWebSocketExecutor.h */, + 2FB8C0A51ED0ED0AD207B78978B702D6 /* RCTWebSocketExecutor.m */, + B4A49C8ADF17B46A5390DF8F9B96F654 /* RCTWebSocketModule.h */, + A8C39EC3E20CECFF27BD909C9DADFA33 /* RCTWebSocketModule.m */, + ); + name = RCTWebSocket; + sourceTree = ""; + }; + EAC063757E42C23580C8A3A53057CBEB /* EXConstants */ = { + isa = PBXGroup; + children = ( + 9F47148CA0E691E6075E92F8BD369FF3 /* EXConstants.h */, + BB481D55BBF0D87F8B6F86A90C8FCA5C /* EXConstants.m */, + 442AF148F9AC98F51A17A3BBE56A8080 /* EXConstantsService.h */, + C1F7D91F79DF3ECBB3A4888BEE5178A7 /* EXConstantsService.m */, + 800C7C580C4F6E2DEFFB4C50186541C4 /* Pod */, + 148DB9331379B809877035B41BD9CFBE /* Support Files */, + ); + name = EXConstants; + path = "../../node_modules/expo-constants/ios"; sourceTree = ""; }; EC1D43D3456DEC6DFC924F6B5ECE8CEA /* Resources */ = { @@ -5226,47 +5187,72 @@ name = Resources; sourceTree = ""; }; - EC7F8AB8A83E4EE5881FF2DA6599FC4C /* Support Files */ = { + EC5C022A2A3F8703D09888A0075FA271 /* RCTNetwork */ = { isa = PBXGroup; children = ( - 512F48B528D5E095DF06C40A538A4B0E /* RNScreens.xcconfig */, - 09A78AE91C0AB9A9980300C4A7BD3248 /* RNScreens-dummy.m */, - A9E49775B4EB815239C0A7798B3FDE98 /* RNScreens-prefix.pch */, + 4E40B66DCC9CFCD0C02A0490A1CE1171 /* RCTDataRequestHandler.h */, + 812033C55FA2D92ECB175BB549062E1F /* RCTDataRequestHandler.m */, + 8BD748049286FE38A40B357E452C2379 /* RCTFileRequestHandler.h */, + E4A31D19C52C328D0BCBEE400C3769C5 /* RCTFileRequestHandler.m */, + E6DC125BD436EFD9274AAE9DF04851F3 /* RCTHTTPRequestHandler.h */, + 01A87C1C544DF11D4DF3F98BBD361C9D /* RCTHTTPRequestHandler.mm */, + 2C62DDB1421BE880D37252DC52979D32 /* RCTNetInfo.h */, + 59392C2E76B751E2745378AE6F20E566 /* RCTNetInfo.m */, + 143572E865F542D8A15AFCD716CC0928 /* RCTNetworking.h */, + 48CB9E930814389B7DC475912107F0C4 /* RCTNetworking.mm */, + D706DA86F1882F67F7BE54941094F60B /* RCTNetworkTask.h */, + 5DA976C96E2253139E9F32D30F9810FA /* RCTNetworkTask.m */, + ); + name = RCTNetwork; + sourceTree = ""; + }; + ED2136F27A1AC7DAB3CAF7A41F4F2551 /* Support Files */ = { + isa = PBXGroup; + children = ( + 209CE90884546876425C915C7DE98975 /* react-native-webview.xcconfig */, + 95761EFC80826A70953FC6062A07A30E /* react-native-webview-dummy.m */, + C15C7C32BB854500F12EFEDDFE7C6FBE /* react-native-webview-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNScreens"; + path = "../../ios/Pods/Target Support Files/react-native-webview"; sourceTree = ""; }; - ECCC9172BD620FD893742432229CF05F /* RCTBlob */ = { + EE073E38D198FB86E54839B12B600FB8 /* Products */ = { isa = PBXGroup; children = ( - 04A139852A19B19D0EABE8AB2F784E35 /* RCTBlobManager.h */, - 417DCE252542E70D7A54637CCF712A07 /* RCTBlobManager.mm */, - ACAFC054577B24C97E5F26ED725AA663 /* RCTFileReaderModule.h */, - 8C6257FE439CBF842CB7065B3062A429 /* RCTFileReaderModule.m */, + 9AF0420C796D08009B79258FBF2075BF /* libDoubleConversion.a */, + 9A7C44DDA12020393029A467531D3839 /* libEXAppLoaderProvider.a */, + 43498D74C6A4204CF8441A0E92273653 /* libEXConstants.a */, + 5E414F340DFDDD3CFCBB65D28556C882 /* libEXFileSystem.a */, + 9BA0A1F85D58A3D226EAE026A17661F4 /* libEXHaptics.a */, + E2EF6A14FFEE541517297ABA63D310EC /* libEXPermissions.a */, + 5183A53E1333DC32E38E5FCD369B54E9 /* libEXWebBrowser.a */, + 0C44DAD6CFBBE288838ECCC94A1EAFAB /* libFirebaseCore.a */, + 3FDB077D3E7DB144D6D4FA80D7D669C3 /* libFirebaseInstanceID.a */, + 156421640D34D8220CA95A9EA059508F /* libFolly.a */, + D3A653F567444EEAAFA22097C11FA70A /* libglog.a */, + 01FBBF732AF396F5D14B534B12DAD345 /* libGoogleToolboxForMac.a */, + 7906BFCA17E93A5C920FC69013A8B802 /* libGoogleUtilities.a */, + 4829B3B783E057A5B872870E722CDCF0 /* libGTMSessionFetcher.a */, + E0D470315CFE4024716A1076E354B65F /* libnanopb.a */, + C272B93792665BDB0D95E18345086C2A /* libPods-RocketChatRN.a */, + C8869378C5667F5922A8A45A942F4C0F /* libProtobuf.a */, + DC4CCEDF80012E99F5FF8BBA53F19406 /* libQBImagePickerController.a */, + 181176D3E5A281F29E09DB51F6DA4A7C /* libReact.a */, + D4996F9DE37AD30C6EBDCB36B3BB94BE /* libreact-native-orientation-locker.a */, + 714C5B51AE1B1FED60435E33489164DA /* libreact-native-splash-screen.a */, + FF878C7B4FE6C7FEDD7932FEA114D007 /* libreact-native-webview.a */, + 8DD144CE7E724586F0F88EF8788663AA /* libRNDeviceInfo.a */, + 945C970F7377EA4DC2C6CAE4A41B80BE /* libRNImageCropPicker.a */, + 33C6CF0EA084E16BD1D97452060679E9 /* libRNLocalize.a */, + C84865215A1349621CE1711245EE16EB /* libRNScreens.a */, + F167613932A26F1D49B73114C21BCD03 /* libRSKImageCropper.a */, + 451647C74153E3571F04F1487A7BFC62 /* libUMCore.a */, + A3E78F3A04EC8F4E4F2C5C8B162C6ECE /* libUMReactNativeAdapter.a */, + CE7CDF47ECA304D288B260979AFB5BF1 /* libyoga.a */, + 4401736364B38C1860579F32F9A5790E /* QBImagePicker.bundle */, ); - name = RCTBlob; - sourceTree = ""; - }; - ED8658F89627744385F385E6090E1FCB /* Pod */ = { - isa = PBXGroup; - children = ( - F7EBFA131625D8C8EC6418154D75028B /* LICENSE */, - D9E24C1EBBFFE4332ECFCC2E328784AF /* README.md */, - F621535702BC530B305258AF577CAC66 /* RNImageCropPicker.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - EE6073E8F59E626EA9A23043EC0DF6C4 /* Support Files */ = { - isa = PBXGroup; - children = ( - DAD8F3EB0214887CD104E448BC311359 /* EXHaptics.xcconfig */, - E0171286B77C2C7D14BF54B56E2C8AD7 /* EXHaptics-dummy.m */, - D43DE3C3FD78359AD0DE8E020B258B0D /* EXHaptics-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXHaptics"; + name = Products; sourceTree = ""; }; EE62BD8EC40FF1A02106C6D24CFDC916 /* Resources */ = { @@ -5277,6 +5263,17 @@ name = Resources; sourceTree = ""; }; + F172D18EDFA8BD649A9D10EB6EC74F5C /* Support Files */ = { + isa = PBXGroup; + children = ( + 8EAD830644BBAFD06794027D2B29F2AA /* React.xcconfig */, + C98845C3EC72C6A4EA95B8CC75D68D7D /* React-dummy.m */, + 5A11D9678F81B30C6958F2BDBF3277C0 /* React-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/React"; + sourceTree = ""; + }; F37F24F4DE8751D348D5C1E11C379D23 /* Frameworks */ = { isa = PBXGroup; children = ( @@ -5285,19 +5282,46 @@ name = Frameworks; sourceTree = ""; }; - F81A43928179599EDCDD344AD0B56DD1 /* RCTWebSocket */ = { + F74797BB952E054ED491873A4DFE3E97 /* Support Files */ = { isa = PBXGroup; children = ( - E9844D2C5F4C50E80834AF5030647790 /* RCTReconnectingWebSocket.h */, - 03FD6BD36A6D81E1716E13A3CC10F5DD /* RCTReconnectingWebSocket.m */, - EF06AA35EF837868548DB980DF9D695A /* RCTSRWebSocket.h */, - 80CA5FBCD652FA172FC2A688ADE43748 /* RCTSRWebSocket.m */, - 68E26BDD250FF381A64445A0F4B96265 /* RCTWebSocketExecutor.h */, - F8C441CE10BCCF2489B026BB3251A226 /* RCTWebSocketExecutor.m */, - 72DF07BD2FB92D441EF7B3FA6CB55283 /* RCTWebSocketModule.h */, - DB829DED104EB7C4EC77420AF2CCB6A6 /* RCTWebSocketModule.m */, + E28FFD8724E81612B4508CFD87EFCAE0 /* UMBarCodeScannerInterface.xcconfig */, ); - name = RCTWebSocket; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; + sourceTree = ""; + }; + F7C70A77AA7B40D7D5575AE80D82DF1B /* react-native-splash-screen */ = { + isa = PBXGroup; + children = ( + 4FA705D50B47AE2B0F8998E1CE9B0A7C /* RNSplashScreen.h */, + B2B4D354F0A7C4BCC171DC00AD46FB98 /* RNSplashScreen.m */, + FBC82EDC00FABD82A27382888726E6E3 /* Pod */, + FA2DA55ADFEB2D038FF3D15DEE579078 /* Support Files */, + ); + name = "react-native-splash-screen"; + path = "../../node_modules/react-native-splash-screen"; + sourceTree = ""; + }; + FA2DA55ADFEB2D038FF3D15DEE579078 /* Support Files */ = { + isa = PBXGroup; + children = ( + 1D4379538C8659161388358F6135F1C1 /* react-native-splash-screen.xcconfig */, + A878A65FCD21B42522DAB206BF0A19C1 /* react-native-splash-screen-dummy.m */, + 2B3B31FCA5B0A83F62EBE2E093BD78D0 /* react-native-splash-screen-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-splash-screen"; + sourceTree = ""; + }; + FA5A14F29E14D8E66C9DE881CB111A3F /* UMViewManagerAdapter */ = { + isa = PBXGroup; + children = ( + 533EBD8A99F93F6E2944044F0931F51D /* UMViewManagerAdapter.h */, + 55D0B57585A24C53FE4784D0EAC36D02 /* UMViewManagerAdapter.m */, + ); + name = UMViewManagerAdapter; + path = UMReactNativeAdapter/UMViewManagerAdapter; sourceTree = ""; }; FA8E2D778E17E14E4BBDE0345736D9C2 /* DoubleConversion */ = { @@ -5339,65 +5363,12 @@ path = GoogleToolboxForMac; sourceTree = ""; }; - FAF6BC2FF500ACC91531B00C2A3F45EF /* Products */ = { + FBC82EDC00FABD82A27382888726E6E3 /* Pod */ = { isa = PBXGroup; children = ( - 476EBA93A075484B635152ABFAF7FC0A /* libDoubleConversion.a */, - C0D19704B2324B51348F1340528D4C3D /* libEXAppLoaderProvider.a */, - 0129BE267A6BC9CF08516876B5D3BB4E /* libEXConstants.a */, - E423A1042B4C33D937036DEB76B7BBC5 /* libEXFileSystem.a */, - D7963DE47189F5A5D556E6FEFFDC83F9 /* libEXHaptics.a */, - 99CB74C0216C5CDF770364DDB2323F64 /* libEXPermissions.a */, - 3DE98D4B5F1042E125310C2EFC43A00D /* libEXWebBrowser.a */, - 80EC2BD18EB1CD25F8BD8EE550EBD936 /* libFirebaseCore.a */, - 0430C4D5C4BD6719EE905E8C7A1AAFD7 /* libFirebaseInstanceID.a */, - 32F45697D6853712C03725F089D38862 /* libFolly.a */, - 43AA68F7F6D2872A77E7A8636C226251 /* libglog.a */, - 42186B0B9F605965E1DD092DEFDCBA72 /* libGoogleToolboxForMac.a */, - F25405EA15F70384E1C3A2E47E3B5FF2 /* libGoogleUtilities.a */, - 34563A526156F5D33048FF189E22C2CF /* libGTMSessionFetcher.a */, - 257CF57FD32567C2B877CAB1890986FD /* libnanopb.a */, - 3A3B2CA4CD14211901467AB43602EE3F /* libPods-RocketChatRN.a */, - 0002EEB829E356E7644F12B4366241A0 /* libProtobuf.a */, - 024163D62F7A659E9A84F43885AC85DB /* libQBImagePickerController.a */, - 3E279381E92B4B894F51BA69E18AFB4F /* libReact.a */, - 19B738B0EE24C530176A859D5C642DD5 /* libreact-native-orientation-locker.a */, - C99363CDFE331A7A203AA7057DA0B950 /* libreact-native-splash-screen.a */, - 5946684FA30A5B9D7A005137B2A405C9 /* libreact-native-webview.a */, - 9BACF3523027510533E065E3A56D1F5B /* libRNDeviceInfo.a */, - A83FF1D80122DFC1366631D1E2A9937C /* libRNImageCropPicker.a */, - C83626728F7E9ECDFC89A428881F8A65 /* libRNScreens.a */, - 72BE02F62E749A6CECDB52ADE6E505A5 /* libRSKImageCropper.a */, - A62F04C35780B585556EC81E33AD25A3 /* libUMCore.a */, - 7A83942D042DAF5CB456A7113DAF9EBD /* libUMReactNativeAdapter.a */, - 1D0EE3C9D66D0F1931EAABC791242C49 /* libyoga.a */, - 360B14DF3849B500D6FF5B60F39646F3 /* QBImagePicker.bundle */, - ); - name = Products; - sourceTree = ""; - }; - FC35178E882C9933B5E69AA131F27BB6 /* Profiler */ = { - isa = PBXGroup; - children = ( - 6B5A3C8152D2BB24A9A809E906446DC0 /* RCTFPSGraph.h */, - ABD43E0CDF8654FC5FF0384F8D8ABBC4 /* RCTFPSGraph.m */, - DE4CD6D56121B8253900DFB4D0480989 /* RCTMacros.h */, - D81C363C5E5880D5A30BCDEFD019D38E /* RCTPerfMonitor.m */, - A8A7DB3D5605EA1278284A0718741C9B /* RCTProfile.h */, - 1E3973427DC4CF787F6E14DAFCC2C0A0 /* RCTProfile.m */, - 58DBBEAD853B349A05983023D738A1F1 /* RCTProfileTrampoline-arm.S */, - 8E4F5F1F69265D3D1CB1F4B361658EDD /* RCTProfileTrampoline-arm64.S */, - D2B70D075F2ED56C557779B6D990E0BF /* RCTProfileTrampoline-i386.S */, - 763C0C8C1209E6DB666A36830D86BA39 /* RCTProfileTrampoline-x86_64.S */, - ); - name = Profiler; - path = React/Profiler; - sourceTree = ""; - }; - FC47FAA5A74FB04ACB75549DC0E15DFE /* Pod */ = { - isa = PBXGroup; - children = ( - 15A5A14893F9FF44A537A51111DDD25C /* EXPermissions.podspec */, + 7493A3964D462C9904EE9BA805935B41 /* LICENSE */, + 2C64374B61D49730E469417EABB75CF0 /* react-native-splash-screen.podspec */, + 14AA4F6D5081F5F2E892516A51F0FC25 /* README.md */, ); name = Pod; sourceTree = ""; @@ -5412,15 +5383,6 @@ path = FirebaseRemoteConfig; sourceTree = ""; }; - FC5644D8A523D0FCDD10510BAF562A14 /* RCTSettings */ = { - isa = PBXGroup; - children = ( - 46F590AB337FE119D6EC99D7C224E796 /* RCTSettingsManager.h */, - DFAA547ED8AC03190FE6E7D9C0682EE4 /* RCTSettingsManager.m */, - ); - name = RCTSettings; - sourceTree = ""; - }; FCFC61C90C577CDF662B11CD4C0493E6 /* GoogleAppMeasurement */ = { isa = PBXGroup; children = ( @@ -5431,47 +5393,206 @@ path = GoogleAppMeasurement; sourceTree = ""; }; + FE16D7F4F6EAD412017A8D2B98111775 /* Support Files */ = { + isa = PBXGroup; + children = ( + BB59CCF24B175ECD0EA022876FE3625F /* UMPermissionsInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; + sourceTree = ""; + }; + FE74E608A0D876804CE47CEDF5998AC0 /* Views */ = { + isa = PBXGroup; + children = ( + D305E109C5526F02464DADCE54BA66BC /* RCTActivityIndicatorView.h */, + F978188633FA8256F739940A31127E46 /* RCTActivityIndicatorView.m */, + B2D592CEA6DCD2CF17B0B5A5A596A2A0 /* RCTActivityIndicatorViewManager.h */, + 842F836A19D1686CBAF33E321859D16C /* RCTActivityIndicatorViewManager.m */, + EB00D6DA9EFD5124B59A411BD9E536DA /* RCTAnimationType.h */, + ACEE89E34E5E0B20156FABD5325BD98B /* RCTAutoInsetsProtocol.h */, + 0A5F3313985401FBEC0F139688BA7E8D /* RCTBorderDrawing.h */, + 56EBC990921FF32F5CCA9D756F6E8CDE /* RCTBorderDrawing.m */, + 5FC2249CCCEEF30FD1AF3D62EDCB4509 /* RCTBorderStyle.h */, + DACD21A90EDC93D6A83471E94B5E404D /* RCTComponent.h */, + 9CEEA3B260C67051CDE905F475B41317 /* RCTComponentData.h */, + B007576835E0532B5F78901313E14EC2 /* RCTComponentData.m */, + 55AA1497D8FF39EAF4EBE70A086D8C7A /* RCTConvert+CoreLocation.h */, + 87D2EBB805EBB8FFE073BB59E7E27A2F /* RCTConvert+CoreLocation.m */, + A7519345BCB4D7233335222AF9408932 /* RCTConvert+Transform.h */, + C5AA806681541DEB3C7BF0A39CB9F076 /* RCTConvert+Transform.m */, + C59B72E68A0F7164F5C4F2FA03CED07A /* RCTDatePicker.h */, + 4836B1138BD8F18F9A130870049B5E79 /* RCTDatePicker.m */, + FFA805BA07966173606F8AD230344B58 /* RCTDatePickerManager.h */, + 313FD47BA0BB0C721193A56C3AAEBCD5 /* RCTDatePickerManager.m */, + 28225A0AAFDAE79C5315CD1D603DFDC1 /* RCTFont.h */, + D7A78A00E15E2494C3FDD8640B3B01FE /* RCTFont.mm */, + A63B41FD2BAEEB8EEA740898597523D0 /* RCTLayout.h */, + 146DFB61855E63A5FD72833EBE0326C6 /* RCTLayout.m */, + 65A9BDC9AD747BDFFA787E7D69A4234B /* RCTMaskedView.h */, + C8C4887E5D02345D6102DB7F1BCD938D /* RCTMaskedView.m */, + A6D60ECED824AD7D0FAE7E5A4FFAA45A /* RCTMaskedViewManager.h */, + 9DB43B293041411A51C71D32D3019051 /* RCTMaskedViewManager.m */, + 0B9D1117376103E78E0CB7123A576165 /* RCTModalHostView.h */, + 68B1532273B369E6B91BC4D3BF795D8D /* RCTModalHostView.m */, + 2046ABB4F70845F305181E1B92FE056E /* RCTModalHostViewController.h */, + 562717B056346B023BF70BBFDB082C2F /* RCTModalHostViewController.m */, + BB40BF9AADABC7251FA0A8FEFFF598B3 /* RCTModalHostViewManager.h */, + 7B2098978AA5B9D7044E8AABF8DDF1AA /* RCTModalHostViewManager.m */, + 076209CBDDD16E474F1B033B1ECD57C8 /* RCTModalManager.h */, + A7A849BDD5FDDCCB8169066E6CF9FFE6 /* RCTModalManager.m */, + 1F1529528A1CB2AE852F26C8C4D12ED6 /* RCTPicker.h */, + 53C2CD5D2DFFF4B2F3C2229EE1584F0C /* RCTPicker.m */, + 37D1BE5F0C2118EB40708CF5011EB5F5 /* RCTPickerManager.h */, + 908B1385C9E558437C99B415ED41171E /* RCTPickerManager.m */, + C78EE0DB406FEF97CC30636A621299C7 /* RCTPointerEvents.h */, + 466AD962F705702CA906C7054DBDD0F0 /* RCTProgressViewManager.h */, + AAA291667A4D2FE4109F0E735C6019A7 /* RCTProgressViewManager.m */, + F6399B25491E2E8C60356532BE6C0DD0 /* RCTRefreshControl.h */, + CA3DF8D9F1B29BC1C577D2BCDB0B93BB /* RCTRefreshControl.m */, + 8EC8DAD3D9E39754F5B62B55AEAD5A45 /* RCTRefreshControlManager.h */, + CDB50573EAA4566F3BCAA8852670294F /* RCTRefreshControlManager.m */, + E3C5E3A3C26EE280B9AD8231A476AAB5 /* RCTRootShadowView.h */, + 2E6010F08B7A2EA5EDB0CAC0E4E47AD9 /* RCTRootShadowView.m */, + 5E2F6C88E12279068F0BF97B49953417 /* RCTSegmentedControl.h */, + 8CFCE15FFAAAC462AB86455969E3A79A /* RCTSegmentedControl.m */, + E20B274E4A1E7C371770EAC1CEA0A256 /* RCTSegmentedControlManager.h */, + 67604CC4AA9111884CA2A28F8347371F /* RCTSegmentedControlManager.m */, + 3245089BE90D2939E3EAE7CCA48FD5C1 /* RCTShadowView.h */, + AC827AF3D16525F2FD54B7A0CA949657 /* RCTShadowView.m */, + 427A42C2CE443F767A7F1C04C631C164 /* RCTShadowView+Internal.h */, + 9218E3569302E5163873DE4B45837170 /* RCTShadowView+Internal.m */, + C15E28E540F2AE45E5348FD7C029714C /* RCTShadowView+Layout.h */, + F619E1141C3096EC2C346208D7CB5CDC /* RCTShadowView+Layout.m */, + 6AE653E4A38A97C70A47F0834A6EBD99 /* RCTSlider.h */, + 071A1B5B086436C318FA65AB40F26C3C /* RCTSlider.m */, + C307FF10614728B699A8BD5C070A1FE4 /* RCTSliderManager.h */, + 3E58B5EBAD6F73A9BBA71B271D0CD0A3 /* RCTSliderManager.m */, + 6A14D7251CB9598F8D8E2159BDAA8268 /* RCTSwitch.h */, + 7F217301F2BA39881E56EC5D56ABC4C1 /* RCTSwitch.m */, + A22E6E4ECFFA1E56031F25ED7A762F0D /* RCTSwitchManager.h */, + 6A21CFCE202DEEA62544935114DF5577 /* RCTSwitchManager.m */, + 5444002AD22E26BD77E7A690DEDE3927 /* RCTTextDecorationLineType.h */, + 43D01E1D0C065044E298B96F7BB36094 /* RCTView.h */, + 6FD790951C5292DEEDFC6B351CC523A1 /* RCTView.m */, + A4CE4A704550BF21A68E8D19F1DDD7BF /* RCTViewManager.h */, + E03522C216B1DF90B47156BF3117BA36 /* RCTViewManager.m */, + AAE51B1A282BCFAC71BAA0951F63601D /* RCTWebView.h */, + 312998FDA18B0145AEBE8CA65B1C31EA /* RCTWebView.m */, + D040283635ADDA64DFF2B8A5A6289DD2 /* RCTWebViewManager.h */, + 4C7BC8F6219EAB9A0636646621150F19 /* RCTWebViewManager.m */, + 46C674982F3F453288768D2458B009A1 /* RCTWKWebView.h */, + CD57A67CED166E03989918060C14E4B9 /* RCTWKWebView.m */, + 1DB45D9CAC83086E947DDA7AF5F6CCB4 /* RCTWKWebViewManager.h */, + 0EE10A5CC2EA790402759C29AA467566 /* RCTWKWebViewManager.m */, + 245116EA1D0FC15E563DD07B47EA79AF /* RCTWrapperViewController.h */, + 74A1F0BCDAF25A73967A868B801F7A80 /* RCTWrapperViewController.m */, + 99345A3B4D03AA78339ED38CA36ED43F /* UIView+Private.h */, + 0550393C8BB466DB002002BB0838CEFB /* UIView+React.h */, + 98E79F2DA62FE02322F5DC2CD2E083FF /* UIView+React.m */, + C7CCA0B7053B79EB13EBC9D5095EB9E2 /* SafeAreaView */, + BEFBD25AAD407617D2DB4BFDAED0AE39 /* ScrollView */, + ); + name = Views; + path = React/Views; + sourceTree = ""; + }; /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ - 0E96AC29E4425A68227A380021E382A2 /* Headers */ = { + 02DE3190B20BF1974373B344574C34CD /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 82F4A08E405B0A3706D5F18335E9D880 /* bignum-dtoa.h in Headers */, - 091C0C0E3A30D286E30F860AE0925759 /* bignum.h in Headers */, - 95F0126305351DD05D7AA074E2F2AF24 /* cached-powers.h in Headers */, - 7F7874E65AED2A890EE014C9C7D58F1D /* diy-fp.h in Headers */, - 191C15F88ACEC13860AD338F208BDDB5 /* double-conversion.h in Headers */, - AF8EC55515847D2EE9AD7ADED2B0B0BD /* fast-dtoa.h in Headers */, - D6C20DCB29B6BFF5E545D724066718D0 /* fixed-dtoa.h in Headers */, - 3728CB53E4723B332E0C5D8CD2409CDE /* ieee.h in Headers */, - 107BF2E806089DC6DD5715D1FCADC1FF /* strtod.h in Headers */, - C7DCA36BC01C33478E6BC8801AA6F929 /* utils.h in Headers */, + C723D7CB5D94CC24EFBBB9ED58CAE0A3 /* UMAppDelegateWrapper.h in Headers */, + A026F0A9355450451E1558F3A87AABEC /* UMAppLifecycleListener.h in Headers */, + 31CBD3568692203AD941D320448A0167 /* UMAppLifecycleService.h in Headers */, + 8EA8EB6D6C9C3ED99D58F36BE69D85E1 /* UMDefines.h in Headers */, + 43B9F3FEC650EF0D7558B4C678EA6AF3 /* UMEventEmitter.h in Headers */, + 8CCE0C74913F36C96D7F761410CE6817 /* UMEventEmitterService.h in Headers */, + 2383940FE81981D16147620523B0D57F /* UMExportedModule.h in Headers */, + 1095E8FC04BF5D67388CD27AF735EA00 /* UMInternalModule.h in Headers */, + F81A84291B2F2DEF250FCB79C1CAD886 /* UMJavaScriptContextProvider.h in Headers */, + E45DD4E8D41C17FC08EED732951AE1BF /* UMKernelService.h in Headers */, + 1B9046261DFEF117ACDC9B34FA8DEE06 /* UMLogHandler.h in Headers */, + B01BF0DB4F2C13598BF21D8BAF63FA02 /* UMLogManager.h in Headers */, + 15C551AC7F38881525D0F642D73D1C3A /* UMModuleRegistry.h in Headers */, + 625B3FBE5DB5D7FFA8E6A04E481B6A86 /* UMModuleRegistryConsumer.h in Headers */, + 5626EEA5122A67231A1B681E76F8AFDA /* UMModuleRegistryDelegate.h in Headers */, + 698D396178A8C90E5E6D03AA69FE4EB1 /* UMModuleRegistryProvider.h in Headers */, + F73C4171666A62C9E0A5C4F4137849F1 /* UMSingletonModule.h in Headers */, + 481EA95DDF7F93A39B23F9F3E52A4015 /* UMUIManager.h in Headers */, + 08CFEBF8C87EED02D29D227E80C3CDFF /* UMUtilities.h in Headers */, + B1D15B674E231785448AA95939AE9463 /* UMUtilitiesInterface.h in Headers */, + F7C6DD68458376DAC8E01D9C68071318 /* UMViewManager.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2203AB066D4CD3F505DFCC82F2AE8D25 /* Headers */ = { + 039A505B4883BF0C122B52B3C5E7F6F5 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( + D18616181F3519DDAF09E135CA2EB4FC /* RNSScreen.h in Headers */, + D7FA1FCBEFB6DEBEB94ED365EEB09E35 /* RNSScreenContainer.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 31136C8352F24511832AE349ABAF8194 /* Headers */ = { + 07EA496922703B388FA6473ED46A4F8D /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 32223005684D6CF88183D9D23DD0314B /* DeviceUID.h in Headers */, - EDEC647286492947DCA17EA720E4EB1B /* RNDeviceInfo.h in Headers */, + 16899D5B9029FB6D5A400783A624C1C8 /* EXWebBrowser.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3931CE772F17ABD849815CEE69EA536D /* Headers */ = { + 187309CEC2DCB23D866C419EFDC2DE1B /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 8A78F6525B0B706FB3CAF33DDA6A023A /* EXHapticsModule.h in Headers */, + F76CF77F7A16736C3F1B433E8FD59F41 /* RNCUIWebView.h in Headers */, + 9ACEE6FA896DE6419CFE03E0465C1B9D /* RNCUIWebViewManager.h in Headers */, + 9754888C740FC43171599AAF7A45B4AA /* RNCWKProcessPoolManager.h in Headers */, + 441AB0B9092C11279AF285D94AA51C76 /* RNCWKWebView.h in Headers */, + 6E06CAAD35AEC74FAF0E9509E7364CCD /* RNCWKWebViewManager.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 2421B2BEB31793521AF7BB2ED8723279 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 4CB929E427FE18007FE5916C3564C473 /* bignum-dtoa.h in Headers */, + 412512DFE06BF80C29382028C8AD6410 /* bignum.h in Headers */, + BEC1052E6EC8BDA846B649FFD43F6826 /* cached-powers.h in Headers */, + 4EAC303956D8C220AD690CEAA3F90684 /* diy-fp.h in Headers */, + 3FAA78E7F45F7BAA1325594718AAA891 /* double-conversion.h in Headers */, + E953548BA212D0038557EBF302E5FB1A /* fast-dtoa.h in Headers */, + 2E31E0B3EBD402CEFF64891929293A70 /* fixed-dtoa.h in Headers */, + A189673CE87F612ED3488113F9DAFE98 /* ieee.h in Headers */, + 92A8544B73B2FA29B9CFDE72C5FDDBB6 /* strtod.h in Headers */, + 267A50C4F892793B3ABF4C5AD43020BF /* utils.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 2BA7048B500CBCCAA6F4837AD83DF6AD /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + F68D027D093FFB5C36B24C36F0F00719 /* CompactValue.h in Headers */, + 14E99D03ADF7EFE1CA79395D9D2725C7 /* instrumentation.h in Headers */, + 0BCDAAA35BCBF05B263352DA635A3AFA /* Utils.h in Headers */, + 4EE336A784B5B34B6E71FE95F933F1AF /* YGConfig.h in Headers */, + BF0822113C33AC08EB0DEA8F38ECB59C /* YGEnums.h in Headers */, + 58029C39AEDF4A9633DF41BDB28DB9A4 /* YGFloatOptional.h in Headers */, + 0D0890CA940BB0293A255C0E94B42F55 /* YGLayout.h in Headers */, + DFE2282D0DF2368F3E94CF038914A285 /* YGMacros.h in Headers */, + E6F0365917F10CE3F53F11272178A192 /* YGMarker.h in Headers */, + BAB9E717A0861009586B748CC1287F45 /* YGNode.h in Headers */, + D851300F712DBD77BEEF2AFC55E7BEE0 /* YGNodePrint.h in Headers */, + F1D183C1FDA3BCD9D2A9750FC76F73EC /* YGStyle.h in Headers */, + 4CBC9D1BAC0F29544CD76808F4C57760 /* YGValue.h in Headers */, + 5863FE965FFB2C06DEBE2C663352A2B4 /* Yoga-internal.h in Headers */, + FC796DF04CC7A982BAA4ECE0D15D0221 /* Yoga.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5503,6 +5624,55 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 478ED25E958E2CA1F4CDB4095A85B6D8 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + A56765A6FC47977550A6133ED7DD143B /* Orientation.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4A69AAB1DEC6AAB0D427082D65A1FA2A /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 0D6B79FEEA4E650E33F459FE3082C787 /* QBAlbumCell.h in Headers */, + 30F5C06168F46353FFBFD6E912C68A85 /* QBAlbumsViewController.h in Headers */, + B88874D20925DD12DDD3F8258AC17076 /* QBAssetCell.h in Headers */, + 077451C8631A73C09351280BA916393E /* QBAssetsViewController.h in Headers */, + 2C744E87E37D5236489A29A0CB2AF69C /* QBCheckmarkView.h in Headers */, + DC8A307BB4861CB5129AA6D0D10D1CBD /* QBImagePickerController.h in Headers */, + E4EC2BB5913F2974816674CC2AE97517 /* QBSlomoIconView.h in Headers */, + 61E3828CFD80117D5A174F61CDFD4F5D /* QBVideoIconView.h in Headers */, + 513E9CF20C582C287B8297EB1C08AF22 /* QBVideoIndicatorView.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 518F87C7550A05382BB3F806F296BBB3 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 55312DB157859B03111586E3CE19FE00 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 95BE5568013930830A49B1D0B10C85F6 /* DeviceUID.h in Headers */, + D046A8DB2A3DD2AFBA2D000004D33E9D /* RNDeviceInfo.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 6199E50C54AD2932637DF85DC60C569F /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 63BB559BC6DDA8726779E5435731BBF1 /* EXConstants.h in Headers */, + E6B5795FF7682CBDA63CCD59D0F77A97 /* EXConstantsService.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 6F581F0323AF3FAB9C3E31E837326583 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -5513,43 +5683,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 7BCE6740C1956DB89891BD6F4A6AE044 /* Headers */ = { + 7CE97570723B90C01FB932FD03B997E8 /* 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 */, + 89C94F8BA2EC8B117DB57592A8FE0FFC /* RNLocalize.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5564,29 +5702,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 8876214EB72A1D9AC053DDF9BA819EB9 /* Headers */ = { + 92679D6059188F7817839955EEEE74A6 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - C4CF1F84755396DCE0DCCFDACE737073 /* Orientation.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 */, + 8E9F5774EFB5BF06C6978C50056204B3 /* Compression.h in Headers */, + 24A2C85FAF0283C13C58379503EEBC1C /* ImageCropPicker.h in Headers */, + F6DAE4CFB4100965E2EEA9569F577729 /* UIImage+Resize.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5635,15 +5757,10 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 9452020040EF5BE56076CBEF1D0C473D /* Headers */ = { + A2C41A3AFCAB319A602BC9D962647870 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 91C6049EE7B3A427B00ABDA6756D48CE /* RNCUIWebView.h in Headers */, - 7E2D70653BE7B73F0EC0C16639FB856B /* RNCUIWebViewManager.h in Headers */, - ABB82B9321DA0B05D64C70DC2C8B3C1F /* RNCWKProcessPoolManager.h in Headers */, - 15272A9EF9C66562FE248F896E4960A8 /* RNCWKWebView.h in Headers */, - 49F7A69B92772CB80D83DA5C3D49D322 /* RNCWKWebViewManager.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5700,52 +5817,77 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - AD4D3F028E92CB073D042C38C2435CBD /* Headers */ = { + AC5C256FF44ABC6C4419BD48395AE3EB /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 87009DE4171E62BC1882437222FE898F /* UMBridgeModule.h in Headers */, - A4C08509731EFA292F4FD60A3307833A /* UMModuleRegistryAdapter.h in Headers */, - 835E56F9F5292D4F57A447F18A9A9814 /* UMNativeModulesProxy.h in Headers */, - 648A6D0CA6388A9FCC2F726528935B24 /* UMReactFontManager.h in Headers */, - 7349832191051EF23410975D0DDC12C9 /* UMReactLogHandler.h in Headers */, - 9AF1BFA6907534C76EE8DC454BFE3B6D /* UMReactNativeAdapter.h in Headers */, - FCC76B54E3814872A72A99B80A565968 /* UMReactNativeEventEmitter.h in Headers */, - 73F555B0BEB623056B12ABAF5ECC32F8 /* UMViewManagerAdapter.h in Headers */, - BFFDDE61FB567F0B84E27BD1E16C8C26 /* UMViewManagerAdapterClassesRegistry.h in Headers */, + AE830D2F88DD54B62B84DB4707CD18EF /* RNSplashScreen.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - AEECD191AADD402EA0E8CFC3DCABE976 /* Headers */ = { + B04A9DB86C079E1AC98F0391EB08E7EF /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - F8409B5FA79C11E7C61BBF5B098B1B15 /* RNSplashScreen.h in Headers */, + A1F4DADE46BB9823C16F0582D38CA637 /* UMBridgeModule.h in Headers */, + 6F4F11E9A35E255F494C4DD173A16519 /* UMModuleRegistryAdapter.h in Headers */, + 65E649693149B794075B660C12F91164 /* UMNativeModulesProxy.h in Headers */, + 2D82EFED8669F9B1A6C32C34350B3B15 /* UMReactFontManager.h in Headers */, + 7F0CA823DBB91B5DC8EED2F209CECE93 /* UMReactLogHandler.h in Headers */, + 98421702115DBCA4482F0F571D4ED379 /* UMReactNativeAdapter.h in Headers */, + 26975DFC30DC5BBD7D1BCA6E41299E6A /* UMReactNativeEventEmitter.h in Headers */, + 5F8E7272D376155681119E46E67DE455 /* UMViewManagerAdapter.h in Headers */, + 5F45BCC8EC94CF7438E750250129B41D /* UMViewManagerAdapterClassesRegistry.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - BD4FEC921049A6F1C4D9CAAEF7518A2A /* Headers */ = { + B1D5051568743298F39DAE80DD5B460C /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( + F07F50A9DCFCD88674698B0F8C99AD75 /* log_severity.h in Headers */, + 603EFF9C2425B63CCD4172D7C4F6137B /* logging.h in Headers */, + 011A77AE2F540844992BAB9676FB8004 /* raw_logging.h in Headers */, + 7C0C75175218DFF2C2285DC38C128BDB /* stl_logging.h in Headers */, + 0CD8F20434FF990AD37A2BE53B96C2CE /* vlog_is_on.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - C5057A8907506C2642E591A6DC7C6B1E /* Headers */ = { + C5B844B2A4A00E041C465FAAD3897FC5 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 1E6278602D1CF09ADE3403A594CF970C /* RNSScreen.h in Headers */, - 589B2A83B601095E16EB8F824BC0BAB9 /* RNSScreenContainer.h in Headers */, + 7F48A23EBE7215801723E1DEE8E42B60 /* CGGeometry+RSKImageCropper.h in Headers */, + 91134A60C950AC2E16DEA6C7EFFDE85C /* RSKImageCropper.h in Headers */, + B9763798A21C67164FB5920B6487F8C5 /* RSKImageCropViewController+Protected.h in Headers */, + D17334FDBE343EFADCC101F9C49F3DD8 /* RSKImageCropViewController.h in Headers */, + 3E63E9AC7EBE362EB7937198398E566C /* RSKImageScrollView.h in Headers */, + 3B3BF28187C434736C2B00DB53738A7D /* RSKInternalUtility.h in Headers */, + 80117C073B0A78AB13D95AC17AC714D3 /* RSKTouchView.h in Headers */, + 108779003B600957723828970010030B /* UIApplication+RSKImageCropper.h in Headers */, + 35622243F9987DB6618121E3E18B1CD3 /* UIImage+RSKImageCropper.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - C63381F4C23B52A79B281F62EDAEBFAC /* Headers */ = { + C8F51655E8DC48BAB3B0C28BA2D5CD9D /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 971A797D1573C90846EC7847F3529E49 /* EXConstants.h in Headers */, - A8D5113CF95A396D35F179C25A3E27EA /* EXConstantsService.h in Headers */, + 5AD2D50EA0EA95CD2488782E90B478B6 /* EXAppLoaderInterface.h in Headers */, + 979FE135AD6F5501E856E33EC5CA8E15 /* EXAppLoaderProvider.h in Headers */, + F2F6F02B1856ADC0493B59A86843B567 /* EXAppRecordInterface.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + CA08E1126E2EED28DC45A14AE3200DDD /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + E99670DE6BBAD7C09E618409533D1080 /* EXDownloadDelegate.h in Headers */, + 2C4587AD15A7973ECE6637EDA1DFBF08 /* EXFilePermissionModule.h in Headers */, + 0C2A5DC47FE2D6837EA44C99ABFD5834 /* EXFileSystem.h in Headers */, + A8B6D15DA68092B480483FE020894204 /* EXFileSystemAssetLibraryHandler.h in Headers */, + 7563D4DBE0016DD8A873BB45F22E702D /* EXFileSystemLocalFileHandler.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5777,155 +5919,71 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - DD660542024F8529C86C94F05423628F /* Headers */ = { + E4D17E96D903B293E993863B6F717145 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 29009255CC9C1CDDBEBA9CB9BE62E37A /* Compression.h in Headers */, - F8A4251DE92EA803F8757CEC805CF13E /* ImageCropPicker.h in Headers */, - 30620B0A2DF2E4674996FC7F3EB7AFF7 /* UIImage+Resize.h in Headers */, + A2A70CD096FE24B7E48EA8C86BC112BD /* EXAudioRecordingPermissionRequester.h in Headers */, + 6B24587056B43B44A33D33481C1F0B7C /* EXCalendarRequester.h in Headers */, + 85233251D8E6162F3BC0BBE816ACA76D /* EXCameraPermissionRequester.h in Headers */, + 2D889A37C6B0DCFAC73E5AC673F56C1C /* EXCameraRollRequester.h in Headers */, + 40E02135B467F425AA7FC5D7C7DA09FD /* EXContactsRequester.h in Headers */, + 2D61A2747A7ED3643B239BF6F190E30A /* EXLocationRequester.h in Headers */, + 2E4931E8207986206E7AB09BFBB585EB /* EXPermissions.h in Headers */, + 17A36219C987CD12C5A1C50EA590D11A /* EXReactNativeUserNotificationCenterProxy.h in Headers */, + A3B33574C82F38A9087B056DF9CED726 /* EXRemindersRequester.h in Headers */, + F81E2DFA7E076498AEFA487459C13FCF /* EXRemoteNotificationRequester.h in Headers */, + F091BB9661A4345D85F945ED606B30FE /* EXSystemBrightnessRequester.h in Headers */, + 8693629097C6317357D73FBBC11B68DB /* EXUserNotificationRequester.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - E2080F763498E7306A1CD805F9A653FB /* Headers */ = { + E878A576929A6F843017ABC6ECDC8E42 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 62825760B895542D30194A59B53D82EA /* log_severity.h in Headers */, - C327914498A09C2E0C953F8AE792E601 /* logging.h in Headers */, - 5417751F797161B8F8A945B9169880B8 /* raw_logging.h in Headers */, - 6D3913895B99C9CA1AC7B01A3FDB3E40 /* stl_logging.h in Headers */, - 20F0D13F0C31A19295812D26BA9F58B9 /* vlog_is_on.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - E98FE853A6BA3B2E73859DBC795FEE75 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 50177B324A41A9073653BC0A0C5B3A49 /* CompactValue.h in Headers */, - 4866135362D9C0BD12AE44F4E5B4ECC5 /* instrumentation.h in Headers */, - FAC72E8A2E04946120FB728542A9CD73 /* Utils.h in Headers */, - 31652EE4865923E9E0621F588CCE0F59 /* YGConfig.h in Headers */, - 9E10E2434A4A6CF2540ABA0954A36579 /* YGEnums.h in Headers */, - 1A9415BEA6DB23DA7731B2A53D359C80 /* YGFloatOptional.h in Headers */, - A4C5FC9C08D6B0293EBA89A6C295E169 /* YGLayout.h in Headers */, - F75A21211C441B245146FB95D0348C66 /* YGMacros.h in Headers */, - 4AD199607CDC465914C0BBFD0E9B1E3C /* YGMarker.h in Headers */, - 2DAE27CAF22831958211EB5425DAA133 /* YGNode.h in Headers */, - A8DDA04E73A14BF9054C861A14146A9B /* YGNodePrint.h in Headers */, - D3FF1480277FF6F254E1CB3BBE404B46 /* YGStyle.h in Headers */, - 91F882A24D909E8C3934CBB19D8E1438 /* YGValue.h in Headers */, - F7976565C5654FAD80CAB9FBD98BA8B2 /* Yoga-internal.h in Headers */, - 0E1F82B0315E6EF2CD942294686F45C3 /* Yoga.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - EB672978E56AE0AE728C36D0DCE1FF39 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 4AE2B72734E977F168DB5A87605B41E7 /* CGGeometry+RSKImageCropper.h in Headers */, - AA1D6DAF35971D442D08016238844577 /* RSKImageCropper.h in Headers */, - 85AAEAF6EF19A421B39EF55FE984D8B5 /* RSKImageCropViewController+Protected.h in Headers */, - F6DEE43D3D58651A67509875D629C906 /* RSKImageCropViewController.h in Headers */, - 70035D2233ED70D360A747104C05FF12 /* RSKImageScrollView.h in Headers */, - 114DC25941DB483B5F1B4CCC88E846EB /* RSKInternalUtility.h in Headers */, - 8B041A9A3235A5AA18E6A80643781583 /* RSKTouchView.h in Headers */, - 9CC93ADB2D684C3C17362AFF7491B77D /* UIApplication+RSKImageCropper.h in Headers */, - 9ED1327CBB716D67115A7B94FB862A66 /* UIImage+RSKImageCropper.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - EDE6D73ABB1A619D207C4C15678A234A /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 5726EBA4AE4D92C9B795ABF869D8B532 /* QBAlbumCell.h in Headers */, - 4DA88515CE26D1A0C228E7FB7EC34D8F /* QBAlbumsViewController.h in Headers */, - 8535E19C22D101F1EAB62C9FADB07224 /* QBAssetCell.h in Headers */, - 8DC28C90BD92931405D316451F68040B /* QBAssetsViewController.h in Headers */, - 1EBAFA1A03F2E3E913EEB82D2E336529 /* QBCheckmarkView.h in Headers */, - 64BBD69E7CDFA57FAD0D8A9EEB9DE66C /* QBImagePickerController.h in Headers */, - 505ABB94FF730E0E224C8DF507B599E6 /* QBSlomoIconView.h in Headers */, - 7EB2FA62EBB5E668DF28A5AF463720E6 /* QBVideoIconView.h in Headers */, - 193DF369F46034C60741C9763C1502D4 /* QBVideoIndicatorView.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - FCB5BE3FB2ED720DC04BF2DDD0BDA3D7 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 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 */, + 18508BF0F3BB7FB5771E7208D859296F /* EXHapticsModule.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ - 0FD5D3D2ED844A8EA4DB114C303CC931 /* RNScreens */ = { + 1DBC3090C8BE77C9F4202B0421E0791E /* glog */ = { isa = PBXNativeTarget; - buildConfigurationList = 09A274C27DDCF102B0AE5CA5C3115AAE /* Build configuration list for PBXNativeTarget "RNScreens" */; + buildConfigurationList = 30E42B671739C46568E4210EC736D325 /* Build configuration list for PBXNativeTarget "glog" */; buildPhases = ( - C5057A8907506C2642E591A6DC7C6B1E /* Headers */, - AF219684ACFFFF933CA8B998E06C6E10 /* Sources */, - 36B4E9EF1D621D0C6386E8F433C88ADF /* Frameworks */, + B1D5051568743298F39DAE80DD5B460C /* Headers */, + 9ED7695E4EDA6926DEE64D2BE78207DA /* Sources */, + B8165C55B9049D277EC22BB093B9FBD5 /* Frameworks */, ); buildRules = ( ); dependencies = ( - D2D7FEAD03DD6AB886C4EB513A04DC31 /* PBXTargetDependency */, ); - name = RNScreens; - productName = RNScreens; - productReference = C83626728F7E9ECDFC89A428881F8A65 /* libRNScreens.a */; + name = glog; + productName = glog; + productReference = D3A653F567444EEAAFA22097C11FA70A /* libglog.a */; productType = "com.apple.product-type.library.static"; }; - 1414ADEE4A421F3C5F9A229345CE3F61 /* DoubleConversion */ = { + 2204E533997A82F0D6F7AD16CE4C7106 /* Folly */ = { isa = PBXNativeTarget; - buildConfigurationList = 3252239A3789995739FB7B8C8A95B493 /* Build configuration list for PBXNativeTarget "DoubleConversion" */; + buildConfigurationList = CF773BF3AB5B99203184D051A085CCDC /* Build configuration list for PBXNativeTarget "Folly" */; buildPhases = ( - 0E96AC29E4425A68227A380021E382A2 /* Headers */, - 975735BF1F5E2C092FB2A8E783C373C7 /* Sources */, - 977B34A80819F5A745CF5B52D9236AFD /* Frameworks */, + 518F87C7550A05382BB3F806F296BBB3 /* Headers */, + 73763C6E7BD2820F0CD7E11ECAE71AF2 /* Sources */, + E9F22D6501C6AEB59FD7D4E41CAF3D58 /* Frameworks */, ); buildRules = ( ); dependencies = ( + 18A0E09FE601E01C0D44FC1CEB9A9F12 /* PBXTargetDependency */, + 5F3518D836F3905EBFCBE88425EE90B6 /* PBXTargetDependency */, + 26514345C480A4C45F1045D773CE3CBE /* PBXTargetDependency */, ); - name = DoubleConversion; - productName = DoubleConversion; - productReference = 476EBA93A075484B635152ABFAF7FC0A /* libDoubleConversion.a */; - productType = "com.apple.product-type.library.static"; - }; - 240504C276270018DE05B3D0F038B1E5 /* EXWebBrowser */ = { - isa = PBXNativeTarget; - buildConfigurationList = CC3B8958A2965669C0A321A46414DD85 /* Build configuration list for PBXNativeTarget "EXWebBrowser" */; - buildPhases = ( - 931B91D60A10F80CF19EB7C72867F774 /* Headers */, - D8BADC07DACE496C6A1D36DECF9264FB /* Sources */, - 86975FA8969769E1025A58E3FEA10506 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 88F4CBC37EDC22A18C73D6723A7C8552 /* PBXTargetDependency */, - ); - name = EXWebBrowser; - productName = EXWebBrowser; - productReference = 3DE98D4B5F1042E125310C2EFC43A00D /* libEXWebBrowser.a */; + name = Folly; + productName = Folly; + productReference = 156421640D34D8220CA95A9EA059508F /* libFolly.a */; productType = "com.apple.product-type.library.static"; }; 2543734D0A332B2588202904B99CC151 /* nanopb */ = { @@ -5942,61 +6000,7 @@ ); name = nanopb; productName = nanopb; - productReference = 257CF57FD32567C2B877CAB1890986FD /* libnanopb.a */; - productType = "com.apple.product-type.library.static"; - }; - 29C34A1CC983103B3A70F1BD1BAA9E03 /* QBImagePickerController */ = { - isa = PBXNativeTarget; - buildConfigurationList = E48350BA36C05B2AFEEA25E321E933B4 /* Build configuration list for PBXNativeTarget "QBImagePickerController" */; - buildPhases = ( - EDE6D73ABB1A619D207C4C15678A234A /* Headers */, - 46106BEA1629E93FB6BC3A8F8BC7457A /* Sources */, - 58D3C3D355D2D85A5DC6EA316DB08B23 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 847E3922481FE2B36FC4848640B9E1D2 /* PBXTargetDependency */, - ); - name = QBImagePickerController; - productName = QBImagePickerController; - productReference = 024163D62F7A659E9A84F43885AC85DB /* libQBImagePickerController.a */; - productType = "com.apple.product-type.library.static"; - }; - 29FC2A0EC130F2F2AF7AC9AE94A583B4 /* glog */ = { - isa = PBXNativeTarget; - buildConfigurationList = 3D743A9AAF6ED7D9DB954EDB605D83CF /* Build configuration list for PBXNativeTarget "glog" */; - buildPhases = ( - E2080F763498E7306A1CD805F9A653FB /* Headers */, - B0332E51FEAABE23FBE9EDEF7DAE717D /* Sources */, - 933DA3B844AA36790E1184CF33F53746 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = glog; - productName = glog; - productReference = 43AA68F7F6D2872A77E7A8636C226251 /* 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 = 0129BE267A6BC9CF08516876B5D3BB4E /* libEXConstants.a */; + productReference = E0D470315CFE4024716A1076E354B65F /* libnanopb.a */; productType = "com.apple.product-type.library.static"; }; 32F8EA730FE2005197F54338D2C236AC /* GoogleToolboxForMac */ = { @@ -6013,7 +6017,25 @@ ); name = GoogleToolboxForMac; productName = GoogleToolboxForMac; - productReference = 42186B0B9F605965E1DD092DEFDCBA72 /* libGoogleToolboxForMac.a */; + productReference = 01FBBF732AF396F5D14B534B12DAD345 /* libGoogleToolboxForMac.a */; + productType = "com.apple.product-type.library.static"; + }; + 356F0A9EBA4275589E1E12E721EE1B29 /* react-native-orientation-locker */ = { + isa = PBXNativeTarget; + buildConfigurationList = E4F9049E6B72446D51E692E780F60315 /* Build configuration list for PBXNativeTarget "react-native-orientation-locker" */; + buildPhases = ( + 478ED25E958E2CA1F4CDB4095A85B6D8 /* Headers */, + 405CBB648150F5EA74B7F858255291B2 /* Sources */, + F8DDB97379BDD27E3140E840D88D67F5 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + DE49A96E610B5BB255FD59274B0F812A /* PBXTargetDependency */, + ); + name = "react-native-orientation-locker"; + productName = "react-native-orientation-locker"; + productReference = D4996F9DE37AD30C6EBDCB36B3BB94BE /* libreact-native-orientation-locker.a */; productType = "com.apple.product-type.library.static"; }; 368FB7FBA34E3323BB42D13325551C95 /* FirebaseCore */ = { @@ -6031,60 +6053,59 @@ ); name = FirebaseCore; productName = FirebaseCore; - productReference = 80EC2BD18EB1CD25F8BD8EE550EBD936 /* libFirebaseCore.a */; + productReference = 0C44DAD6CFBBE288838ECCC94A1EAFAB /* libFirebaseCore.a */; productType = "com.apple.product-type.library.static"; }; - 416F9FBE7FA448C0BD8AA749A5FBF805 /* react-native-orientation-locker */ = { + 450F57633BF9EC17F9CFB0C9C32D6131 /* yoga */ = { isa = PBXNativeTarget; - buildConfigurationList = D61E4B726A82F8341722E3BC79847E5D /* Build configuration list for PBXNativeTarget "react-native-orientation-locker" */; + buildConfigurationList = 065985C7AAC677C822294C6FD31B3E8F /* Build configuration list for PBXNativeTarget "yoga" */; buildPhases = ( - 8876214EB72A1D9AC053DDF9BA819EB9 /* Headers */, - A17417C9536AAEE4BC82D0BFA4EEB702 /* Sources */, - 101AE876F804BE17051F36957CB5C2C5 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 9E5EDF6B01F5234998F739B4FF6C8AAB /* PBXTargetDependency */, - ); - name = "react-native-orientation-locker"; - productName = "react-native-orientation-locker"; - productReference = 19B738B0EE24C530176A859D5C642DD5 /* 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 */, + 2BA7048B500CBCCAA6F4837AD83DF6AD /* Headers */, + 839078D90E46A5AF383F1BAEDEB34843 /* Sources */, + 19A069922086B0759E2E2E155D328E99 /* Frameworks */, ); buildRules = ( ); dependencies = ( ); - name = UMCore; - productName = UMCore; - productReference = A62F04C35780B585556EC81E33AD25A3 /* libUMCore.a */; + name = yoga; + productName = yoga; + productReference = CE7CDF47ECA304D288B260979AFB5BF1 /* libyoga.a */; productType = "com.apple.product-type.library.static"; }; - 45018F5317EE8A727FB05D4B61A678A6 /* EXHaptics */ = { + 4ECE1108F140208A729A83BC94FAA150 /* EXAppLoaderProvider */ = { isa = PBXNativeTarget; - buildConfigurationList = 0B02CA2BF83F91E03F27D2A61E8A7DC9 /* Build configuration list for PBXNativeTarget "EXHaptics" */; + buildConfigurationList = 097AF50B67E3908773078466CE352AD4 /* Build configuration list for PBXNativeTarget "EXAppLoaderProvider" */; buildPhases = ( - 3931CE772F17ABD849815CEE69EA536D /* Headers */, - 7626A7BB2A7AF80AE33C0010A5BC2CE9 /* Sources */, - 473A8110860C0093E3A3B485287B1D20 /* Frameworks */, + C8F51655E8DC48BAB3B0C28BA2D5CD9D /* Headers */, + 95AA49EBDF2DA6FE542B14055FAE3440 /* Sources */, + 9CAAEBC5F620E83BD5CB56084AC45E09 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 22441E5AFBE737F69854BEFE69E9F1B0 /* PBXTargetDependency */, ); - name = EXHaptics; - productName = EXHaptics; - productReference = D7963DE47189F5A5D556E6FEFFDC83F9 /* libEXHaptics.a */; + name = EXAppLoaderProvider; + productName = EXAppLoaderProvider; + productReference = 9A7C44DDA12020393029A467531D3839 /* libEXAppLoaderProvider.a */; + productType = "com.apple.product-type.library.static"; + }; + 50DC11FF8303D596388C95B26D2E548B /* RNDeviceInfo */ = { + isa = PBXNativeTarget; + buildConfigurationList = E27FAADC13B8989FA8DC93CD09CE55E2 /* Build configuration list for PBXNativeTarget "RNDeviceInfo" */; + buildPhases = ( + 55312DB157859B03111586E3CE19FE00 /* Headers */, + E0082C7751C0E84867406CC12B9F2ADD /* Sources */, + 354E0CB112A4697FC0502D4F0C26E768 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + E956C0E38C46412EAE7AD5D77AB47207 /* PBXTargetDependency */, + ); + name = RNDeviceInfo; + productName = RNDeviceInfo; + productReference = 8DD144CE7E724586F0F88EF8788663AA /* libRNDeviceInfo.a */; productType = "com.apple.product-type.library.static"; }; 586739D116442BA7FCD2EC0353EA0FA4 /* FirebaseInstanceID */ = { @@ -6103,108 +6124,60 @@ ); name = FirebaseInstanceID; productName = FirebaseInstanceID; - productReference = 0430C4D5C4BD6719EE905E8C7A1AAFD7 /* libFirebaseInstanceID.a */; + productReference = 3FDB077D3E7DB144D6D4FA80D7D669C3 /* libFirebaseInstanceID.a */; productType = "com.apple.product-type.library.static"; }; - 5A95CDAA46E2CD086247CE7022432D8C /* Pods-RocketChatRN */ = { + 5B1BA8B3E53682DD179F7BFF8F2C8B75 /* EXHaptics */ = { isa = PBXNativeTarget; - buildConfigurationList = 8300EC82C23971244A276A83EFF3C90A /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */; + buildConfigurationList = 22051F6710614105BA04E0EF4915F952 /* Build configuration list for PBXNativeTarget "EXHaptics" */; buildPhases = ( - BD4FEC921049A6F1C4D9CAAEF7518A2A /* Headers */, - B8BA55E7D57EE70CB17B2121697E7772 /* Sources */, - 931012A1A9F967BF0AED5FB8DE7FA0C1 /* Frameworks */, + E878A576929A6F843017ABC6ECDC8E42 /* Headers */, + BCDCD0C34A5BF68884EE50161FA4DE35 /* Sources */, + 29DDCCCAF9B1EDCC9998ECDADEFF7D8A /* Frameworks */, ); buildRules = ( ); dependencies = ( - BE4755A9C728F48D074E007C94976915 /* PBXTargetDependency */, - C662C7E25D35023474E9AAE1D9BC1D47 /* PBXTargetDependency */, - 8C4A88E0340D21A5A7E3F039C043D32F /* PBXTargetDependency */, - 802B34897065759937C2F3DB6EA1AB0C /* PBXTargetDependency */, - B744BC0E3C3D1F828188666F9F6A16A8 /* PBXTargetDependency */, - 9D6A3DEEB83F59139CB29057F2F1BE2D /* PBXTargetDependency */, - 9762CD21B523FDFA5D1FE97C4F7EA719 /* PBXTargetDependency */, - D44F1A7C3576E47D486A7D535ABCDC67 /* PBXTargetDependency */, - C25F85FA06E3C792E2A67E60B8101074 /* PBXTargetDependency */, - 18C520B18313293C3DDC00221404B063 /* PBXTargetDependency */, - 04A4AA4BEA7C2F48450DB3B9873A4003 /* PBXTargetDependency */, - F866BAD81A824FBD4E4348196578E148 /* PBXTargetDependency */, - D1F18A32147055E0E624D32DB1032503 /* PBXTargetDependency */, - 2BA3E49328FDC3B52B39551295C3E1D8 /* PBXTargetDependency */, - 3EA30E9B1EFEC6D4CB5EA7210467BA7C /* PBXTargetDependency */, - 87CD5E86E9E73F49163565E12A7B721D /* PBXTargetDependency */, - 1B3C2FDD43BBE98A6C93ECCBEDA1FCB5 /* PBXTargetDependency */, - 3FA5D6C46C9EC6A4977F4A14D126360A /* PBXTargetDependency */, - 4199BD8F97B22003519F6133943247A6 /* PBXTargetDependency */, - 4082BB581BC5B1E39CC1CF87D62EB1D7 /* PBXTargetDependency */, - 0AFD655C77EBF7B701D9E50417793708 /* PBXTargetDependency */, - 317A96EE3FD986E107ADEAB02A26A1F5 /* PBXTargetDependency */, - D53FF4C2C207954A64394F6E417404DA /* PBXTargetDependency */, - FECD68D133AB4B5BA7D5269BB61F77C0 /* PBXTargetDependency */, - 486B249E34E6B81C1AB736B74FCADA6E /* PBXTargetDependency */, - 7AC079CB2609784986DAAD8FD864282F /* PBXTargetDependency */, - 48D513685CD12B9575580540D8A881BB /* PBXTargetDependency */, - ABFFA13BF84A8D025DA23F3941169263 /* PBXTargetDependency */, - 635F4ADA62D4DC2C0200CCD5F0311885 /* PBXTargetDependency */, - 76B8C36A4851D372456F00A4D98D8E62 /* PBXTargetDependency */, - 10B4D4E4DDC0F6AEFEDB6D4D4FCF9A31 /* PBXTargetDependency */, - DA4D40C8440AFAF10030DD5B9F5F8AA1 /* PBXTargetDependency */, - B2AE4569D439DA80309B909FAD97ADAB /* PBXTargetDependency */, - B411263AA5A462DD8F804983F894A0B3 /* PBXTargetDependency */, - 7F1A3383BD3B90140B2C55DB1DB649C1 /* PBXTargetDependency */, - F307793EABEDFC0E7D7BEA4C7399C60C /* PBXTargetDependency */, - F3AEE9A90233BB78D6949D65345F5559 /* PBXTargetDependency */, - 134A1A4CD73558D18D8E8C3CCB5134F0 /* PBXTargetDependency */, - 0A257EFA552F059D48ED22839D0D49E4 /* PBXTargetDependency */, - 44F39E10EFDD78ABB6AD310371B7CD8D /* PBXTargetDependency */, - 07E5A6B5EEC28A622A9E5BE0DF760FBF /* PBXTargetDependency */, - 05C6A139E31FB582E7A93902AA529A6C /* PBXTargetDependency */, - 77CB95F8B357BCFC76D59F0ADDC1850C /* PBXTargetDependency */, - 1C234CCDB5422FF3F4C9D3554E34DBCE /* PBXTargetDependency */, - 685C202F8909ED308503DB9EA0E32F88 /* PBXTargetDependency */, - 3F98239F9A383F5DE4E4B093CC099DAB /* PBXTargetDependency */, - 487776F86C3A8C749FA412109469A50D /* PBXTargetDependency */, - 2BC984BC36863E62B33E87DF6A126313 /* PBXTargetDependency */, + 96DA387B98978C2974700F14ACFDEBCE /* PBXTargetDependency */, ); - name = "Pods-RocketChatRN"; - productName = "Pods-RocketChatRN"; - productReference = 3A3B2CA4CD14211901467AB43602EE3F /* libPods-RocketChatRN.a */; + name = EXHaptics; + productName = EXHaptics; + productReference = 9BA0A1F85D58A3D226EAE026A17661F4 /* libEXHaptics.a */; productType = "com.apple.product-type.library.static"; }; - 5ED05858D3E3C1599A062FB1C45FE359 /* EXPermissions */ = { + 645DEAED47D48A55A088EE2AD4BCABE9 /* DoubleConversion */ = { isa = PBXNativeTarget; - buildConfigurationList = 6938A94AF739B9819D20E572908D3D5E /* Build configuration list for PBXNativeTarget "EXPermissions" */; + buildConfigurationList = 0569CCDF3B3B687CF01EE8D4001AA7CC /* Build configuration list for PBXNativeTarget "DoubleConversion" */; buildPhases = ( - FCB5BE3FB2ED720DC04BF2DDD0BDA3D7 /* Headers */, - AF7E2A8BB3196AB169293F1A66B46A56 /* Sources */, - 9C1143E77695FB4B58AA5D992DD06087 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - FBF22B08572B8004330FD47E0D07AC6F /* PBXTargetDependency */, - 1C7BC65EE5D0AE985F3F9D390F082C25 /* PBXTargetDependency */, - ); - name = EXPermissions; - productName = EXPermissions; - productReference = 99CB74C0216C5CDF770364DDB2323F64 /* libEXPermissions.a */; - productType = "com.apple.product-type.library.static"; - }; - 6455E5F0AEB4F4285748480B46DC377C /* yoga */ = { - isa = PBXNativeTarget; - buildConfigurationList = 04A001C9D4D82CA28EAB8772492A8839 /* Build configuration list for PBXNativeTarget "yoga" */; - buildPhases = ( - E98FE853A6BA3B2E73859DBC795FEE75 /* Headers */, - 21CB502E9DB77EACF0EA760185DAB0DE /* Sources */, - 502138ACCEF0F68D1CE899621C269230 /* Frameworks */, + 2421B2BEB31793521AF7BB2ED8723279 /* Headers */, + 061DACD6DFC3EBD596A23786331E4418 /* Sources */, + 68E4DC721715B13364B7CFA56B002488 /* Frameworks */, ); buildRules = ( ); dependencies = ( ); - name = yoga; - productName = yoga; - productReference = 1D0EE3C9D66D0F1931EAABC791242C49 /* libyoga.a */; + name = DoubleConversion; + productName = DoubleConversion; + productReference = 9AF0420C796D08009B79258FBF2075BF /* libDoubleConversion.a */; + productType = "com.apple.product-type.library.static"; + }; + 760A2E2784BD5913932E942039ED1B15 /* RNLocalize */ = { + isa = PBXNativeTarget; + buildConfigurationList = 493203169A838C266EA49E9346AB78D7 /* Build configuration list for PBXNativeTarget "RNLocalize" */; + buildPhases = ( + 7CE97570723B90C01FB932FD03B997E8 /* Headers */, + 15FEB11E3A3CA4DF20D23E861F8D702F /* Sources */, + 9E733131C6634D30DBD66BE2215B8CD3 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + AE888898772A36684C44F97000D1931C /* PBXTargetDependency */, + ); + name = RNLocalize; + productName = RNLocalize; + productReference = 33C6CF0EA084E16BD1D97452060679E9 /* libRNLocalize.a */; productType = "com.apple.product-type.library.static"; }; 7969F0F17682790DCAF63BC9AF2176ED /* GoogleUtilities */ = { @@ -6221,53 +6194,70 @@ ); name = GoogleUtilities; productName = GoogleUtilities; - productReference = F25405EA15F70384E1C3A2E47E3B5FF2 /* libGoogleUtilities.a */; + productReference = 7906BFCA17E93A5C920FC69013A8B802 /* libGoogleUtilities.a */; productType = "com.apple.product-type.library.static"; }; - 881C2DC83B2ECCAC7A7E6FCA96BD90E0 /* react-native-splash-screen */ = { + 84717068AE991A783F22DE0DE87C4E14 /* react-native-splash-screen */ = { isa = PBXNativeTarget; - buildConfigurationList = 25E8EA84C0BF7C774D81D40EAF0A01B3 /* Build configuration list for PBXNativeTarget "react-native-splash-screen" */; + buildConfigurationList = D47A7DD3EFC58EACA121E6E893460E51 /* Build configuration list for PBXNativeTarget "react-native-splash-screen" */; buildPhases = ( - AEECD191AADD402EA0E8CFC3DCABE976 /* Headers */, - 05CC2B015B647038CA7E44043EF4885D /* Sources */, - DE86A4FE36526627CDD510D1DC42CDCF /* Frameworks */, + AC5C256FF44ABC6C4419BD48395AE3EB /* Headers */, + D83AE89B9EB16D91E009E51CCEB10DC3 /* Sources */, + CD7B4756815E824F4716FBA15A80256C /* Frameworks */, ); buildRules = ( ); dependencies = ( - F9A16B8DD1FD6159E2799D727812965D /* PBXTargetDependency */, + C0656619977637E56F35BBEB2179E8E9 /* PBXTargetDependency */, ); name = "react-native-splash-screen"; productName = "react-native-splash-screen"; - productReference = C99363CDFE331A7A203AA7057DA0B950 /* libreact-native-splash-screen.a */; + productReference = 714C5B51AE1B1FED60435E33489164DA /* libreact-native-splash-screen.a */; productType = "com.apple.product-type.library.static"; }; - 8F9FB30742F24E06348CA6BB7BE816B4 /* EXFileSystem */ = { + 8601F7B19425496C5312C6F111D6E777 /* UMCore */ = { isa = PBXNativeTarget; - buildConfigurationList = 126AE8970754A6BA5FE9DA02CA010B2A /* Build configuration list for PBXNativeTarget "EXFileSystem" */; + buildConfigurationList = 86FB6036B4221D1FE19A24194599B43C /* Build configuration list for PBXNativeTarget "UMCore" */; buildPhases = ( - 7BCE6740C1956DB89891BD6F4A6AE044 /* Headers */, - 7CD392B2F5800AD37DD5DCE1C984884E /* Sources */, - 70DCC08B264C6FCAAF9029986DC4F583 /* Frameworks */, + 02DE3190B20BF1974373B344574C34CD /* Headers */, + 63B5C59657683A239FEB79ACF5597581 /* Sources */, + 03E04BE339D7014A9B11F8DD9200C161 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 2FA54EC112515E4A3EF63E83EBC8D733 /* PBXTargetDependency */, - 3E56B5BEA3C0A0A4A52D8A2EDD469759 /* PBXTargetDependency */, ); - name = EXFileSystem; - productName = EXFileSystem; - productReference = E423A1042B4C33D937036DEB76B7BBC5 /* libEXFileSystem.a */; + name = UMCore; + productName = UMCore; + productReference = 451647C74153E3571F04F1487A7BFC62 /* libUMCore.a */; productType = "com.apple.product-type.library.static"; }; - 91F7E9145255DAC901E58E2F91F5411A /* QBImagePickerController-QBImagePicker */ = { + A486E5AB43C3327005F1C0B986A448C0 /* EXConstants */ = { isa = PBXNativeTarget; - buildConfigurationList = 12511623EBA4F5F479E949FC4CCA9BDB /* Build configuration list for PBXNativeTarget "QBImagePickerController-QBImagePicker" */; + buildConfigurationList = C70B8DD136F9BAD341C1B40C899208EC /* Build configuration list for PBXNativeTarget "EXConstants" */; buildPhases = ( - 2F0AE4DBA3726730FE9FBE856A394B72 /* Sources */, - 65E85791551E15B53E361251A932B6DA /* Frameworks */, - 50550E7C2E41BBFA47EC418DEB6E61E1 /* Resources */, + 6199E50C54AD2932637DF85DC60C569F /* Headers */, + 292310AC1ACDD8EBFEF69008F27A606E /* Sources */, + 3A98B18BFA5EB2FE5C28511CAD147EDA /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + BE70AB1116776A9F90A3C783B9F1769B /* PBXTargetDependency */, + C685EEFD7FF4D4C3F16AD088F18AD053 /* PBXTargetDependency */, + ); + name = EXConstants; + productName = EXConstants; + productReference = 43498D74C6A4204CF8441A0E92273653 /* libEXConstants.a */; + productType = "com.apple.product-type.library.static"; + }; + B117AF3693E56035F30D5DD8D0697ACB /* QBImagePickerController-QBImagePicker */ = { + isa = PBXNativeTarget; + buildConfigurationList = 5A1AFF0159F6BECDA8AA46E40AEBA6D4 /* Build configuration list for PBXNativeTarget "QBImagePickerController-QBImagePicker" */; + buildPhases = ( + 5CED6A7157C4C9E988C2FDF6C15DA93B /* Sources */, + 7EFD21791256140F15ED5D4679C49B0D /* Frameworks */, + 026E523A67D661290555A11EF81B381C /* Resources */, ); buildRules = ( ); @@ -6275,120 +6265,166 @@ ); name = "QBImagePickerController-QBImagePicker"; productName = "QBImagePickerController-QBImagePicker"; - productReference = 360B14DF3849B500D6FF5B60F39646F3 /* QBImagePicker.bundle */; + productReference = 4401736364B38C1860579F32F9A5790E /* QBImagePicker.bundle */; productType = "com.apple.product-type.bundle"; }; - 997956AE0169931CBC995BF26AB12BFB /* RNImageCropPicker */ = { + B11E238094137347E8790BFEB1BEF01F /* EXWebBrowser */ = { isa = PBXNativeTarget; - buildConfigurationList = A23B003B3B41EA61C3EC07C3EFEC2F69 /* Build configuration list for PBXNativeTarget "RNImageCropPicker" */; + buildConfigurationList = 08C4767D793682C307862495EDFC6F37 /* Build configuration list for PBXNativeTarget "EXWebBrowser" */; buildPhases = ( - DD660542024F8529C86C94F05423628F /* Headers */, - 034B3DE2BC5A3FF4307498EFAB729E1A /* Sources */, - B4EC8904C6EEBC27C5BD9158AF2C6A42 /* Frameworks */, + 07EA496922703B388FA6473ED46A4F8D /* Headers */, + D89D7FE949ACB9856F33FBF82572B196 /* Sources */, + 9A22F16A5E9D7F5EA2A5F36905D8D1DD /* Frameworks */, ); buildRules = ( ); dependencies = ( - 7634EF4A20DE06B5F05CB5D99D6E16FC /* PBXTargetDependency */, - 0EA8CE50AA5FD63F6FC066274B3669B6 /* PBXTargetDependency */, - 29BFA68A94528BB783E193ED3F0842F2 /* PBXTargetDependency */, + 17B0305E08C7EF9ED292AA9014450AF0 /* PBXTargetDependency */, ); - name = RNImageCropPicker; - productName = RNImageCropPicker; - productReference = A83FF1D80122DFC1366631D1E2A9937C /* libRNImageCropPicker.a */; + name = EXWebBrowser; + productName = EXWebBrowser; + productReference = 5183A53E1333DC32E38E5FCD369B54E9 /* libEXWebBrowser.a */; productType = "com.apple.product-type.library.static"; }; - 9A0D985B32E9B17E43CE4137E46B85E1 /* RSKImageCropper */ = { + B9E01E05708DCB29877DA339FB4BD697 /* Pods-RocketChatRN */ = { isa = PBXNativeTarget; - buildConfigurationList = 2D01661ABC901262D64AECDD36D8687C /* Build configuration list for PBXNativeTarget "RSKImageCropper" */; + buildConfigurationList = CEA0CE44B8D952C687E12E55FF66A2AE /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */; buildPhases = ( - EB672978E56AE0AE728C36D0DCE1FF39 /* Headers */, - 340A662452F8220F462C7DF73CA5777F /* Sources */, - E51B582A38825BA23C31C9E58F5C9BAF /* Frameworks */, + A2C41A3AFCAB319A602BC9D962647870 /* Headers */, + B84036A7BB5A67DE2B2EBD3F057655E6 /* Sources */, + 186BEAC15B6B7E9590DDF3638841135E /* Frameworks */, ); buildRules = ( ); dependencies = ( + 85B5CE3917A5C64FD070BB6D2AB55088 /* PBXTargetDependency */, + 8F3D86F2E5ECD857AA3DCB9BB4123F39 /* PBXTargetDependency */, + B75C99187A38E182E0023E765D886980 /* PBXTargetDependency */, + BC7BB501F6741562A582B2E3DEB75054 /* PBXTargetDependency */, + 84A0A8EEFD6BE3D7A3E2B15A89552047 /* PBXTargetDependency */, + 49563F3FF513421913DE21FD0767DCB7 /* PBXTargetDependency */, + E425F0085265F88334E42FF36D81DFCE /* PBXTargetDependency */, + 1E2182E9F32939A4458F3958862905DA /* PBXTargetDependency */, + D553A5815C1C1C9153500B14751E4FC5 /* PBXTargetDependency */, + 623ADCF6F86505220C45031D07FE385C /* PBXTargetDependency */, + 5954908472D1FFE09A30DBA1EBF8A0C5 /* PBXTargetDependency */, + 19AA25202B27FF167160BD2A388CE47F /* PBXTargetDependency */, + 2639622FB68DE70FE118EF73031934F4 /* PBXTargetDependency */, + 58B535B5374DE3105B5AA1A42079311E /* PBXTargetDependency */, + ADC2C2730047B9E335A88AC55CF0CDC5 /* PBXTargetDependency */, + C09D8A4947F7F3D4A24CD211602D4607 /* PBXTargetDependency */, + F91E31A992D893469AB18E38B1FE561E /* PBXTargetDependency */, + C47A2648EF7B2247F26523FA032FB7B0 /* PBXTargetDependency */, + 246388D36557A45AD4DB44E3C2095D57 /* PBXTargetDependency */, + 073791DD93AA1CB345D08F2770195951 /* PBXTargetDependency */, + CDFE11A74794D9A30BAC2B94462ADEB0 /* PBXTargetDependency */, + 913B35F5FC8529BD4B236F31A5568862 /* PBXTargetDependency */, + FC327DDDCB3897E55AE01A56392592C3 /* PBXTargetDependency */, + 6A2D47B9867430DD1111137E3927860E /* PBXTargetDependency */, + 06F05296C06A855BFEEF9E6D07C098D4 /* PBXTargetDependency */, + 2B6D46BA6664E46AA5AA9EDE85098F43 /* PBXTargetDependency */, + 53B78D00F2D87FB6CCE1A3542309BDE2 /* PBXTargetDependency */, + 3BD244AF2DD3EC6649F7D3B9975EDC39 /* PBXTargetDependency */, + 63BA0B983E1A78220C8E01F6D254AB83 /* PBXTargetDependency */, + AC3EEF494BF2940FDFABFEC8A0BA8E83 /* PBXTargetDependency */, + 4259EEB961E963BCB6CD3FC1374599C1 /* PBXTargetDependency */, + 20C340E1F4898EE319A9436052101F74 /* PBXTargetDependency */, + 36859321026A23613BCE50BDF238BA26 /* PBXTargetDependency */, + 6FFD4DED2A886E08E8B4EA85C0C465AC /* PBXTargetDependency */, + 4DADBBCD203AF0DFE54622FDFBA0506E /* PBXTargetDependency */, + 171E51C96EABE10BABDDCABD0A21C810 /* PBXTargetDependency */, + 169E0128E3969F320C043460FF14F4A5 /* PBXTargetDependency */, + 43D45C9CD2E1F0078CB181CFC6D6698F /* PBXTargetDependency */, + B983257BB8B915D81078307930132C0E /* PBXTargetDependency */, + 0687A6E47B7C7CECB4190587FD53F0D3 /* PBXTargetDependency */, + E06A04E2F71AC981151E530DAA599D5B /* PBXTargetDependency */, + 328EE814352F8DAE3FF4A8F230AEE923 /* PBXTargetDependency */, + 3A2C3F6D3FEE8262ABF34D99DC584CE2 /* PBXTargetDependency */, + AA8332B17559FD252AD6DE2D071BDD5C /* PBXTargetDependency */, + 96E61A77D08257DF826D6A0FC144EFCB /* PBXTargetDependency */, + 59797691182C5BB2670B5B46BC16134B /* PBXTargetDependency */, + CC6D3C87E33351449B92B18007E16864 /* PBXTargetDependency */, + 851B6692FF1A49DF12F823E739838A97 /* PBXTargetDependency */, + 48EC97F50E00C72069E5AD0E453EDB70 /* PBXTargetDependency */, ); - name = RSKImageCropper; - productName = RSKImageCropper; - productReference = 72BE02F62E749A6CECDB52ADE6E505A5 /* libRSKImageCropper.a */; + name = "Pods-RocketChatRN"; + productName = "Pods-RocketChatRN"; + productReference = C272B93792665BDB0D95E18345086C2A /* libPods-RocketChatRN.a */; productType = "com.apple.product-type.library.static"; }; - A04548DE5D4EE46EEBE9E0084D8824ED /* RNDeviceInfo */ = { + CFFE323788A5B4BD0512844D53427F1F /* UMReactNativeAdapter */ = { isa = PBXNativeTarget; - buildConfigurationList = E31DA43DCA94B832285311278BA85560 /* Build configuration list for PBXNativeTarget "RNDeviceInfo" */; + buildConfigurationList = 7069980CB6B0DC3077EC4A39A979136A /* Build configuration list for PBXNativeTarget "UMReactNativeAdapter" */; buildPhases = ( - 31136C8352F24511832AE349ABAF8194 /* Headers */, - B6E6EB49D3AFDFA1728F185F4E6F54DA /* Sources */, - EE421417F9D7C7647C6712769182B19F /* Frameworks */, + B04A9DB86C079E1AC98F0391EB08E7EF /* Headers */, + 63125CD7658E2AC155E51C56232F99B1 /* Sources */, + 27193B470F919680B8D01E09841DBE44 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 96065F25CDD223B089FA24634D6481B6 /* PBXTargetDependency */, - ); - name = RNDeviceInfo; - productName = RNDeviceInfo; - productReference = 9BACF3523027510533E065E3A56D1F5B /* libRNDeviceInfo.a */; - productType = "com.apple.product-type.library.static"; - }; - CE8197F189BB161AE1302A79E4F651AF /* UMReactNativeAdapter */ = { - isa = PBXNativeTarget; - buildConfigurationList = 46234A99D176D6F699CE66EA8FC8034F /* Build configuration list for PBXNativeTarget "UMReactNativeAdapter" */; - buildPhases = ( - AD4D3F028E92CB073D042C38C2435CBD /* Headers */, - B240AEB571956B906CA8D835843A87E3 /* Sources */, - 2F5CC1D603FECE9A1FD07D74FF58307D /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - D6B9CD560D324303EE5D9A7B500B7BD1 /* PBXTargetDependency */, - 62A30B12D91A41F63B4839B8B3C18999 /* PBXTargetDependency */, - F1FBC4674A04E297D85D220FE4F20798 /* PBXTargetDependency */, + 45EA292DDD2F685596B9F0B744BD8BBC /* PBXTargetDependency */, + 80FB72C0565F83E366FE2096A19BBBD6 /* PBXTargetDependency */, + 3B0702A0F1D9062D9255C7B8A4096F5C /* PBXTargetDependency */, ); name = UMReactNativeAdapter; productName = UMReactNativeAdapter; - productReference = 7A83942D042DAF5CB456A7113DAF9EBD /* libUMReactNativeAdapter.a */; + productReference = A3E78F3A04EC8F4E4F2C5C8B162C6ECE /* libUMReactNativeAdapter.a */; productType = "com.apple.product-type.library.static"; }; - D8201C4F7E620F6188453B5CB18BAE02 /* react-native-webview */ = { + D3ECEDE5AEF3D2A7F3F908BD369DA39E /* RNScreens */ = { isa = PBXNativeTarget; - buildConfigurationList = D4E32AC40AD2B01D73C3FFFDE2C86F64 /* Build configuration list for PBXNativeTarget "react-native-webview" */; + buildConfigurationList = BA9BA1A6548084E77648AB1CB3377AA8 /* Build configuration list for PBXNativeTarget "RNScreens" */; buildPhases = ( - 9452020040EF5BE56076CBEF1D0C473D /* Headers */, - 4B3E91BA35974F4A01BB8BDC0B488874 /* Sources */, - A3DFA725824C15A712AB7278E0D46EE1 /* Frameworks */, + 039A505B4883BF0C122B52B3C5E7F6F5 /* Headers */, + 18D35D43D8CF4F18292E090A9F35B80F /* Sources */, + FD758C1D3774BE266750501C74B521CC /* Frameworks */, ); buildRules = ( ); dependencies = ( - 01104ADB49B9F7E782E66837394267B8 /* PBXTargetDependency */, + BD67BB1ECFA8913E04E8C81218C578A1 /* PBXTargetDependency */, ); - name = "react-native-webview"; - productName = "react-native-webview"; - productReference = 5946684FA30A5B9D7A005137B2A405C9 /* libreact-native-webview.a */; + name = RNScreens; + productName = RNScreens; + productReference = C84865215A1349621CE1711245EE16EB /* libRNScreens.a */; productType = "com.apple.product-type.library.static"; }; - DF470A1028ED32C9E70DBDAA805F8802 /* Folly */ = { + DBEFD425284835C527D3A428E908D639 /* QBImagePickerController */ = { isa = PBXNativeTarget; - buildConfigurationList = 9811B54698490F73C0B6CC6E1889626F /* Build configuration list for PBXNativeTarget "Folly" */; + buildConfigurationList = BF2BE3FDF3C80965CDF320F73833796D /* Build configuration list for PBXNativeTarget "QBImagePickerController" */; buildPhases = ( - 2203AB066D4CD3F505DFCC82F2AE8D25 /* Headers */, - 5FB00FA1F1269AE77FB2EAF6C8E61AD0 /* Sources */, - C09BF11F1881278EB1AC1B19C7436806 /* Frameworks */, + 4A69AAB1DEC6AAB0D427082D65A1FA2A /* Headers */, + CDCC6E1B31FAD9AEE8B9D7B280A0D8D0 /* Sources */, + 57F07B03BFA5BB41A98E128FE2899CE6 /* Frameworks */, ); buildRules = ( ); dependencies = ( - C83FC2C3E8CEC32DD8932E44896D7CFB /* PBXTargetDependency */, - BD2C22AF6121E6B72DFB98F8BBAB9A69 /* PBXTargetDependency */, - 8C00E3FF0B5CEFE1A868AC9062D115FF /* PBXTargetDependency */, + 4D0C07B72EA7CF0A7B89FEA4DFA79B61 /* PBXTargetDependency */, ); - name = Folly; - productName = Folly; - productReference = 32F45697D6853712C03725F089D38862 /* libFolly.a */; + name = QBImagePickerController; + productName = QBImagePickerController; + productReference = DC4CCEDF80012E99F5FF8BBA53F19406 /* libQBImagePickerController.a */; + productType = "com.apple.product-type.library.static"; + }; + E07EA1A35FBB3A986F484EB01CDD5527 /* EXPermissions */ = { + isa = PBXNativeTarget; + buildConfigurationList = 694A8CE4B2F3D4A51F73B435FF654E3C /* Build configuration list for PBXNativeTarget "EXPermissions" */; + buildPhases = ( + E4D17E96D903B293E993863B6F717145 /* Headers */, + 9609AAA15E463B8786B346FAC04672A0 /* Sources */, + 7E45C3FC79B9029C8BDA87BBEF9B76A0 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + EECEC39CD1A9AF30CCFCB71B11A14B7D /* PBXTargetDependency */, + B12997E3D5BE4F39EC03469A5CD99829 /* PBXTargetDependency */, + ); + name = EXPermissions; + productName = EXPermissions; + productReference = E2EF6A14FFEE541517297ABA63D310EC /* libEXPermissions.a */; productType = "com.apple.product-type.library.static"; }; E3A3FB14CD4ACD21565913CF4A4B097C /* GTMSessionFetcher */ = { @@ -6405,7 +6441,7 @@ ); name = GTMSessionFetcher; productName = GTMSessionFetcher; - productReference = 34563A526156F5D33048FF189E22C2CF /* libGTMSessionFetcher.a */; + productReference = 4829B3B783E057A5B872870E722CDCF0 /* libGTMSessionFetcher.a */; productType = "com.apple.product-type.library.static"; }; F1DE11E9221F196A8A9D3464F96A345A /* Protobuf */ = { @@ -6422,24 +6458,81 @@ ); name = Protobuf; productName = Protobuf; - productReference = 0002EEB829E356E7644F12B4366241A0 /* libProtobuf.a */; + productReference = C8869378C5667F5922A8A45A942F4C0F /* libProtobuf.a */; productType = "com.apple.product-type.library.static"; }; - F42432668A0F81BE898F1FEA0D6A83B7 /* EXAppLoaderProvider */ = { + F2D20B3CB8DD39B7858E3096028AC179 /* RNImageCropPicker */ = { isa = PBXNativeTarget; - buildConfigurationList = 1C32006CC07DA731A4A3EB74DE490502 /* Build configuration list for PBXNativeTarget "EXAppLoaderProvider" */; + buildConfigurationList = B8BDBC9A7846567AC04DC9E24808B35D /* Build configuration list for PBXNativeTarget "RNImageCropPicker" */; buildPhases = ( - 9308D3939AFAB2C5117CBAD222E15FE1 /* Headers */, - 6B872F375232FDACC3D546EF9D28485C /* Sources */, - CEED69BFDF6A885185DB264BF3D59019 /* Frameworks */, + 92679D6059188F7817839955EEEE74A6 /* Headers */, + 93D0835798096FB987B2E50D9258B0BB /* Sources */, + 347EC368AF721C842A024D6349C5D459 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 8C415D2ADF7DCE687E2890A8663D01F1 /* PBXTargetDependency */, + FE529C0B98EBB2D8DF77992755008DF1 /* PBXTargetDependency */, + D72F0F50FE628E83E287FAC1E4223812 /* PBXTargetDependency */, + ); + name = RNImageCropPicker; + productName = RNImageCropPicker; + productReference = 945C970F7377EA4DC2C6CAE4A41B80BE /* libRNImageCropPicker.a */; + productType = "com.apple.product-type.library.static"; + }; + F6361AE11A0D2F5CE16E188973F7335C /* react-native-webview */ = { + isa = PBXNativeTarget; + buildConfigurationList = C10BA433042CCBCB5917296A4A083B99 /* Build configuration list for PBXNativeTarget "react-native-webview" */; + buildPhases = ( + 187309CEC2DCB23D866C419EFDC2DE1B /* Headers */, + 3B060D4EE3114BBC4A02109078A322EC /* Sources */, + E7DC1DDEB848F882683CE0543D06000B /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + A4C2F635C0611722067292FDE443CCC9 /* PBXTargetDependency */, + ); + name = "react-native-webview"; + productName = "react-native-webview"; + productReference = FF878C7B4FE6C7FEDD7932FEA114D007 /* libreact-native-webview.a */; + productType = "com.apple.product-type.library.static"; + }; + FD0F4E74C14C4B5B552686BD9576466F /* EXFileSystem */ = { + isa = PBXNativeTarget; + buildConfigurationList = FBC40A7F6CC2304CFC78A61E757FCC99 /* Build configuration list for PBXNativeTarget "EXFileSystem" */; + buildPhases = ( + CA08E1126E2EED28DC45A14AE3200DDD /* Headers */, + B53F6EED305935D2B2365FE6336F4F34 /* Sources */, + B8E263271A672B5588806F2987A6EFCF /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 25FF94CB1F0E40824E1E6AF9F1F0421A /* PBXTargetDependency */, + 4F7FBAA168FB752BC980C4CB37D4732D /* PBXTargetDependency */, + ); + name = EXFileSystem; + productName = EXFileSystem; + productReference = 5E414F340DFDDD3CFCBB65D28556C882 /* libEXFileSystem.a */; + productType = "com.apple.product-type.library.static"; + }; + FFD3AAA592A9BEDAE8106315C575E645 /* RSKImageCropper */ = { + isa = PBXNativeTarget; + buildConfigurationList = A9BB87915F87BFCD4339830D75C3E225 /* Build configuration list for PBXNativeTarget "RSKImageCropper" */; + buildPhases = ( + C5B844B2A4A00E041C465FAAD3897FC5 /* Headers */, + D5CBDC69FCC09C91E3E3CF49CA0402A7 /* Sources */, + 9383A40AAFDC1D9533A19B8DD29AFC2E /* Frameworks */, ); buildRules = ( ); dependencies = ( ); - name = EXAppLoaderProvider; - productName = EXAppLoaderProvider; - productReference = C0D19704B2324B51348F1340528D4C3D /* libEXAppLoaderProvider.a */; + name = RSKImageCropper; + productName = RSKImageCropper; + productReference = F167613932A26F1D49B73114C21BCD03 /* libRSKImageCropper.a */; productType = "com.apple.product-type.library.static"; }; /* End PBXNativeTarget section */ @@ -6448,8 +6541,8 @@ BFDFE7DC352907FC980B868725387E98 /* Project object */ = { isa = PBXProject; attributes = { - LastSwiftUpdateCheck = 1020; - LastUpgradeCheck = 1020; + LastSwiftUpdateCheck = 1100; + LastUpgradeCheck = 1100; }; buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */; compatibilityVersion = "Xcode 3.2"; @@ -6459,19 +6552,19 @@ en, ); mainGroup = CF1408CF629C7361332E53B88F7BD30C; - productRefGroup = FAF6BC2FF500ACC91531B00C2A3F45EF /* Products */; + productRefGroup = EE073E38D198FB86E54839B12B600FB8 /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( 66641B93FAF80FF325B2D7B4AD85056F /* boost-for-react-native */, ABA9A411BB5A359862E5F1AA6238278E /* Crashlytics */, - 1414ADEE4A421F3C5F9A229345CE3F61 /* DoubleConversion */, - F42432668A0F81BE898F1FEA0D6A83B7 /* EXAppLoaderProvider */, - 2F8CF410B0326B6DEB5A2CDA4E2A2D8B /* EXConstants */, - 8F9FB30742F24E06348CA6BB7BE816B4 /* EXFileSystem */, - 45018F5317EE8A727FB05D4B61A678A6 /* EXHaptics */, - 5ED05858D3E3C1599A062FB1C45FE359 /* EXPermissions */, - 240504C276270018DE05B3D0F038B1E5 /* EXWebBrowser */, + 645DEAED47D48A55A088EE2AD4BCABE9 /* DoubleConversion */, + 4ECE1108F140208A729A83BC94FAA150 /* EXAppLoaderProvider */, + A486E5AB43C3327005F1C0B986A448C0 /* EXConstants */, + FD0F4E74C14C4B5B552686BD9576466F /* EXFileSystem */, + 5B1BA8B3E53682DD179F7BFF8F2C8B75 /* EXHaptics */, + E07EA1A35FBB3A986F484EB01CDD5527 /* EXPermissions */, + B11E238094137347E8790BFEB1BEF01F /* EXWebBrowser */, D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */, 97C8CD7E4179727E4F374CABD338D2BB /* Firebase */, 39E0403E3ACE39BC0D878D82FAB8F012 /* FirebaseABTesting */, @@ -6480,70 +6573,60 @@ 586739D116442BA7FCD2EC0353EA0FA4 /* FirebaseInstanceID */, 42F7AF66FD1178857DC3A2834552BE76 /* FirebasePerformance */, 5AAD465FECAE9083F45E3DB9252A8302 /* FirebaseRemoteConfig */, - DF470A1028ED32C9E70DBDAA805F8802 /* Folly */, - 29FC2A0EC130F2F2AF7AC9AE94A583B4 /* glog */, + 2204E533997A82F0D6F7AD16CE4C7106 /* Folly */, + 1DBC3090C8BE77C9F4202B0421E0791E /* glog */, AB021401ADE9E1431240BBA948E7965E /* GoogleAppMeasurement */, 7C36E7C600F8DE2BE1819059C80F2182 /* GoogleIDFASupport */, 32F8EA730FE2005197F54338D2C236AC /* GoogleToolboxForMac */, 7969F0F17682790DCAF63BC9AF2176ED /* GoogleUtilities */, E3A3FB14CD4ACD21565913CF4A4B097C /* GTMSessionFetcher */, 2543734D0A332B2588202904B99CC151 /* nanopb */, - 5A95CDAA46E2CD086247CE7022432D8C /* Pods-RocketChatRN */, + B9E01E05708DCB29877DA339FB4BD697 /* Pods-RocketChatRN */, F1DE11E9221F196A8A9D3464F96A345A /* Protobuf */, - 29C34A1CC983103B3A70F1BD1BAA9E03 /* QBImagePickerController */, - 91F7E9145255DAC901E58E2F91F5411A /* QBImagePickerController-QBImagePicker */, - 416F9FBE7FA448C0BD8AA749A5FBF805 /* react-native-orientation-locker */, - 881C2DC83B2ECCAC7A7E6FCA96BD90E0 /* react-native-splash-screen */, - D8201C4F7E620F6188453B5CB18BAE02 /* react-native-webview */, - A04548DE5D4EE46EEBE9E0084D8824ED /* RNDeviceInfo */, - 997956AE0169931CBC995BF26AB12BFB /* RNImageCropPicker */, - 0FD5D3D2ED844A8EA4DB114C303CC931 /* RNScreens */, - 9A0D985B32E9B17E43CE4137E46B85E1 /* RSKImageCropper */, - 697F1B537EEB4F371E0205934B9E8BEE /* UMBarCodeScannerInterface */, - F73DB2D340074674E9F439EFB938E4EB /* UMCameraInterface */, - D6CDBA4F567B018F442382D2520D6D27 /* UMConstantsInterface */, - 4412C5F689DD128EFB8F42F11C502D2C /* UMCore */, - 9594E8EA6B999DFB255E43422B537B4A /* UMFaceDetectorInterface */, - 031F6220C2D49E4AD5F61FAA0ECADF64 /* UMFileSystemInterface */, - 3B41CF884EED60EBD44EAEA9D3D255C6 /* UMFontInterface */, - BDEC894DA99DF9E9D232AD2BDBB2D87B /* UMImageLoaderInterface */, - 037B3080D17C0918F3E81F3A1BC9210D /* UMPermissionsInterface */, - CE8197F189BB161AE1302A79E4F651AF /* UMReactNativeAdapter */, - BF2CBBCE075E16438BFE38CBBD612F23 /* UMSensorsInterface */, - AF79516C61CAF63B0032AFC55FF9B727 /* UMTaskManagerInterface */, - 6455E5F0AEB4F4285748480B46DC377C /* yoga */, + DBEFD425284835C527D3A428E908D639 /* QBImagePickerController */, + B117AF3693E56035F30D5DD8D0697ACB /* QBImagePickerController-QBImagePicker */, + 356F0A9EBA4275589E1E12E721EE1B29 /* react-native-orientation-locker */, + 84717068AE991A783F22DE0DE87C4E14 /* react-native-splash-screen */, + F6361AE11A0D2F5CE16E188973F7335C /* react-native-webview */, + 50DC11FF8303D596388C95B26D2E548B /* RNDeviceInfo */, + F2D20B3CB8DD39B7858E3096028AC179 /* RNImageCropPicker */, + 760A2E2784BD5913932E942039ED1B15 /* RNLocalize */, + D3ECEDE5AEF3D2A7F3F908BD369DA39E /* RNScreens */, + FFD3AAA592A9BEDAE8106315C575E645 /* RSKImageCropper */, + BB9572F1566792491630510569E89516 /* UMBarCodeScannerInterface */, + B156F9573C6B7A72D1C3C5709747221C /* UMCameraInterface */, + 458293E00EF1C1F42778F9425AD34AA4 /* UMConstantsInterface */, + 8601F7B19425496C5312C6F111D6E777 /* UMCore */, + 59DC5D9A524CE398BCF64FEAD7E6FBF1 /* UMFaceDetectorInterface */, + 7825F222F53EF434DE74A6C6FAF290E9 /* UMFileSystemInterface */, + 4A819E0AAACF1DCA78FD8E5552709919 /* UMFontInterface */, + 2CC3173E2B9D15AACE1F8C582CA6C3B4 /* UMImageLoaderInterface */, + 76CC3A2D036B8B64B5F70A7078274100 /* UMPermissionsInterface */, + CFFE323788A5B4BD0512844D53427F1F /* UMReactNativeAdapter */, + DE51FBD286F169F98270DF6BA53F5886 /* UMSensorsInterface */, + F3EB3F69725213A107EBE1D88295232A /* UMTaskManagerInterface */, + 450F57633BF9EC17F9CFB0C9C32D6131 /* yoga */, ); }; /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ - 50550E7C2E41BBFA47EC418DEB6E61E1 /* Resources */ = { + 026E523A67D661290555A11EF81B381C /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - B3B1FC13A5521702328A07067AD77D51 /* de.lproj in Resources */, - 25FB2C4E77E7812B7D8C0D3A7D414EF4 /* en.lproj in Resources */, - 33D30069E5C75CB326A461575D87B8B7 /* es.lproj in Resources */, - B843113463367F42128AD5534E91C959 /* ja.lproj in Resources */, - 2A71C48032E1E98E73C093F9EF830C5E /* QBImagePicker.storyboard in Resources */, - 3CB870645A4C7576B545666AD935A67E /* zh-Hans.lproj in Resources */, + 61C78497A5B5B2C9EB5B0763B880A982 /* de.lproj in Resources */, + 2737F6E6340E86FBD4A9E4BB6A3A0AB2 /* en.lproj in Resources */, + 7F9C71CD3DC22FA32DDF8C464B64BD33 /* es.lproj in Resources */, + 8E92399003C7A8D9CFEB8F195B00D896 /* ja.lproj in Resources */, + 15102F2D3CDAC808EB918EF23A079DCC /* QBImagePicker.storyboard in Resources */, + 9A41AC34AF874C2878961727CCE6C723 /* zh-Hans.lproj in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXResourcesBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - 034B3DE2BC5A3FF4307498EFAB729E1A /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - F46C1D2277901B9DE01B72DF16F350F5 /* Compression.m in Sources */, - EEB5E19E8B3EEA10DBB8F2471C47E053 /* ImageCropPicker.m in Sources */, - F35B6CC9118E4FFAD3FE41B864BFE14E /* RNImageCropPicker-dummy.m in Sources */, - F727EF30C32677780CB56BCA01BE36C1 /* UIImage+Resize.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 0594473F37F90AFE741557A94CAFAFEC /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -6554,12 +6637,38 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 05CC2B015B647038CA7E44043EF4885D /* Sources */ = { + 061DACD6DFC3EBD596A23786331E4418 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - C45EE2EDF6F29A729BDE1493E9453AF0 /* react-native-splash-screen-dummy.m in Sources */, - 416814C2D48B4A295BCA87D2928193B3 /* RNSplashScreen.m in Sources */, + 14990E19CC1F4AAB0A67F65B096306A2 /* bignum-dtoa.cc in Sources */, + 120A4380D0839C6F5B6B68F7016C0670 /* bignum.cc in Sources */, + 1E0AE700C88768E5EDA7B4563BC1A3A3 /* cached-powers.cc in Sources */, + B804FC8AD528D429E085A9B52631B33D /* diy-fp.cc in Sources */, + 3CED9B0AF23F6823DC41248D93C778DB /* double-conversion.cc in Sources */, + 47FA7FBF77B1213A486EDFD2800F77B8 /* DoubleConversion-dummy.m in Sources */, + 76FA5693948D668AC5217EC0AF1C6B43 /* fast-dtoa.cc in Sources */, + 509F8E74467ABEF4F6A5662CB44A300A /* fixed-dtoa.cc in Sources */, + A8CA106C04C162B078C1AAE3F0AA5F8C /* strtod.cc in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 15FEB11E3A3CA4DF20D23E861F8D702F /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 3A388B259D09FB8E25423C08A1A047B4 /* RNLocalize-dummy.m in Sources */, + F4987DC7F85391B745F339455A531C37 /* RNLocalize.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 18D35D43D8CF4F18292E090A9F35B80F /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BAAA3785CA2A1C63FCC596B7210BFC25 /* RNScreens-dummy.m in Sources */, + 7E245D3D607C8D8EF834BF4D7C21A93A /* RNSScreen.m in Sources */, + 0BA1054EEC1116F37A2631A2580F1D8F /* RNSScreenContainer.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -6574,28 +6683,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 21CB502E9DB77EACF0EA760185DAB0DE /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 1FDE19E4BA8FB59C0436EE946176B1F7 /* Utils.cpp in Sources */, - 7D92567C3D2BB3E3D14D39DDA85C7BED /* YGConfig.cpp in Sources */, - 8F5DFEFFC8843AE241583BA68D493A7D /* YGEnums.cpp in Sources */, - 39BAD9A143AE7162CFB5A315931C5CED /* YGLayout.cpp in Sources */, - 47503BC45734FF1EFF631B855D001825 /* YGMarker.cpp in Sources */, - F955A6EB4B2621AD4221C1E127D94BDD /* YGNode.cpp in Sources */, - F23ACE595E6816D811B3EEE32D6B57CC /* YGNodePrint.cpp in Sources */, - AA4AA2B83F17E56F3B8B168652A7A962 /* YGStyle.cpp in Sources */, - C98CC351ADC8DA74B96FA42627997421 /* YGValue.cpp in Sources */, - E3E47A2B532192511FC0008593DA2B73 /* yoga-dummy.m in Sources */, - 388D2B4B446E01C7E46D8FD1833087BD /* Yoga.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 2F0AE4DBA3726730FE9FBE856A394B72 /* Sources */ = { + 292310AC1ACDD8EBFEF69008F27A606E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + 441CC59E05CD1798A940EABEC9260FCC /* EXConstants-dummy.m in Sources */, + BFED0E108BCCB32ADC7B04527528CB87 /* EXConstants.m in Sources */, + 6BB06CB7446BCBD59FD95F327DF028BF /* EXConstantsService.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -6620,35 +6714,25 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 340A662452F8220F462C7DF73CA5777F /* Sources */ = { + 3B060D4EE3114BBC4A02109078A322EC /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - D5DEEEC3A5D8722F59D4F25F84F24E33 /* CGGeometry+RSKImageCropper.m in Sources */, - 7F03EFD015F00706FB5EEEE3C1D42B3F /* RSKImageCropper-dummy.m in Sources */, - 098A6271D0AD2498BF26BA35970062B0 /* RSKImageCropViewController.m in Sources */, - 19DA459F76141465AD1CF04F5EA09CD9 /* RSKImageScrollView.m in Sources */, - 0D0B316EB31C82970EA3CDD77771677F /* RSKInternalUtility.m in Sources */, - E54206D193C34A07D7D0E0B1B0065D7B /* RSKTouchView.m in Sources */, - 07B2B5B42E9A1E6735EEE0DBA854B6B6 /* UIApplication+RSKImageCropper.m in Sources */, - 695B07F6181C65831FF9393444383EC3 /* UIImage+RSKImageCropper.m in Sources */, + C3F4D6CFD0F3ABA559169211625079EE /* react-native-webview-dummy.m in Sources */, + 694EF4024A7E6F3ECF40BEE8283FA8F6 /* RNCUIWebView.m in Sources */, + 981224718E9486D48AAF227F2F7C1CD5 /* RNCUIWebViewManager.m in Sources */, + 61BB6BAC8B94E35CBEA12F7DCD520F8B /* RNCWKProcessPoolManager.m in Sources */, + 1FF0C7270BFDDC1D6C414CCE7C568B17 /* RNCWKWebView.m in Sources */, + 87573135D3A3F281DFC82BFC3C2FB8B2 /* RNCWKWebViewManager.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 46106BEA1629E93FB6BC3A8F8BC7457A /* Sources */ = { + 405CBB648150F5EA74B7F858255291B2 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - A8F8AF145F8BC166C665E60275A1385B /* QBAlbumCell.m in Sources */, - E045570429973D4588013328422D2E33 /* QBAlbumsViewController.m in Sources */, - DF398B3BBBF9AF36B98216F347D4A6E3 /* QBAssetCell.m in Sources */, - BFC7820E0B2A878AE4168DFF55E2124C /* QBAssetsViewController.m in Sources */, - C70AB8CCC407E4F8B819E0965322204C /* QBCheckmarkView.m in Sources */, - FA1E9D15CFD49B726F6A6026DB3FE7A4 /* QBImagePickerController-dummy.m in Sources */, - E08DB134003BBC6E19D27BD6EBCD73C6 /* QBImagePickerController.m in Sources */, - 236ECF383B5A8106E444B22147FCD04C /* QBSlomoIconView.m in Sources */, - 73C6958D837DEF22E03B20754914A653 /* QBVideoIconView.m in Sources */, - A3A4A35A1C64A718EC4590D3B64EDBCB /* QBVideoIndicatorView.m in Sources */, + 4A6CB5D2B75FBD7AD0D61CEE7025FF99 /* Orientation.m in Sources */, + F4A00E239358853D7391437479ADEDC4 /* react-native-orientation-locker-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -6689,39 +6773,42 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4B3E91BA35974F4A01BB8BDC0B488874 /* Sources */ = { + 5CED6A7157C4C9E988C2FDF6C15DA93B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - B71E45007BC61B240E1F01233E784A9F /* react-native-webview-dummy.m in Sources */, - D4C9C49081275697E582AB139AE6D5E4 /* RNCUIWebView.m in Sources */, - 4E0B77D7B1576BD705F2190A63B0CC6C /* RNCUIWebViewManager.m in Sources */, - 9C6B2507E9604E5C22317814C5D12B31 /* RNCWKProcessPoolManager.m in Sources */, - 70E9397C6BB30FA1DBDF9A38F51C7250 /* RNCWKWebView.m in Sources */, - 761996780CA163E128F28ABD31CEEFCD /* RNCWKWebViewManager.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5FB00FA1F1269AE77FB2EAF6C8E61AD0 /* Sources */ = { + 63125CD7658E2AC155E51C56232F99B1 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - A603F92302A8297B0F3EBF7F7401EBBD /* Assume.cpp in Sources */, - 9C09F11BA21A367F85580F5E5CF30CA9 /* ColdClass.cpp in Sources */, - 02FF5D849A0664874439EF4BAC2A029C /* Conv.cpp in Sources */, - F901A44BAB4BB2967096265D767469D0 /* Demangle.cpp in Sources */, - 94C921F65340F551B03C5D6922576388 /* Demangle.cpp in Sources */, - F1B902B60FA4FD0B8198397332120C84 /* dynamic.cpp in Sources */, - 65AB95B50A3F253E56767FC717190684 /* F14Table.cpp in Sources */, - 87223E1BEAB415F791755EBF9E002C66 /* Folly-dummy.m in Sources */, - E997297D6CFC855095C08922CDDB4DCA /* Format.cpp in Sources */, - 6F523BF8E8F0E8F63871EBBD6F52E954 /* json.cpp in Sources */, - 4E0A2703083AF8211C29C24927EEA578 /* json_pointer.cpp in Sources */, - 0A63FF2A23BA8EF950D29CA533F04607 /* MallocImpl.cpp in Sources */, - 3DE45D3910CC47153462598BD966C2FA /* ScopeGuard.cpp in Sources */, - 10695B47303DF2F97F58581E0E53C2E2 /* SpookyHashV2.cpp in Sources */, - 83F6E3E7BAF0411AFE6B770BD22EF47D /* String.cpp in Sources */, - 84EAE8F60281CB3EF824504346CA4B3E /* Unicode.cpp in Sources */, + 4C5DDE8C2F6EA492258B20EB6EA23E2C /* UMModuleRegistryAdapter.m in Sources */, + 103DA7B414BF49A08BA50D069FB6B023 /* UMNativeModulesProxy.m in Sources */, + 3E860CB0288263AD9E4AC0ED1F3B32AD /* UMReactFontManager.m in Sources */, + 89E7411C03C755C3FC31BB47E9F3FFA8 /* UMReactLogHandler.m in Sources */, + 398B24E1324131CA404AD9281F798AE2 /* UMReactNativeAdapter-dummy.m in Sources */, + CE3BE674AB2823140759516A34D179F4 /* UMReactNativeAdapter.m in Sources */, + 24F673E57574E56F22930ED472B9690E /* UMReactNativeEventEmitter.m in Sources */, + 688ED48F88FBB74BA23DB7104B2B82A8 /* UMViewManagerAdapter.m in Sources */, + D721728759E188D4EA82D372FAD1C429 /* UMViewManagerAdapterClassesRegistry.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 63B5C59657683A239FEB79ACF5597581 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 5672F848FF959C3A5CCFA56FE0288E79 /* UMAppDelegateWrapper.m in Sources */, + 2D822AD060B6E93CBF52A50B8AC79A16 /* UMCore-dummy.m in Sources */, + 96FD686C41E663615A658BF61C0B8576 /* UMExportedModule.m in Sources */, + F454325F2E9D4B5FD1334D032F1BDE09 /* UMLogManager.m in Sources */, + D712995844A0D90F73F6CADE63E65849 /* UMModuleRegistry.m in Sources */, + 594680F9B579D06A192B669A7B3CA711 /* UMModuleRegistryProvider.m in Sources */, + E1A5D28034F1E75F82E9FAD6D7FD4885 /* UMSingletonModule.m in Sources */, + F5DCA182C2EEA0BEAD8576F5D5DA4CDE /* UMUtilities.m in Sources */, + E3A43BC61EF23E803811938C47263A10 /* UMViewManager.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -6737,164 +6824,146 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 6B872F375232FDACC3D546EF9D28485C /* Sources */ = { + 73763C6E7BD2820F0CD7E11ECAE71AF2 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 307CB65169E8986E7C907168C1FDDF66 /* EXAppLoaderProvider-dummy.m in Sources */, - EFDFE7E1BAA482B57A5362F7936B8D96 /* EXAppLoaderProvider.m in Sources */, + DACAEEE1091402CB62EE3C47E3D6A36B /* Assume.cpp in Sources */, + 0BF9B8F2B76271CE55DD91FEAAD2857C /* ColdClass.cpp in Sources */, + CC06BFF84FD5EA63E08268840CEB4D24 /* Conv.cpp in Sources */, + B34A22FBA050666AF2979D1B5CCC3636 /* Demangle.cpp in Sources */, + 34586DC0FB99C76FD4D412960D4B6770 /* Demangle.cpp in Sources */, + 27DF9FBE452E6ED38780CF74380DDCEF /* dynamic.cpp in Sources */, + FD7B93F0A4057A16D417EA8479B5295B /* F14Table.cpp in Sources */, + 02AC2E0F8684EB425FA13499B3AA0B12 /* Folly-dummy.m in Sources */, + 0CC4F7DCEE16F07BD1A2F66B04A3CE94 /* Format.cpp in Sources */, + 16F116F4E36C6D1AB836AAF616C6AB78 /* json.cpp in Sources */, + 8630F13E61717BB62E140E2061998045 /* json_pointer.cpp in Sources */, + A3DA13F2F5DB418C2D8DDAC342D63120 /* MallocImpl.cpp in Sources */, + 1E08C088A919FA2420743DA08223E0BC /* ScopeGuard.cpp in Sources */, + 9EABF709B3DBA7CBEAF91BDBACE8444B /* SpookyHashV2.cpp in Sources */, + 812A16C10C210FF4B8DA78B84B5D1C70 /* String.cpp in Sources */, + C2BCBA73A32E17DE6F57BBC64D55D133 /* Unicode.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 7626A7BB2A7AF80AE33C0010A5BC2CE9 /* Sources */ = { + 839078D90E46A5AF383F1BAEDEB34843 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - DA9405922A91004A0BF6AF5F3574BE81 /* EXHaptics-dummy.m in Sources */, - CC7E5E3068B8A7F3A12B2BDBCB96E302 /* EXHapticsModule.m in Sources */, + DDA55FB596018644A4D79140D253C78E /* Utils.cpp in Sources */, + 88451B6544DE9EDF9985C2E2BF8ACFF6 /* YGConfig.cpp in Sources */, + 872A5EC6FBE21FFF0FBD35EBFC0AE94A /* YGEnums.cpp in Sources */, + 2A7E8E0D029B7F57CE46E63F64C088DE /* YGLayout.cpp in Sources */, + 6B9FEB48DD6D36185DA6626F5867E42A /* YGMarker.cpp in Sources */, + A940C75514BB2F28570EAE1F99F2E64E /* YGNode.cpp in Sources */, + 5DB6F74643B970AA82BC0826D897B76F /* YGNodePrint.cpp in Sources */, + 82EAB27EFD924F753449B1F4F01E5B36 /* YGStyle.cpp in Sources */, + 10079CBE0B4BBC23ACA55C510D9AEBBC /* YGValue.cpp in Sources */, + 8D0599795E90EF4A25BBF4EE1EDBD94D /* yoga-dummy.m in Sources */, + A3D42C0DEC7A6D9F0A4E5D07E75FC32A /* Yoga.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 7CD392B2F5800AD37DD5DCE1C984884E /* Sources */ = { + 93D0835798096FB987B2E50D9258B0BB /* 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 */, + D4CD737510CD83B620FC0804A1FE227A /* Compression.m in Sources */, + 5E0FD4DD66EA3A012339F12362F0F7E8 /* ImageCropPicker.m in Sources */, + 2E23AF988F9FA0125124EA01ED7A2EBE /* RNImageCropPicker-dummy.m in Sources */, + A74DCCDDDE80E12429E31ACFDBF64F30 /* UIImage+Resize.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 975735BF1F5E2C092FB2A8E783C373C7 /* Sources */ = { + 95AA49EBDF2DA6FE542B14055FAE3440 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - EE40B868388C40490FF1E07712CA4B3E /* bignum-dtoa.cc in Sources */, - 598BF86C3CEAF5C934DBC6C26792EF94 /* bignum.cc in Sources */, - 72F769711E01B4FD1FAD993242D3F395 /* cached-powers.cc in Sources */, - 08F9747618A9327A39D7B1AF00D5DC5C /* diy-fp.cc in Sources */, - 49D5AE148EDE23C66E04C17A9DF3CD0E /* double-conversion.cc in Sources */, - FE3350C2A4C6ECEE35DA90459AC249CE /* DoubleConversion-dummy.m in Sources */, - 9F777CBD04816F19CF33C734C125DC1A /* fast-dtoa.cc in Sources */, - B5342DD8C99B6EAA57FAB6C09E94E38A /* fixed-dtoa.cc in Sources */, - EDBEA52F88EBC169CA6F8210950C9A7D /* strtod.cc in Sources */, + 5BF763F8EF91BF90AEC8E80EDA35C4F8 /* EXAppLoaderProvider-dummy.m in Sources */, + CE914509B01236ABB20E6682E2829DB7 /* EXAppLoaderProvider.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - A02A2E9F7389315B01604240D3D927B8 /* Sources */ = { + 9609AAA15E463B8786B346FAC04672A0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 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 */, + 78BF1F947D28284C6C5B06636B83AEF7 /* EXAudioRecordingPermissionRequester.m in Sources */, + 51C79C88820B5197AB3CDB9376396195 /* EXCalendarRequester.m in Sources */, + 4747F8766746305A6925482005F441C1 /* EXCameraPermissionRequester.m in Sources */, + 17B03B21474472F7EB23CCA083EB6CE0 /* EXCameraRollRequester.m in Sources */, + 8C7A15FBAE7271D2AB49E08463F5BC95 /* EXContactsRequester.m in Sources */, + 0C631B56D84BB38DC0844EBACC4893C5 /* EXLocationRequester.m in Sources */, + 2ABD5D9936F366E87BB7EA022DE746CF /* EXPermissions-dummy.m in Sources */, + 24725EF526B66947DFCFB06F8B0442D9 /* EXPermissions.m in Sources */, + CE399A301E038CE8427A92FD187093C7 /* EXReactNativeUserNotificationCenterProxy.m in Sources */, + AEA0571AD000EA6F97808A38CED466A8 /* EXRemindersRequester.m in Sources */, + 0B2D30F38EB2951F5650351BB4C018E6 /* EXRemoteNotificationRequester.m in Sources */, + 3D3E47E5F83FB0562F67CCE9A4AAA4F1 /* EXSystemBrightnessRequester.m in Sources */, + D4ECBFB97245592DB4156EB77244A90F /* EXUserNotificationRequester.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - A17417C9536AAEE4BC82D0BFA4EEB702 /* Sources */ = { + 9ED7695E4EDA6926DEE64D2BE78207DA /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 7AE7E376F2962DCCF0FD50168FEF415C /* Orientation.m in Sources */, - 402BF1ABC5BFC9A332A8CB429A117AFA /* react-native-orientation-locker-dummy.m in Sources */, + C8E9E47E7AF7A78CADE01237BF02B053 /* demangle.cc in Sources */, + 46AC4867CC0CAA171EFCA1441C26D3F8 /* glog-dummy.m in Sources */, + 3E5151D480C1069B6D43F1F4CC07AF74 /* logging.cc in Sources */, + 8DBA09F01CD9D933DB71015346F645B0 /* raw_logging.cc in Sources */, + B1A69A478245CB266F422F9139AEACAA /* signalhandler.cc in Sources */, + 4C1B1DE4A1750030209E75D1C6CC5BD5 /* symbolize.cc in Sources */, + F0B9F0E70E1ACD3BFF5BE044E2E73E24 /* utilities.cc in Sources */, + C3B802C60B33C82EB0022FE3E299A72B /* vlog_is_on.cc in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - A6C5040BCE203F411247AC644E4ECCA8 /* Sources */ = { + B53F6EED305935D2B2365FE6336F4F34 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - F691D9FA47A573CADDCF5584D7D693DE /* EXConstants-dummy.m in Sources */, - 5DBBB91027255885AAE7B300C895779A /* EXConstants.m in Sources */, - CDBC59077AD1D33760F3265595534A61 /* EXConstantsService.m in Sources */, + E126D849B2811DAB3717ADEC424D7657 /* EXDownloadDelegate.m in Sources */, + C198AB42A29594802AA8D6276A808FD3 /* EXFilePermissionModule.m in Sources */, + EF057C036B7B732BC9F983413A29C1E0 /* EXFileSystem-dummy.m in Sources */, + FCC887881586BEC4B9D0A24B7E3A2BB6 /* EXFileSystem.m in Sources */, + 91446633BDBBF72BFFE0F45182D49D33 /* EXFileSystemAssetLibraryHandler.m in Sources */, + 330B6B072E57ED740584170F1D33629C /* EXFileSystemLocalFileHandler.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - AF219684ACFFFF933CA8B998E06C6E10 /* Sources */ = { + B84036A7BB5A67DE2B2EBD3F057655E6 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 8D8FB7421481115A6EA8E29134A4F1A9 /* RNScreens-dummy.m in Sources */, - F6E8384E378AAAB45584434CBCBE7AAC /* RNSScreen.m in Sources */, - 73E22A82990FEF2C708146F5C729A265 /* RNSScreenContainer.m in Sources */, + 36FCF3244E77DBC026EDC0EA1256FEFF /* Pods-RocketChatRN-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - AF7E2A8BB3196AB169293F1A66B46A56 /* Sources */ = { + BCDCD0C34A5BF68884EE50161FA4DE35 /* 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 */, + AE50881383D99425658602348D1744B0 /* EXHaptics-dummy.m in Sources */, + 9C2121F5D96BDE54DA8B179237762DE2 /* EXHapticsModule.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - B0332E51FEAABE23FBE9EDEF7DAE717D /* Sources */ = { + CDCC6E1B31FAD9AEE8B9D7B280A0D8D0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - E30636799D2363B05D48F859511864CB /* demangle.cc in Sources */, - 5AD2957BC9616A15C34796F1E7487F00 /* glog-dummy.m in Sources */, - 906174AD800410B4773A4EAF4957653C /* logging.cc in Sources */, - 830AC0E023DDB020FAB2A7B55C21A568 /* raw_logging.cc in Sources */, - 1A6BB3682752BA9D73FB55FEFB1AB20D /* signalhandler.cc in Sources */, - 1DEBCB73B19589825892640DDE292CB0 /* symbolize.cc in Sources */, - 85B1BA370D18F6377A3D700A87F52D38 /* utilities.cc in Sources */, - ED2B5A1995AFDF63318F71ECE36C618C /* vlog_is_on.cc in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - B240AEB571956B906CA8D835843A87E3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 17F16EFB28E1F873E9631C1A44DE6664 /* UMModuleRegistryAdapter.m in Sources */, - EBC3BA0CE324B7E29195BE7D0B317BF6 /* UMNativeModulesProxy.m in Sources */, - 955BFF93D8121DE0C093114C197B6BDC /* UMReactFontManager.m in Sources */, - 2E5F4C17467F811E838B7A317CDB774E /* UMReactLogHandler.m in Sources */, - 2F059F9ED96D5557315B4A75F8ED7E1E /* UMReactNativeAdapter-dummy.m in Sources */, - D04A5E0614070663E99C6A31A35F9BC5 /* UMReactNativeAdapter.m in Sources */, - 12F4239975FB8BB879FDFFE9B21DF366 /* UMReactNativeEventEmitter.m in Sources */, - FC5A3D318D03615F2F5C55BAA2373DCB /* UMViewManagerAdapter.m in Sources */, - 0D30CD390B6D3320577F2E31BF2D1D75 /* UMViewManagerAdapterClassesRegistry.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - B6E6EB49D3AFDFA1728F185F4E6F54DA /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - E29887F90E39CF7E2C7D463E5E07475F /* DeviceUID.m in Sources */, - 71A3E5C89259F58C0806BFDC533996C6 /* RNDeviceInfo-dummy.m in Sources */, - D6C89A70E330D13E8B28FFDACDC4260D /* RNDeviceInfo.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - B8BA55E7D57EE70CB17B2121697E7772 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 3860A26424CCEE7DE5045519CD46BD87 /* Pods-RocketChatRN-dummy.m in Sources */, + 4C90C559212E7C72ACE990BF3F98A6AF /* QBAlbumCell.m in Sources */, + 52F3C55FB5CEA5AAC312CE5C2FE47A77 /* QBAlbumsViewController.m in Sources */, + 552D800685C369CABE1C181900114A52 /* QBAssetCell.m in Sources */, + 50754F2E6A21FF214AF3BF6D6EE31B2B /* QBAssetsViewController.m in Sources */, + D5C523019EA95E442E9E47FC81036E80 /* QBCheckmarkView.m in Sources */, + 7276EDB91E6966C52CB5B4B372D9B1E1 /* QBImagePickerController-dummy.m in Sources */, + 69503456C4222FE524622847A80EBFAF /* QBImagePickerController.m in Sources */, + EC8E348D73E769BE07F85A788629FCEF /* QBSlomoIconView.m in Sources */, + 2B746BDF7C2F5346A16F9C0DACE09C94 /* QBVideoIconView.m in Sources */, + 2AC667A039C6F93324C8BEABFAC7B22B /* QBVideoIndicatorView.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -6930,12 +6999,46 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - D8BADC07DACE496C6A1D36DECF9264FB /* Sources */ = { + D5CBDC69FCC09C91E3E3CF49CA0402A7 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 590169C3BE81E6FE9B67E19D5DCFC107 /* EXWebBrowser-dummy.m in Sources */, - FAF6B57EDEE412A783FD3FD64B4DBF17 /* EXWebBrowser.m in Sources */, + 26668FB66EE4CACAC65091E5860FAEC8 /* CGGeometry+RSKImageCropper.m in Sources */, + 3B61486774311C2034D9B8F7C0AE137A /* RSKImageCropper-dummy.m in Sources */, + 7008E067E9843C26A3E59B6C95690465 /* RSKImageCropViewController.m in Sources */, + 24989034B4FF36923DB70901F6A931AC /* RSKImageScrollView.m in Sources */, + 643A8231B8A3EDAC13A260049454CDE2 /* RSKInternalUtility.m in Sources */, + 88E4BC9E8966A28D3466EA2342BE2599 /* RSKTouchView.m in Sources */, + 7E188BC03A9DE76EBE0B9BAAB7EEE5B0 /* UIApplication+RSKImageCropper.m in Sources */, + 8A8AA5FC0D15E53DFA77F2468C6738A5 /* UIImage+RSKImageCropper.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + D83AE89B9EB16D91E009E51CCEB10DC3 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 6E793C782492F5837A74844E4CF90694 /* react-native-splash-screen-dummy.m in Sources */, + 9FA76154E3FCD9B2227F6E7356295B86 /* RNSplashScreen.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + D89D7FE949ACB9856F33FBF82572B196 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BC7823D69B7FA18696F5C13C6A9149A6 /* EXWebBrowser-dummy.m in Sources */, + 1283DAA1D9FC84DF5395D2C8E052B779 /* EXWebBrowser.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E0082C7751C0E84867406CC12B9F2ADD /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 7E7B3C5710B0965626F2B943F1B87277 /* DeviceUID.m in Sources */, + 61DD7BF22840C068207B9CFDC5E7CC4E /* RNDeviceInfo-dummy.m in Sources */, + 94A8D8A9611DA06EA04052B89B7EBD97 /* RNDeviceInfo.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -6963,28 +7066,23 @@ /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 01104ADB49B9F7E782E66837394267B8 /* PBXTargetDependency */ = { + 0687A6E47B7C7CECB4190587FD53F0D3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - targetProxy = FF62E4A62AA128846C370912EA2C5616 /* PBXContainerItemProxy */; + name = UMReactNativeAdapter; + target = CFFE323788A5B4BD0512844D53427F1F /* UMReactNativeAdapter */; + targetProxy = 5DC7F68A3A6549C2EF18979FBBA1002F /* PBXContainerItemProxy */; }; - 04A4AA4BEA7C2F48450DB3B9873A4003 /* PBXTargetDependency */ = { + 06F05296C06A855BFEEF9E6D07C098D4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseABTesting; - target = 39E0403E3ACE39BC0D878D82FAB8F012 /* FirebaseABTesting */; - targetProxy = 98EB120C8EE7F2CE033F4A047E2035CC /* PBXContainerItemProxy */; + name = RNDeviceInfo; + target = 50DC11FF8303D596388C95B26D2E548B /* RNDeviceInfo */; + targetProxy = 22B914D5DBFAB85056D377BB9C523730 /* PBXContainerItemProxy */; }; - 05C6A139E31FB582E7A93902AA529A6C /* PBXTargetDependency */ = { + 073791DD93AA1CB345D08F2770195951 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = 66641B93FAF80FF325B2D7B4AD85056F /* boost-for-react-native */; - targetProxy = E521CAEB28F51804BB5945E0020DDFDB /* PBXContainerItemProxy */; - }; - 07E5A6B5EEC28A622A9E5BE0DF760FBF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMTaskManagerInterface; - target = AF79516C61CAF63B0032AFC55FF9B727 /* UMTaskManagerInterface */; - targetProxy = A24F572C2889FEFE87F85CF3087C4986 /* PBXContainerItemProxy */; + name = GoogleIDFASupport; + target = 7C36E7C600F8DE2BE1819059C80F2182 /* GoogleIDFASupport */; + targetProxy = B0112B9B878E779943717DC52DB96FB4 /* PBXContainerItemProxy */; }; 08E6B860862204A263BA88F85507831A /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -6992,24 +7090,6 @@ target = 5AAD465FECAE9083F45E3DB9252A8302 /* FirebaseRemoteConfig */; targetProxy = 5B65179DE5276B59CE042E73FDDA241B /* PBXContainerItemProxy */; }; - 0A257EFA552F059D48ED22839D0D49E4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMReactNativeAdapter; - target = CE8197F189BB161AE1302A79E4F651AF /* UMReactNativeAdapter */; - targetProxy = 33E79EA3B4B39B654CEEF60737582461 /* PBXContainerItemProxy */; - }; - 0AFD655C77EBF7B701D9E50417793708 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleToolboxForMac; - target = 32F8EA730FE2005197F54338D2C236AC /* GoogleToolboxForMac */; - targetProxy = 98DBE850A05B95EDF6EED1D4E63B6C1E /* PBXContainerItemProxy */; - }; - 0EA8CE50AA5FD63F6FC066274B3669B6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RSKImageCropper; - target = 9A0D985B32E9B17E43CE4137E46B85E1 /* RSKImageCropper */; - targetProxy = BECFB845A640310B96CB7623FA1D7FDA /* PBXContainerItemProxy */; - }; 0F0A8B73246A3F2340DC1E516950CCBF /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; @@ -7022,47 +7102,41 @@ target = 1ABBF6F89787BBEDF49B4636ADB45587 /* FirebaseAnalytics */; targetProxy = 29C75182850787283A5CB901C4069706 /* PBXContainerItemProxy */; }; - 10B4D4E4DDC0F6AEFEDB6D4D4FCF9A31 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCameraInterface; - target = F73DB2D340074674E9F439EFB938E4EB /* UMCameraInterface */; - targetProxy = 586284C68E0B092622868BDA2627F90A /* PBXContainerItemProxy */; - }; - 134A1A4CD73558D18D8E8C3CCB5134F0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMPermissionsInterface; - target = 037B3080D17C0918F3E81F3A1BC9210D /* UMPermissionsInterface */; - targetProxy = 4DC861E58982F959B1BF6E842DB63625 /* PBXContainerItemProxy */; - }; 15D5DC6D54EDFCCE801AF55317683059 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleAppMeasurement; target = AB021401ADE9E1431240BBA948E7965E /* GoogleAppMeasurement */; targetProxy = D5582AE19A81D8922E73DAD94F1B1207 /* PBXContainerItemProxy */; }; - 18C520B18313293C3DDC00221404B063 /* PBXTargetDependency */ = { + 169E0128E3969F320C043460FF14F4A5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Firebase; - target = 97C8CD7E4179727E4F374CABD338D2BB /* Firebase */; - targetProxy = EE4CF5998639EAB8990D2DB66260E9A2 /* PBXContainerItemProxy */; + name = UMFontInterface; + target = 4A819E0AAACF1DCA78FD8E5552709919 /* UMFontInterface */; + targetProxy = 403AF84EFA3BE67EEC2FA575440E8C85 /* PBXContainerItemProxy */; }; - 1B3C2FDD43BBE98A6C93ECCBEDA1FCB5 /* PBXTargetDependency */ = { + 171E51C96EABE10BABDDCABD0A21C810 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Folly; - target = DF470A1028ED32C9E70DBDAA805F8802 /* Folly */; - targetProxy = 62A098FB8593E6DA882DC1F3042A5FE6 /* PBXContainerItemProxy */; + name = UMFileSystemInterface; + target = 7825F222F53EF434DE74A6C6FAF290E9 /* UMFileSystemInterface */; + targetProxy = E76A5D27D1544462D1C8B1704EE8F921 /* PBXContainerItemProxy */; }; - 1C234CCDB5422FF3F4C9D3554E34DBCE /* PBXTargetDependency */ = { + 17B0305E08C7EF9ED292AA9014450AF0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = 2543734D0A332B2588202904B99CC151 /* nanopb */; - targetProxy = E469A21C2CF113C7A6D4D2D852987CA0 /* PBXContainerItemProxy */; + name = UMCore; + target = 8601F7B19425496C5312C6F111D6E777 /* UMCore */; + targetProxy = 9A2D94180C1D8549B209C4F116F4FC88 /* PBXContainerItemProxy */; }; - 1C7BC65EE5D0AE985F3F9D390F082C25 /* PBXTargetDependency */ = { + 18A0E09FE601E01C0D44FC1CEB9A9F12 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMPermissionsInterface; - target = 037B3080D17C0918F3E81F3A1BC9210D /* UMPermissionsInterface */; - targetProxy = 70F37C141BA487162A565A5A71134D97 /* PBXContainerItemProxy */; + name = DoubleConversion; + target = 645DEAED47D48A55A088EE2AD4BCABE9 /* DoubleConversion */; + targetProxy = 3CC2EA99A4F73187F7A2CD42265AD7C9 /* PBXContainerItemProxy */; + }; + 19AA25202B27FF167160BD2A388CE47F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseAnalytics; + target = 1ABBF6F89787BBEDF49B4636ADB45587 /* FirebaseAnalytics */; + targetProxy = 1B9BF1B8F9C147012693EF927B3B0E51 /* PBXContainerItemProxy */; }; 1D189DA7DFB1A6568E971F9A6DAA9E87 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -7070,40 +7144,53 @@ target = 1ABBF6F89787BBEDF49B4636ADB45587 /* FirebaseAnalytics */; targetProxy = 87D02EAE1DD3CC8AB9B8D646D27548A4 /* PBXContainerItemProxy */; }; - 22441E5AFBE737F69854BEFE69E9F1B0 /* PBXTargetDependency */ = { + 1E2182E9F32939A4458F3958862905DA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXWebBrowser; + target = B11E238094137347E8790BFEB1BEF01F /* EXWebBrowser */; + targetProxy = 56E95E3FD845D40A99233E17264BB639 /* PBXContainerItemProxy */; + }; + 20C340E1F4898EE319A9436052101F74 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCameraInterface; + target = B156F9573C6B7A72D1C3C5709747221C /* UMCameraInterface */; + targetProxy = 4E37B50731B7724A3FC80410BD40183C /* PBXContainerItemProxy */; + }; + 246388D36557A45AD4DB44E3C2095D57 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleAppMeasurement; + target = AB021401ADE9E1431240BBA948E7965E /* GoogleAppMeasurement */; + targetProxy = E2055CC2B88E87B603ABD643A5A0EE34 /* PBXContainerItemProxy */; + }; + 25FF94CB1F0E40824E1E6AF9F1F0421A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; - target = 4412C5F689DD128EFB8F42F11C502D2C /* UMCore */; - targetProxy = E59574394782182AD725C4A25B1370F3 /* PBXContainerItemProxy */; + target = 8601F7B19425496C5312C6F111D6E777 /* UMCore */; + targetProxy = 113CDDB809E5888DDC4ACE47ACB7FEB3 /* PBXContainerItemProxy */; }; - 29BFA68A94528BB783E193ED3F0842F2 /* PBXTargetDependency */ = { + 2639622FB68DE70FE118EF73031934F4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - targetProxy = ECCEB532AC3BCAF3E1573A5E386E8BF7 /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 368FB7FBA34E3323BB42D13325551C95 /* FirebaseCore */; + targetProxy = 8300B759B2E7D1F8B7736FC29A18EAE0 /* PBXContainerItemProxy */; }; - 2BA3E49328FDC3B52B39551295C3E1D8 /* PBXTargetDependency */ = { + 26514345C480A4C45F1045D773CE3CBE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseInstanceID; - target = 586739D116442BA7FCD2EC0353EA0FA4 /* FirebaseInstanceID */; - targetProxy = 7F55C75B226FA5A0CE638E136BB35F41 /* PBXContainerItemProxy */; + name = glog; + target = 1DBC3090C8BE77C9F4202B0421E0791E /* glog */; + targetProxy = 213564F23047B277074FF21BECE2730B /* PBXContainerItemProxy */; }; - 2BC984BC36863E62B33E87DF6A126313 /* PBXTargetDependency */ = { + 2B6D46BA6664E46AA5AA9EDE85098F43 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = yoga; - target = 6455E5F0AEB4F4285748480B46DC377C /* yoga */; - targetProxy = FA1A66EE89873439B1D7CC9DC890B4B1 /* PBXContainerItemProxy */; + name = RNImageCropPicker; + target = F2D20B3CB8DD39B7858E3096028AC179 /* RNImageCropPicker */; + targetProxy = 567A8345DC87D2650C1A79F14794C8CA /* PBXContainerItemProxy */; }; - 2FA54EC112515E4A3EF63E83EBC8D733 /* PBXTargetDependency */ = { + 328EE814352F8DAE3FF4A8F230AEE923 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCore; - target = 4412C5F689DD128EFB8F42F11C502D2C /* UMCore */; - targetProxy = A7C477F16F437F0AFFBF067E258EB1E4 /* PBXContainerItemProxy */; - }; - 317A96EE3FD986E107ADEAB02A26A1F5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleUtilities; - target = 7969F0F17682790DCAF63BC9AF2176ED /* GoogleUtilities */; - targetProxy = E8DDD4F417001348FF098308525FEE57 /* PBXContainerItemProxy */; + name = UMTaskManagerInterface; + target = F3EB3F69725213A107EBE1D88295232A /* UMTaskManagerInterface */; + targetProxy = 0B2E72E20276FC80580AA56FAF0BA77B /* PBXContainerItemProxy */; }; 346905C1D5815D2D235745231BC39BD4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -7111,6 +7198,12 @@ target = 39E0403E3ACE39BC0D878D82FAB8F012 /* FirebaseABTesting */; targetProxy = 1CE3E751E533C71A2F0C6903F97BFDE8 /* PBXContainerItemProxy */; }; + 36859321026A23613BCE50BDF238BA26 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMConstantsInterface; + target = 458293E00EF1C1F42778F9425AD34AA4 /* UMConstantsInterface */; + targetProxy = C39FA1A05C15128E7A3AF24CA741160B /* PBXContainerItemProxy */; + }; 36CD4D8E0E797C66E5A80685E8F52205 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; @@ -7123,29 +7216,23 @@ target = 368FB7FBA34E3323BB42D13325551C95 /* FirebaseCore */; targetProxy = A07A8F019F42721442DA50F68DCECAFB /* PBXContainerItemProxy */; }; - 3E56B5BEA3C0A0A4A52D8A2EDD469759 /* PBXTargetDependency */ = { + 3A2C3F6D3FEE8262ABF34D99DC584CE2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFileSystemInterface; - target = 031F6220C2D49E4AD5F61FAA0ECADF64 /* UMFileSystemInterface */; - targetProxy = 4D868DD673E0BCD75FCE3AD3B286CA4F /* PBXContainerItemProxy */; + name = "boost-for-react-native"; + target = 66641B93FAF80FF325B2D7B4AD85056F /* boost-for-react-native */; + targetProxy = 44B48B8CA28D6CEC0710ADE50E252D75 /* PBXContainerItemProxy */; }; - 3EA30E9B1EFEC6D4CB5EA7210467BA7C /* PBXTargetDependency */ = { + 3B0702A0F1D9062D9255C7B8A4096F5C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebasePerformance; - target = 42F7AF66FD1178857DC3A2834552BE76 /* FirebasePerformance */; - targetProxy = 3EF3099424B92A38F0899F98F3245F25 /* PBXContainerItemProxy */; + name = UMFontInterface; + target = 4A819E0AAACF1DCA78FD8E5552709919 /* UMFontInterface */; + targetProxy = 3F00A598AB51FED3654C0513FCB803C9 /* PBXContainerItemProxy */; }; - 3F98239F9A383F5DE4E4B093CC099DAB /* PBXTargetDependency */ = { + 3BD244AF2DD3EC6649F7D3B9975EDC39 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-splash-screen"; - target = 881C2DC83B2ECCAC7A7E6FCA96BD90E0 /* react-native-splash-screen */; - targetProxy = 89F005F5263DF6BCF03E37261C37407C /* PBXContainerItemProxy */; - }; - 3FA5D6C46C9EC6A4977F4A14D126360A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GTMSessionFetcher; - target = E3A3FB14CD4ACD21565913CF4A4B097C /* GTMSessionFetcher */; - targetProxy = A31C90B793DC54F7498BBB02C66D7E01 /* PBXContainerItemProxy */; + name = RNScreens; + target = D3ECEDE5AEF3D2A7F3F908BD369DA39E /* RNScreens */; + targetProxy = D9CDD3B8EEAFECB316E02CD50C63ACD8 /* PBXContainerItemProxy */; }; 3FD0607DDBDC01E6CFDA9FFAD045CA25 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -7153,59 +7240,82 @@ target = F1DE11E9221F196A8A9D3464F96A345A /* Protobuf */; targetProxy = 5A9363F4FD6B77942B665046B14395CF /* PBXContainerItemProxy */; }; - 4082BB581BC5B1E39CC1CF87D62EB1D7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleIDFASupport; - target = 7C36E7C600F8DE2BE1819059C80F2182 /* GoogleIDFASupport */; - targetProxy = F68C3819E57B4BC4C6135C2525ECDF0E /* PBXContainerItemProxy */; - }; 40AE6B53F16D28021F4E6732F3A44930 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleToolboxForMac; target = 32F8EA730FE2005197F54338D2C236AC /* GoogleToolboxForMac */; targetProxy = EEBBFE74636D6BC7E8D380B4DBDBC621 /* PBXContainerItemProxy */; }; - 4199BD8F97B22003519F6133943247A6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = AB021401ADE9E1431240BBA948E7965E /* GoogleAppMeasurement */; - targetProxy = C69A91DAB8540F6F7D371520A350699E /* PBXContainerItemProxy */; - }; 41E729F98A51CA2192BC60C83870A12D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseInstanceID; target = 586739D116442BA7FCD2EC0353EA0FA4 /* FirebaseInstanceID */; targetProxy = 9D25F24407F3DB7F8037248B4DA8103D /* PBXContainerItemProxy */; }; + 4259EEB961E963BCB6CD3FC1374599C1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMBarCodeScannerInterface; + target = BB9572F1566792491630510569E89516 /* UMBarCodeScannerInterface */; + targetProxy = A1980C07845B724BBD41A0EE9C1EF489 /* PBXContainerItemProxy */; + }; 437B0F97998657B6786A27AF6A5D1A59 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 7969F0F17682790DCAF63BC9AF2176ED /* GoogleUtilities */; targetProxy = 94ACBB797039D918B9290B94A50A3F36 /* PBXContainerItemProxy */; }; - 44F39E10EFDD78ABB6AD310371B7CD8D /* PBXTargetDependency */ = { + 43D45C9CD2E1F0078CB181CFC6D6698F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMSensorsInterface; - target = BF2CBBCE075E16438BFE38CBBD612F23 /* UMSensorsInterface */; - targetProxy = 22F4CAA83B233935D422CA5782F6FB17 /* PBXContainerItemProxy */; + name = UMImageLoaderInterface; + target = 2CC3173E2B9D15AACE1F8C582CA6C3B4 /* UMImageLoaderInterface */; + targetProxy = 1670F691872980ABBB9F079FEC6DCB97 /* PBXContainerItemProxy */; }; - 486B249E34E6B81C1AB736B74FCADA6E /* PBXTargetDependency */ = { + 45EA292DDD2F685596B9F0B744BD8BBC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNDeviceInfo; - target = A04548DE5D4EE46EEBE9E0084D8824ED /* RNDeviceInfo */; - targetProxy = 6F9BE71B894922931F17E1ED5BB75DD9 /* PBXContainerItemProxy */; + name = React; + targetProxy = 7BBCE7040266410CCCECE95B882ACD92 /* PBXContainerItemProxy */; }; - 487776F86C3A8C749FA412109469A50D /* PBXTargetDependency */ = { + 48EC97F50E00C72069E5AD0E453EDB70 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-webview"; - target = D8201C4F7E620F6188453B5CB18BAE02 /* react-native-webview */; - targetProxy = C00A62280EBE04812CBD6BCCF77AF0FF /* PBXContainerItemProxy */; + name = yoga; + target = 450F57633BF9EC17F9CFB0C9C32D6131 /* yoga */; + targetProxy = 08D94728A1D6FAA49D8C73519DE814D9 /* PBXContainerItemProxy */; }; - 48D513685CD12B9575580540D8A881BB /* PBXTargetDependency */ = { + 49563F3FF513421913DE21FD0767DCB7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNScreens; - target = 0FD5D3D2ED844A8EA4DB114C303CC931 /* RNScreens */; - targetProxy = 8B90F21011966C246B45196138040795 /* PBXContainerItemProxy */; + name = EXHaptics; + target = 5B1BA8B3E53682DD179F7BFF8F2C8B75 /* EXHaptics */; + targetProxy = 063BDC8296F9797E62229537E67234B4 /* PBXContainerItemProxy */; + }; + 4D0C07B72EA7CF0A7B89FEA4DFA79B61 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "QBImagePickerController-QBImagePicker"; + target = B117AF3693E56035F30D5DD8D0697ACB /* QBImagePickerController-QBImagePicker */; + targetProxy = FC5634A0D0234E1B18902B8BDEA8FF26 /* PBXContainerItemProxy */; + }; + 4DADBBCD203AF0DFE54622FDFBA0506E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFaceDetectorInterface; + target = 59DC5D9A524CE398BCF64FEAD7E6FBF1 /* UMFaceDetectorInterface */; + targetProxy = F883129EAB77B8BD74CDF9FF3383E306 /* PBXContainerItemProxy */; + }; + 4F7FBAA168FB752BC980C4CB37D4732D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMFileSystemInterface; + target = 7825F222F53EF434DE74A6C6FAF290E9 /* UMFileSystemInterface */; + targetProxy = 013C8C712E31279FB89EBADB1C1A4BC4 /* PBXContainerItemProxy */; + }; + 53B78D00F2D87FB6CCE1A3542309BDE2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNLocalize; + target = 760A2E2784BD5913932E942039ED1B15 /* RNLocalize */; + targetProxy = F6B21FE2207370A8405BE3E9A0F2DDCA /* PBXContainerItemProxy */; + }; + 58B535B5374DE3105B5AA1A42079311E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseInstanceID; + target = 586739D116442BA7FCD2EC0353EA0FA4 /* FirebaseInstanceID */; + targetProxy = 801B28EE107A554ECEF028DD667CA260 /* PBXContainerItemProxy */; }; 59054A7FA3AB60507B8236E0964559D0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -7213,28 +7323,47 @@ target = 586739D116442BA7FCD2EC0353EA0FA4 /* FirebaseInstanceID */; targetProxy = 30E4AFE91AFE993916F5FF5C06DD35DD /* PBXContainerItemProxy */; }; + 5954908472D1FFE09A30DBA1EBF8A0C5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseABTesting; + target = 39E0403E3ACE39BC0D878D82FAB8F012 /* FirebaseABTesting */; + targetProxy = 962CFA107358EEB763F2A53B7E7F2790 /* PBXContainerItemProxy */; + }; + 59797691182C5BB2670B5B46BC16134B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-orientation-locker"; + target = 356F0A9EBA4275589E1E12E721EE1B29 /* react-native-orientation-locker */; + targetProxy = BED3B36639DFBC11B4D5C219DC8719A3 /* PBXContainerItemProxy */; + }; + 5F3518D836F3905EBFCBE88425EE90B6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "boost-for-react-native"; + target = 66641B93FAF80FF325B2D7B4AD85056F /* boost-for-react-native */; + targetProxy = F90AB3538C448A960F8448CF412AB769 /* PBXContainerItemProxy */; + }; 5FDFBD6CCE0D066C9CAC81B3BB271825 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 7969F0F17682790DCAF63BC9AF2176ED /* GoogleUtilities */; targetProxy = 75709DA4236EE310812BED9AE5852B6C /* PBXContainerItemProxy */; }; + 623ADCF6F86505220C45031D07FE385C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Firebase; + target = 97C8CD7E4179727E4F374CABD338D2BB /* Firebase */; + targetProxy = 4F8C1592E6A887AF3CFEAC6A6B3354CA /* PBXContainerItemProxy */; + }; 62609725AFE0040B619D312D29D0BB45 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; target = 368FB7FBA34E3323BB42D13325551C95 /* FirebaseCore */; targetProxy = CDF9E4862D1A69A546518D09BF29A96E /* PBXContainerItemProxy */; }; - 62A30B12D91A41F63B4839B8B3C18999 /* PBXTargetDependency */ = { + 63BA0B983E1A78220C8E01F6D254AB83 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCore; - target = 4412C5F689DD128EFB8F42F11C502D2C /* UMCore */; - targetProxy = A2559BAF828E71ABE9647D86306F3D05 /* PBXContainerItemProxy */; - }; - 635F4ADA62D4DC2C0200CCD5F0311885 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - targetProxy = 6B3862F99C7ACE211401890B55078073 /* PBXContainerItemProxy */; + name = RSKImageCropper; + target = FFD3AAA592A9BEDAE8106315C575E645 /* RSKImageCropper */; + targetProxy = D9F88654FCFE360E5A8823DEFA608192 /* PBXContainerItemProxy */; }; 67D8E107060139EAB29430B4C73FE111 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -7242,11 +7371,11 @@ target = 42F7AF66FD1178857DC3A2834552BE76 /* FirebasePerformance */; targetProxy = CD235DDD6ED40AF6628D34E57EB6B2EE /* PBXContainerItemProxy */; }; - 685C202F8909ED308503DB9EA0E32F88 /* PBXTargetDependency */ = { + 6A2D47B9867430DD1111137E3927860E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-orientation-locker"; - target = 416F9FBE7FA448C0BD8AA749A5FBF805 /* react-native-orientation-locker */; - targetProxy = C14B83C0CFF34BC7981BE501C7E2CA90 /* PBXContainerItemProxy */; + name = QBImagePickerController; + target = DBEFD425284835C527D3A428E908D639 /* QBImagePickerController */; + targetProxy = D32E3C4A493D7CD25B23174015FCC206 /* PBXContainerItemProxy */; }; 6B65871E9787D7423E4371A9FD5F46AB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -7260,47 +7389,23 @@ target = 1ABBF6F89787BBEDF49B4636ADB45587 /* FirebaseAnalytics */; targetProxy = C7B780F3B34321F634A645A383811CDE /* PBXContainerItemProxy */; }; + 6FFD4DED2A886E08E8B4EA85C0C465AC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCore; + target = 8601F7B19425496C5312C6F111D6E777 /* UMCore */; + targetProxy = 0529226B376F57408762F4C7700CD1FC /* PBXContainerItemProxy */; + }; 719CF049AEB9960AE8779693E1EFE7E9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 7969F0F17682790DCAF63BC9AF2176ED /* GoogleUtilities */; targetProxy = B05FDE7687B62296694D0BBA9546545E /* PBXContainerItemProxy */; }; - 7634EF4A20DE06B5F05CB5D99D6E16FC /* PBXTargetDependency */ = { + 80FB72C0565F83E366FE2096A19BBBD6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = QBImagePickerController; - target = 29C34A1CC983103B3A70F1BD1BAA9E03 /* QBImagePickerController */; - targetProxy = 199A6EFBF50D8F4E09FE5371F95B7C17 /* PBXContainerItemProxy */; - }; - 76B8C36A4851D372456F00A4D98D8E62 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMBarCodeScannerInterface; - target = 697F1B537EEB4F371E0205934B9E8BEE /* UMBarCodeScannerInterface */; - targetProxy = A3FEC986066914E954E21083FE82A744 /* PBXContainerItemProxy */; - }; - 77CB95F8B357BCFC76D59F0ADDC1850C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = glog; - target = 29FC2A0EC130F2F2AF7AC9AE94A583B4 /* glog */; - targetProxy = 81206EBDBEB914B6DBF14D398057F095 /* PBXContainerItemProxy */; - }; - 7AC079CB2609784986DAAD8FD864282F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNImageCropPicker; - target = 997956AE0169931CBC995BF26AB12BFB /* RNImageCropPicker */; - targetProxy = BD198A1073B0B954C572377ECD025D47 /* PBXContainerItemProxy */; - }; - 7F1A3383BD3B90140B2C55DB1DB649C1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMFileSystemInterface; - target = 031F6220C2D49E4AD5F61FAA0ECADF64 /* UMFileSystemInterface */; - targetProxy = D33B853FC032F1D934E9F6874BFEC377 /* PBXContainerItemProxy */; - }; - 802B34897065759937C2F3DB6EA1AB0C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXConstants; - target = 2F8CF410B0326B6DEB5A2CDA4E2A2D8B /* EXConstants */; - targetProxy = DA9D58FE7EB658CD3FDD0285186A578F /* PBXContainerItemProxy */; + name = UMCore; + target = 8601F7B19425496C5312C6F111D6E777 /* UMCore */; + targetProxy = 296DE338366169E50A402BED07B84AB1 /* PBXContainerItemProxy */; }; 815248D0F2DBD89170D5E591539DF287 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -7308,17 +7413,23 @@ target = F1DE11E9221F196A8A9D3464F96A345A /* Protobuf */; targetProxy = 8133F53ED6CDC355BB2264E4DBA0BF96 /* PBXContainerItemProxy */; }; - 847E3922481FE2B36FC4848640B9E1D2 /* PBXTargetDependency */ = { + 84A0A8EEFD6BE3D7A3E2B15A89552047 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "QBImagePickerController-QBImagePicker"; - target = 91F7E9145255DAC901E58E2F91F5411A /* QBImagePickerController-QBImagePicker */; - targetProxy = 7350396FBBE2F3A486D095F87BF15571 /* PBXContainerItemProxy */; + name = EXFileSystem; + target = FD0F4E74C14C4B5B552686BD9576466F /* EXFileSystem */; + targetProxy = FDF6FD30F848D20717F6E7F9EF940EBA /* PBXContainerItemProxy */; }; - 87CD5E86E9E73F49163565E12A7B721D /* PBXTargetDependency */ = { + 851B6692FF1A49DF12F823E739838A97 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseRemoteConfig; - target = 5AAD465FECAE9083F45E3DB9252A8302 /* FirebaseRemoteConfig */; - targetProxy = 6365971564990E8EDA376CAB39A62B3D /* PBXContainerItemProxy */; + name = "react-native-webview"; + target = F6361AE11A0D2F5CE16E188973F7335C /* react-native-webview */; + targetProxy = FC0AA1E3F5B445560B3E7B3FF818D6EE /* PBXContainerItemProxy */; + }; + 85B5CE3917A5C64FD070BB6D2AB55088 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Crashlytics; + target = ABA9A411BB5A359862E5F1AA6238278E /* Crashlytics */; + targetProxy = 585F7E7754C68AD634194C48338F4EF6 /* PBXContainerItemProxy */; }; 8882760E90572404776E5D760A37F4EF /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -7326,29 +7437,17 @@ target = 2543734D0A332B2588202904B99CC151 /* nanopb */; targetProxy = 33B78007BAC95CB937CF2DFE82E76C79 /* PBXContainerItemProxy */; }; - 88F4CBC37EDC22A18C73D6723A7C8552 /* PBXTargetDependency */ = { + 8C415D2ADF7DCE687E2890A8663D01F1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCore; - target = 4412C5F689DD128EFB8F42F11C502D2C /* UMCore */; - targetProxy = F694606F8A3B5D15625E633C00EB1AC8 /* PBXContainerItemProxy */; + name = QBImagePickerController; + target = DBEFD425284835C527D3A428E908D639 /* QBImagePickerController */; + targetProxy = B1A6A96706F1A901A4BFAB66986F33E9 /* PBXContainerItemProxy */; }; - 8C00E3FF0B5CEFE1A868AC9062D115FF /* PBXTargetDependency */ = { + 8F3D86F2E5ECD857AA3DCB9BB4123F39 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = glog; - target = 29FC2A0EC130F2F2AF7AC9AE94A583B4 /* glog */; - targetProxy = AADD210D1F940E270E559A5AE73B7D04 /* PBXContainerItemProxy */; - }; - 8C4A88E0340D21A5A7E3F039C043D32F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXAppLoaderProvider; - target = F42432668A0F81BE898F1FEA0D6A83B7 /* EXAppLoaderProvider */; - targetProxy = E4D408387C26D2B4493B5B8F6F81CEBF /* PBXContainerItemProxy */; - }; - 902BB8686A0FE9AA3973C9B0A3563691 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMConstantsInterface; - target = D6CDBA4F567B018F442382D2520D6D27 /* UMConstantsInterface */; - targetProxy = A57FA5C40A1BE5F5C481358F3D88E137 /* PBXContainerItemProxy */; + name = DoubleConversion; + target = 645DEAED47D48A55A088EE2AD4BCABE9 /* DoubleConversion */; + targetProxy = DF3D6AB5B84768A5B3A5D1CDA0FD471C /* PBXContainerItemProxy */; }; 904DE3584EB00D12608E1233E5B029A8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -7356,33 +7455,34 @@ target = 7969F0F17682790DCAF63BC9AF2176ED /* GoogleUtilities */; targetProxy = 5D4696B5DC0410EBB318096CDEA1B03B /* PBXContainerItemProxy */; }; + 913B35F5FC8529BD4B236F31A5568862 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleUtilities; + target = 7969F0F17682790DCAF63BC9AF2176ED /* GoogleUtilities */; + targetProxy = 0EC35428ED0CD782FDA99FFBC91F4E4F /* PBXContainerItemProxy */; + }; 92C3989E553E6EC006EA46423878085E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 7969F0F17682790DCAF63BC9AF2176ED /* GoogleUtilities */; targetProxy = 94E9A5D5D73EADA398147912908A9311 /* PBXContainerItemProxy */; }; - 96065F25CDD223B089FA24634D6481B6 /* PBXTargetDependency */ = { + 96DA387B98978C2974700F14ACFDEBCE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMCore; + target = 8601F7B19425496C5312C6F111D6E777 /* UMCore */; + targetProxy = 8075D3C81C368FF63B92A7E7DC84BF6B /* PBXContainerItemProxy */; + }; + 96E61A77D08257DF826D6A0FC144EFCB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = nanopb; + target = 2543734D0A332B2588202904B99CC151 /* nanopb */; + targetProxy = 7082DA585E1184F5080B08E9BFDFC449 /* PBXContainerItemProxy */; + }; + A4C2F635C0611722067292FDE443CCC9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; - targetProxy = C0A10FF48555AD6AB3C20BFCE1E571CA /* PBXContainerItemProxy */; - }; - 9762CD21B523FDFA5D1FE97C4F7EA719 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXPermissions; - target = 5ED05858D3E3C1599A062FB1C45FE359 /* EXPermissions */; - targetProxy = 64F68F9CE66CAC583425C094ED81B340 /* PBXContainerItemProxy */; - }; - 9D6A3DEEB83F59139CB29057F2F1BE2D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXHaptics; - target = 45018F5317EE8A727FB05D4B61A678A6 /* EXHaptics */; - targetProxy = 763AA33ED2FF249970A6A21C4DA5B42E /* PBXContainerItemProxy */; - }; - 9E5EDF6B01F5234998F739B4FF6C8AAB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - targetProxy = F6D1E43D5BC8CB7BCD7ABE3BC5EFDE7D /* PBXContainerItemProxy */; + targetProxy = AC564AE711416B20D16965F36E1F0446 /* PBXContainerItemProxy */; }; A5544C8F397EAF94A9618C8BDFE832B7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -7396,41 +7496,73 @@ target = 368FB7FBA34E3323BB42D13325551C95 /* FirebaseCore */; targetProxy = 05F88362B58CA661718541D4C8D84A46 /* PBXContainerItemProxy */; }; - ABFFA13BF84A8D025DA23F3941169263 /* PBXTargetDependency */ = { + AA8332B17559FD252AD6DE2D071BDD5C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RSKImageCropper; - target = 9A0D985B32E9B17E43CE4137E46B85E1 /* RSKImageCropper */; - targetProxy = 353B523A27C44C0F3DCD364F1C8DDF5F /* PBXContainerItemProxy */; + name = glog; + target = 1DBC3090C8BE77C9F4202B0421E0791E /* glog */; + targetProxy = F95CFD90BFD5A62BD38ADC4EFD3B7524 /* PBXContainerItemProxy */; }; - B2AE4569D439DA80309B909FAD97ADAB /* PBXTargetDependency */ = { + AC3EEF494BF2940FDFABFEC8A0BA8E83 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCore; - target = 4412C5F689DD128EFB8F42F11C502D2C /* UMCore */; - targetProxy = 849F7C63ED0D3AE84AB50162690E2D85 /* PBXContainerItemProxy */; + name = React; + targetProxy = A87946F6187D9863D91BC3142123A6CE /* PBXContainerItemProxy */; }; - B411263AA5A462DD8F804983F894A0B3 /* PBXTargetDependency */ = { + ADC2C2730047B9E335A88AC55CF0CDC5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFaceDetectorInterface; - target = 9594E8EA6B999DFB255E43422B537B4A /* UMFaceDetectorInterface */; - targetProxy = 702234DDC5114A9FA5855E6F345BB00D /* PBXContainerItemProxy */; + name = FirebasePerformance; + target = 42F7AF66FD1178857DC3A2834552BE76 /* FirebasePerformance */; + targetProxy = 17D9D946E12B9034896B6A810C92001D /* PBXContainerItemProxy */; }; - B744BC0E3C3D1F828188666F9F6A16A8 /* PBXTargetDependency */ = { + AE888898772A36684C44F97000D1931C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXFileSystem; - target = 8F9FB30742F24E06348CA6BB7BE816B4 /* EXFileSystem */; - targetProxy = 565E92363B023507398D70460EF219F0 /* PBXContainerItemProxy */; + name = React; + targetProxy = 60AB7F72F80337EA4C8EDBDD059ED3D5 /* PBXContainerItemProxy */; }; - BD2C22AF6121E6B72DFB98F8BBAB9A69 /* PBXTargetDependency */ = { + B12997E3D5BE4F39EC03469A5CD99829 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = 66641B93FAF80FF325B2D7B4AD85056F /* boost-for-react-native */; - targetProxy = EB266CA52E321F1A5BD9E62115470A38 /* PBXContainerItemProxy */; + name = UMPermissionsInterface; + target = 76CC3A2D036B8B64B5F70A7078274100 /* UMPermissionsInterface */; + targetProxy = 17299B3B10FACA862736181ECC44D9A8 /* PBXContainerItemProxy */; }; - BE4755A9C728F48D074E007C94976915 /* PBXTargetDependency */ = { + B75C99187A38E182E0023E765D886980 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Crashlytics; - target = ABA9A411BB5A359862E5F1AA6238278E /* Crashlytics */; - targetProxy = EBF3DAADC0802D9DC79FC4F5512175C0 /* PBXContainerItemProxy */; + name = EXAppLoaderProvider; + target = 4ECE1108F140208A729A83BC94FAA150 /* EXAppLoaderProvider */; + targetProxy = A881D7072D18B63C9134962BB6777A88 /* PBXContainerItemProxy */; + }; + B983257BB8B915D81078307930132C0E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMPermissionsInterface; + target = 76CC3A2D036B8B64B5F70A7078274100 /* UMPermissionsInterface */; + targetProxy = AE6DEF688A897EB24A522849B2C3F3AD /* PBXContainerItemProxy */; + }; + BC7BB501F6741562A582B2E3DEB75054 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXConstants; + target = A486E5AB43C3327005F1C0B986A448C0 /* EXConstants */; + targetProxy = 426A67A7E660ADB769E8E3DB0C96E853 /* PBXContainerItemProxy */; + }; + BD67BB1ECFA8913E04E8C81218C578A1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + targetProxy = BBEC0AEFA1FC1DA50557AAF25EF0353F /* PBXContainerItemProxy */; + }; + BE70AB1116776A9F90A3C783B9F1769B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = UMConstantsInterface; + target = 458293E00EF1C1F42778F9425AD34AA4 /* UMConstantsInterface */; + targetProxy = 3CE12525FC73E81B8DC468274B077D13 /* PBXContainerItemProxy */; + }; + C0656619977637E56F35BBEB2179E8E9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + targetProxy = A2A1387AB8C9C9983BEAE53C034979F4 /* PBXContainerItemProxy */; + }; + C09D8A4947F7F3D4A24CD211602D4607 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseRemoteConfig; + target = 5AAD465FECAE9083F45E3DB9252A8302 /* FirebaseRemoteConfig */; + targetProxy = DBD75A896E5CB8A600AE1C42EC0373BE /* PBXContainerItemProxy */; }; C1B980A7F0177B327C6A07EFF5A60013 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -7438,23 +7570,17 @@ target = E3A3FB14CD4ACD21565913CF4A4B097C /* GTMSessionFetcher */; targetProxy = A560693278F98FFD671DF28C1A701DFB /* PBXContainerItemProxy */; }; - C25F85FA06E3C792E2A67E60B8101074 /* PBXTargetDependency */ = { + C47A2648EF7B2247F26523FA032FB7B0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Fabric; - target = D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */; - targetProxy = 05813EE48F3DF69D2C18C3A631D3E4F4 /* PBXContainerItemProxy */; + name = GTMSessionFetcher; + target = E3A3FB14CD4ACD21565913CF4A4B097C /* GTMSessionFetcher */; + targetProxy = CCE531097C6D17DF3D0D2A182CB03126 /* PBXContainerItemProxy */; }; - C662C7E25D35023474E9AAE1D9BC1D47 /* PBXTargetDependency */ = { + C685EEFD7FF4D4C3F16AD088F18AD053 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = DoubleConversion; - target = 1414ADEE4A421F3C5F9A229345CE3F61 /* DoubleConversion */; - targetProxy = 3E9163E1BC1D0472D726FF49054E8FDB /* PBXContainerItemProxy */; - }; - C83FC2C3E8CEC32DD8932E44896D7CFB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DoubleConversion; - target = 1414ADEE4A421F3C5F9A229345CE3F61 /* DoubleConversion */; - targetProxy = CEE3627BDFC98BF4E34AB2269676FAFF /* PBXContainerItemProxy */; + name = UMCore; + target = 8601F7B19425496C5312C6F111D6E777 /* UMCore */; + targetProxy = FE8C7693079779C66A2B166BAD56A51E /* PBXContainerItemProxy */; }; C9CEFEFAAAEDB8CD947737FA56C849D4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -7462,39 +7588,39 @@ target = D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */; targetProxy = D465047540D12FD9D95291AE82A76DB9 /* PBXContainerItemProxy */; }; - D1F18A32147055E0E624D32DB1032503 /* PBXTargetDependency */ = { + CC6D3C87E33351449B92B18007E16864 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 368FB7FBA34E3323BB42D13325551C95 /* FirebaseCore */; - targetProxy = A14DE74DE6868C4F5AA92198DA5A337E /* PBXContainerItemProxy */; + name = "react-native-splash-screen"; + target = 84717068AE991A783F22DE0DE87C4E14 /* react-native-splash-screen */; + targetProxy = 1094A16C7DF70F7A0E91B408FC0E65FB /* PBXContainerItemProxy */; }; - D2D7FEAD03DD6AB886C4EB513A04DC31 /* PBXTargetDependency */ = { + CDFE11A74794D9A30BAC2B94462ADEB0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleToolboxForMac; + target = 32F8EA730FE2005197F54338D2C236AC /* GoogleToolboxForMac */; + targetProxy = 482107E1381A3688E3BE0A020A709578 /* PBXContainerItemProxy */; + }; + D553A5815C1C1C9153500B14751E4FC5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Fabric; + target = D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */; + targetProxy = 964BA5329F344ABF3A54C073BC55FD4E /* PBXContainerItemProxy */; + }; + D72F0F50FE628E83E287FAC1E4223812 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; - targetProxy = 409FFB4E6100C14FC1BE5C9A5F11548C /* PBXContainerItemProxy */; + targetProxy = F00692FA91E66B2E7BC8A8F31CE1E73E /* PBXContainerItemProxy */; }; - D44F1A7C3576E47D486A7D535ABCDC67 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXWebBrowser; - target = 240504C276270018DE05B3D0F038B1E5 /* EXWebBrowser */; - targetProxy = D52D58C1117288C15799272CAC91D89F /* PBXContainerItemProxy */; - }; - D53FF4C2C207954A64394F6E417404DA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Protobuf; - target = F1DE11E9221F196A8A9D3464F96A345A /* Protobuf */; - targetProxy = AA40A9A4FCBFDDE4137EC821FB028D4F /* PBXContainerItemProxy */; - }; - D6B9CD560D324303EE5D9A7B500B7BD1 /* PBXTargetDependency */ = { + DE49A96E610B5BB255FD59274B0F812A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; - targetProxy = E81A470893951F715C9B92580C40A13B /* PBXContainerItemProxy */; + targetProxy = 9891E5FAFC91F262695742286653BA16 /* PBXContainerItemProxy */; }; - DA4D40C8440AFAF10030DD5B9F5F8AA1 /* PBXTargetDependency */ = { + E06A04E2F71AC981151E530DAA599D5B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMConstantsInterface; - target = D6CDBA4F567B018F442382D2520D6D27 /* UMConstantsInterface */; - targetProxy = 622AB18ACD42A86A3C7823EDF35704AE /* PBXContainerItemProxy */; + name = UMSensorsInterface; + target = DE51FBD286F169F98270DF6BA53F5886 /* UMSensorsInterface */; + targetProxy = DA3F8B1A310E9F5CA91825B866E2C498 /* PBXContainerItemProxy */; }; E2FBD41025C0CD2C30325C28D5CB7AC6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -7502,23 +7628,22 @@ target = 586739D116442BA7FCD2EC0353EA0FA4 /* FirebaseInstanceID */; targetProxy = 48B8A5D360038B198CB9ABDEC205C1F7 /* PBXContainerItemProxy */; }; - F1FBC4674A04E297D85D220FE4F20798 /* PBXTargetDependency */ = { + E425F0085265F88334E42FF36D81DFCE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFontInterface; - target = 3B41CF884EED60EBD44EAEA9D3D255C6 /* UMFontInterface */; - targetProxy = 1A390B6156C04811B323ACD481538623 /* PBXContainerItemProxy */; + name = EXPermissions; + target = E07EA1A35FBB3A986F484EB01CDD5527 /* EXPermissions */; + targetProxy = 66ED3F97919D57628CAE13A0DB0BE09D /* PBXContainerItemProxy */; }; - F307793EABEDFC0E7D7BEA4C7399C60C /* PBXTargetDependency */ = { + E956C0E38C46412EAE7AD5D77AB47207 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFontInterface; - target = 3B41CF884EED60EBD44EAEA9D3D255C6 /* UMFontInterface */; - targetProxy = 694B72ED05E4ED893F653E276539BC3B /* PBXContainerItemProxy */; + name = React; + targetProxy = 288141C36782179FDDDCEA22B99FBD03 /* PBXContainerItemProxy */; }; - F3AEE9A90233BB78D6949D65345F5559 /* PBXTargetDependency */ = { + EECEC39CD1A9AF30CCFCB71B11A14B7D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMImageLoaderInterface; - target = BDEC894DA99DF9E9D232AD2BDBB2D87B /* UMImageLoaderInterface */; - targetProxy = ACF6FF10C363496189AA9466B3ED8E6F /* PBXContainerItemProxy */; + name = UMCore; + target = 8601F7B19425496C5312C6F111D6E777 /* UMCore */; + targetProxy = 5FDD7E408B08AF566972547CAF4A8B67 /* PBXContainerItemProxy */; }; F541B0BB5C228843BB87EB1868782C56 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -7526,61 +7651,27 @@ target = F1DE11E9221F196A8A9D3464F96A345A /* Protobuf */; targetProxy = 3D342107E8BB2E1AAA760A57543C5A06 /* PBXContainerItemProxy */; }; - F866BAD81A824FBD4E4348196578E148 /* PBXTargetDependency */ = { + F91E31A992D893469AB18E38B1FE561E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = 1ABBF6F89787BBEDF49B4636ADB45587 /* FirebaseAnalytics */; - targetProxy = 2E048718E5A6D999A5B83E5AE3F267F3 /* PBXContainerItemProxy */; + name = Folly; + target = 2204E533997A82F0D6F7AD16CE4C7106 /* Folly */; + targetProxy = E55F1220F4030126B669FA89EE6D88F6 /* PBXContainerItemProxy */; }; - F9A16B8DD1FD6159E2799D727812965D /* PBXTargetDependency */ = { + FC327DDDCB3897E55AE01A56392592C3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - targetProxy = 2B332EC32C96C917660B34DB90DC1240 /* PBXContainerItemProxy */; + name = Protobuf; + target = F1DE11E9221F196A8A9D3464F96A345A /* Protobuf */; + targetProxy = 10FB1316B8DBCC7ABDC2C90A0BBBBD52 /* PBXContainerItemProxy */; }; - FBF22B08572B8004330FD47E0D07AC6F /* PBXTargetDependency */ = { + FE529C0B98EBB2D8DF77992755008DF1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCore; - target = 4412C5F689DD128EFB8F42F11C502D2C /* UMCore */; - targetProxy = BE0D9CA338918985910CFAB12661D90F /* PBXContainerItemProxy */; - }; - FECD68D133AB4B5BA7D5269BB61F77C0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = QBImagePickerController; - target = 29C34A1CC983103B3A70F1BD1BAA9E03 /* QBImagePickerController */; - targetProxy = 00B62F80DB8E697BB1C7D4D3FDB01C54 /* PBXContainerItemProxy */; - }; - FF684D0FC6B49662CAC11992F333F7B4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMCore; - target = 4412C5F689DD128EFB8F42F11C502D2C /* UMCore */; - targetProxy = 5C18A82DEC1E4DFCD36BD4D17F0E9ED3 /* PBXContainerItemProxy */; + name = RSKImageCropper; + target = FFD3AAA592A9BEDAE8106315C575E645 /* RSKImageCropper */; + targetProxy = FF8FBA31C3040C6C369918DE9B7B2CC6 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ - 014A207A97F0C6A93126D955F5325EE1 /* Debug */ = { - 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"; - }; - name = Debug; - }; 056C009C442A698606C063320C8BF25A /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = A00EC29B08CF617E218E21BB30A22296 /* Fabric.xcconfig */; @@ -7618,6 +7709,29 @@ }; name = Debug; }; + 0B5052AB0CF3E91D959495D45C6892CD /* Debug */ = { + 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"; + }; + name = Debug; + }; 0C78739B7F25FB17EE1F9D802091DB12 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = A044E0132DBBFC186CC1967069B89DDA /* nanopb.xcconfig */; @@ -7643,30 +7757,6 @@ }; name = Release; }; - 112A03FB6B750F48CA8DCBBFE4D2F179 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = CB9074A3A03E2E7D8D1A3CBE5830643B /* 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; - }; 1133C2D1B98ADF1CCB50633D37616F74 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = AC7124E4822DB66558352E10DD54CBFA /* GTMSessionFetcher.xcconfig */; @@ -7690,9 +7780,9 @@ }; name = Debug; }; - 116DD04455E1E1BA8C8FC4FE5091E82C /* Release */ = { + 159D1ECF5A75638796F4270CBDFCCB42 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1A1DF9375FDDEFBAF5377E9ECE4D6AE3 /* UMFileSystemInterface.xcconfig */; + baseConfigurationReference = BB59CCF24B175ECD0EA022876FE3625F /* UMPermissionsInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -7705,9 +7795,9 @@ }; name = Release; }; - 1683C78918A599D91D38EBC27A6D524B /* Release */ = { + 160EB8A7CCCF2C639AE309C381FC9CE5 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 741061F41439E555E783203CC6D8D268 /* react-native-orientation-locker.xcconfig */; + baseConfigurationReference = 9340203F8EF3AD7842EBA19998B2FD5A /* react-native-orientation-locker.xcconfig */; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -7742,6 +7832,30 @@ }; name = Debug; }; + 18DA24ACBC60B6FE6782F76B97038E54 /* 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; + }; 196DFA3E4A09A28224918543529A1885 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { @@ -7806,70 +7920,6 @@ }; name = Debug; }; - 1BFBE814A593005302C2103CA511813D /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 5F0E06511BF3A0BF1C6458AF3110DC25 /* 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; - }; - 1C8606BF4E6EF908F5BAA29D6E73197A /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7329DD6A846858B4C6F81571A0503D6A /* 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; - }; - 1F9AF68D604B2492ED311C7AC7265430 /* 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; - }; 200CD2396E713A87F09DF2D0477FFC0C /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 53563E1385145D00720C7953AD9E0E74 /* Crashlytics.xcconfig */; @@ -7884,6 +7934,21 @@ }; name = Release; }; + 2019F5BC3932E6466A1D0E88ADAE5C5E /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E7E70D986059308E04198908D2E5C904 /* 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; + }; 23D5BEBA41EB0C45D1EE5EB2F36ECBE2 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 53563E1385145D00720C7953AD9E0E74 /* Crashlytics.xcconfig */; @@ -7942,9 +8007,9 @@ }; name = Debug; }; - 2DCDE7646E868C51C993ABE3A3862463 /* Release */ = { + 2B4B1350E578977D501EE3EE27F0DD20 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 48074068C07C1FF030CC39F393077646 /* yoga.xcconfig */; + baseConfigurationReference = 2E657EB8A5923EF09912E167F0F21ACF /* yoga.xcconfig */; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -7962,6 +8027,44 @@ SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 2D5127D08DB362B955ACBA3DFA0CB89A /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 433E42EEAC5EEE7650F1081AA78BD759 /* 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; + }; + 2D7D1FFE38BFC13E1F730AB2C5393EB7 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 97C6B5A9CAB3A8AF7998D35A0DD44304 /* 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; @@ -7980,16 +8083,98 @@ }; name = Release; }; - 34C1D92263DF55B2160BE7791C821392 /* Debug */ = { + 3066BCECBA7908E897F9E1738FEDD5AC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E64DE1DD89A7942683A36A1A8A372F72 /* UMSensorsInterface.xcconfig */; + baseConfigurationReference = 2F5746B355F03B27D0CD72B9771C688A /* UMCore.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/UMCore/UMCore-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + 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; + }; + 30FAA0CE493A4C291A9F66B23635E8F1 /* 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; + }; + 337079FC0FB13C8C1A58CD13D46435CC /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = AF1A496EDBFEDF9532628CE2B7BBB84E /* 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; + }; + 340BE1DD7D67046CC8702B9E4D8779BA /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = A7D69B23843A520CE859D3F1E5CCA891 /* 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; @@ -8018,21 +8203,21 @@ }; name = Release; }; - 3820A434EC38AA82A04E7EB75D27B402 /* Debug */ = { + 3A1EADAE0078C484F932558933950A90 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 931E1E88664BF29C0559B61CDF1BD5BA /* RSKImageCropper.xcconfig */; + baseConfigurationReference = 9340203F8EF3AD7842EBA19998B2FD5A /* 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/RSKImageCropper/RSKImageCropper-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; + 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 = RSKImageCropper; - PRODUCT_NAME = RSKImageCropper; + PRODUCT_MODULE_NAME = react_native_orientation_locker; + PRODUCT_NAME = "react-native-orientation-locker"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -8041,29 +8226,43 @@ }; name = Debug; }; - 3F9893011771ABBFEAFD81AF1EA5926F /* Release */ = { + 3B39C597CA036B3549F3FD950E2A75B8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6D4F1380084C5CF876DBC28B169C3B82 /* Folly.xcconfig */; + baseConfigurationReference = D3519DE89E7F19767A213677FEDFE521 /* 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; + }; + 3FE8936EE6A5D64C9F64DF00F56630C1 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = AE09BA641F8ED1137702F7F40B0C0599 /* 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/Folly/Folly-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 = folly; - PRODUCT_NAME = Folly; + 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; }; 408ADA4444D509BB1E3B7F87631D11C7 /* Release */ = { isa = XCBuildConfiguration; @@ -8102,53 +8301,6 @@ }; 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 */; @@ -8163,57 +8315,9 @@ }; name = Release; }; - 458DFB50B9C7BFD244D3DF62123992B5 /* Release */ = { + 45766AF4428B503FB2B8DEDA9B7AE19B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D18AB02E7921511273F4D30052D6EC4F /* 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; - }; - 4732C71954AD9AEDA0D83DE8CEE54D87 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = CB9074A3A03E2E7D8D1A3CBE5830643B /* 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; - }; - 4A8804DCACD355A73487EC0BC64A88CC /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 89FC01CE5595DBF9AB70F52ED6801451 /* UMConstantsInterface.xcconfig */; + baseConfigurationReference = B9DE0B233D160C30C9101E44C119C4AE /* UMConstantsInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -8226,47 +8330,32 @@ }; name = Release; }; - 4AFA12937904545E2681F5E9F101AE6A /* Debug */ = { + 4A60017BA51C50FE36377B55A8878C2B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B4B4B3F0C4EE2ED166BBCCF7E8C9C8BF /* RNDeviceInfo.xcconfig */; + 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*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNDeviceInfo/RNDeviceInfo-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + MACH_O_TYPE = staticlib; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNDeviceInfo; - PRODUCT_NAME = RNDeviceInfo; - PUBLIC_HEADERS_FOLDER_PATH = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 4B2BB05B538EB6FE5878292C8F3FA203 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 298CF0BB5A9BCEA1C7031D9A6BFB3BB0 /* 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 */ = { + 4E66B4863041AA7093D966F0F916BCC2 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1A1DF9375FDDEFBAF5377E9ECE4D6AE3 /* UMFileSystemInterface.xcconfig */; + baseConfigurationReference = 6BC8032F7258B87CB29A1412F8AF94CD /* UMSensorsInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -8315,46 +8404,21 @@ }; name = Debug; }; - 53F2B808EC92835F341EF359A50522DE /* Release */ = { + 553DD7C6DBD09A39AC16BE45B0CBAA08 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DAD8F3EB0214887CD104E448BC311359 /* EXHaptics.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/EXHaptics/EXHaptics-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = EXHaptics; - PRODUCT_NAME = EXHaptics; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 54EC6A1C8E5015D6AD5D7393D7E6D564 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 741061F41439E555E783203CC6D8D268 /* react-native-orientation-locker.xcconfig */; + baseConfigurationReference = 209CE90884546876425C915C7DE98975 /* 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-orientation-locker/react-native-orientation-locker-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; + 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_orientation_locker; - PRODUCT_NAME = "react-native-orientation-locker"; + PRODUCT_MODULE_NAME = react_native_webview; + PRODUCT_NAME = "react-native-webview"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -8363,20 +8427,6 @@ }; name = Debug; }; - 55379AA28EB326D7520D03027E74190B /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7C8B34B29318280733B2371775740F57 /* 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; - }; 57AB0923263500619B1BB635FB897DB1 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 808D6DDACE2479D44956ECE70452EEDB /* FirebaseRemoteConfig.xcconfig */; @@ -8390,9 +8440,33 @@ }; name = Debug; }; - 58A1A3E178C1E29BDDD5AB4A7507D56A /* Debug */ = { + 5BB9D9E7C75138BAB1D5EE6C22120C31 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E1B74A70CCC7CAA762BFA3204313080C /* UMTaskManagerInterface.xcconfig */; + baseConfigurationReference = AF1A496EDBFEDF9532628CE2B7BBB84E /* 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; + }; + 650A7F46735E14F62D080ED834B7A182 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E28FFD8724E81612B4508CFD87EFCAE0 /* UMBarCodeScannerInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -8404,45 +8478,22 @@ }; name = Debug; }; - 5BAEE96D536BE736405CF55B6C4AE69F /* Debug */ = { + 65E92CD3A5E3549B3D4593078AB5BC2E /* 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"; - }; - name = Debug; - }; - 5DFD03D7C55CDFA43FC793A2C425E56E /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 679D8A3887AC24280B378D77CE3663E4 /* EXFileSystem.xcconfig */; + baseConfigurationReference = 2F5746B355F03B27D0CD72B9771C688A /* 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/EXFileSystem/EXFileSystem-prefix.pch"; + 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 = EXFileSystem; - PRODUCT_NAME = EXFileSystem; + PRODUCT_MODULE_NAME = UMCore; + PRODUCT_NAME = UMCore; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -8452,45 +8503,6 @@ }; name = Release; }; - 5DFDB12F19564D6A8D5DA32F55ABCB0A /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 5AA513A34E8471B03A33D9E8FA6602C2 /* 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"; - }; - name = Debug; - }; - 604287030BEF895F18BAE71EA1DD0249 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7C8B34B29318280733B2371775740F57 /* 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; - }; 662534C46861FF1C86B17E2251A33709 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = B2CCC1A2B854A5AE761220034F5EFBF7 /* FirebaseAnalytics.xcconfig */; @@ -8504,46 +8516,21 @@ }; name = Debug; }; - 696FE32AEE71B64C5537B509A866C253 /* Release */ = { + 688F807F6671FBFE254057366FE4A58C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 512F48B528D5E095DF06C40A538A4B0E /* RNScreens.xcconfig */; + baseConfigurationReference = A5EB45A00F8A40475C44BF7440EE0136 /* RNLocalize.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; + GCC_PREFIX_HEADER = "Target Support Files/RNLocalize/RNLocalize-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.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"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 6B12A26F53B37A8A0AEA7C236E964DB6 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 93CB347B0BAC3CA6B2499B62D9E469A5 /* 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; + PRODUCT_MODULE_NAME = RNLocalize; + PRODUCT_NAME = RNLocalize; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -8565,72 +8552,38 @@ }; name = Debug; }; - 71AC699D209744CC6EB0284BAD49F845 /* Release */ = { + 7301DF53375D0E9C1C4BA5DEBDF6E994 /* 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 = Release; - }; - 78202710B82013DF9C38709BCAF38F3D /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E810609616C0C97E478830C4A8D3F80A /* 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; - }; - 78B8211F3927C0641F559B7BD0EAECC2 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 6445BD9F80EC6ECD81FC04D9BA020D02 /* 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; - }; - 7A1A2992DCDF44B8A1A9B692068EA1CD /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = AEE99FF50F74B0F5A9508B6172E99ECD /* EXWebBrowser.xcconfig */; + 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*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/EXWebBrowser/EXWebBrowser-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 10.0; + MACH_O_TYPE = staticlib; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = EXWebBrowser; - PRODUCT_NAME = EXWebBrowser; - PUBLIC_HEADERS_FOLDER_PATH = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 77D70B6E4E6F0FF0DD983ADBBFF6A0F6 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D3519DE89E7F19767A213677FEDFE521 /* 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; }; @@ -8649,57 +8602,33 @@ }; name = Debug; }; - 7CA5B14DEEEAAAE3A29DEF19951F0187 /* Debug */ = { + 7BCFEE16E0E0A346AAAC9341E29E270B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 49DC055D39ED12E1A6960E7254FFA6F3 /* UMCore.xcconfig */; + baseConfigurationReference = 209CE90884546876425C915C7DE98975 /* react-native-webview.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; + 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 = UMCore; - PRODUCT_NAME = UMCore; + 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 = Debug; + name = Release; }; - 80C0B87BAE2B8E29B3BC313A2A65769F /* Debug */ = { + 7D65BBF1813D0CB2A3979C51A3C09D5F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D18AB02E7921511273F4D30052D6EC4F /* 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; - }; - 81CA332A3592DD1B26E67F3C33C76933 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 6445BD9F80EC6ECD81FC04D9BA020D02 /* UMImageLoaderInterface.xcconfig */; + baseConfigurationReference = 88D5B8569BE83E36565DE608DEACF48A /* UMTaskManagerInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -8708,49 +8637,61 @@ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 88A093A5BFA4010988F50CFCD4E044A7 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 512F48B528D5E095DF06C40A538A4B0E /* 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; - }; - 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 */ = { + 7F0DB59249C5999505C1927A0FD39D02 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 679D8A3887AC24280B378D77CE3663E4 /* EXFileSystem.xcconfig */; + baseConfigurationReference = A5EB45A00F8A40475C44BF7440EE0136 /* RNLocalize.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/RNLocalize/RNLocalize-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNLocalize; + PRODUCT_NAME = RNLocalize; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 7F35694A522E5A316EC063D31D71B4FD /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F39F957EE78F6972CFF21AE70EC90989 /* EXHaptics.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/EXHaptics/EXHaptics-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = EXHaptics; + PRODUCT_NAME = EXHaptics; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 84656029028D7372794E55D736A7D365 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 142CB6889137AD1D63305C54BE7423A6 /* EXFileSystem.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -8772,29 +8713,56 @@ }; name = Debug; }; - 8DF93C63591B4A727DE4A97CFB43C7DC /* Release */ = { + 87373D880F92CFBEA042AC62F7CE557D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EBE07153C75AA5C1C38348F1B3A27364 /* DoubleConversion.xcconfig */; + baseConfigurationReference = 67643D95661EE7789DBB54FF7DEFF786 /* 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; + }; + 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; + }; + 8DF55FA037ADF50F5DB287DE78722D10 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8B6A4D6896B881DD0E6AB07264F572D3 /* 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/DoubleConversion/DoubleConversion-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; + 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 = DoubleConversion; - PRODUCT_NAME = DoubleConversion; + 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; + name = Debug; }; 8E0E603174B76F108D5182EB4FFD5BFE /* Debug */ = { isa = XCBuildConfiguration; @@ -8809,16 +8777,25 @@ }; name = Debug; }; - 8ECCA3B584BF08BC74CB4BA32B7E1167 /* Debug */ = { + 8EEA1C9185191E3B0D2E9E18A6C5AA14 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5F0E06511BF3A0BF1C6458AF3110DC25 /* UMBarCodeScannerInterface.xcconfig */; + baseConfigurationReference = EB054FF8A5D97A01475935D8C8EF580E /* QBImagePickerController.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"; + "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; @@ -8861,53 +8838,6 @@ }; name = Release; }; - 928874D7197454CFE325C41B4EAAC662 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 48074068C07C1FF030CC39F393077646 /* 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; - }; - 939C20E28009CDAFDE62ED3E75E39025 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F51BBFBFDD2D272826CA5B0EB4FDCB67 /* 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; - }; 94538DC1F52A4DC061A416D9745641F7 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 2F33FE55A531ACD9F959B3E74F720F24 /* FirebasePerformance.xcconfig */; @@ -8922,29 +8852,6 @@ }; name = Release; }; - 95707485ED7006B9C237638285A2DB3D /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F51BBFBFDD2D272826CA5B0EB4FDCB67 /* 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; - }; 95A5E0105B63F9C3D13FF2B55ACADC0A /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 2ED73F696CD986B8483EF549CD502B8A /* Protobuf.xcconfig */; @@ -8992,6 +8899,29 @@ }; name = Release; }; + 9684DC150B011CCD27D006C4F51A68FE /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 81D6504188670BC5E75619FF14C1D107 /* 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; + }; 983DC0E799CC534E481188D6BF616E51 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 95C15A4BF3BF113D8E6F2239D5AFA0D3 /* GoogleToolboxForMac.xcconfig */; @@ -9029,21 +8959,21 @@ }; name = Debug; }; - 9CA5EFA265840CA0280117127A248FC9 /* Release */ = { + 9CC53E42A134EB7B87475DB8762E06D9 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B4B4B3F0C4EE2ED166BBCCF7E8C9C8BF /* RNDeviceInfo.xcconfig */; + 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/RNDeviceInfo/RNDeviceInfo-prefix.pch"; + 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 = RNDeviceInfo; - PRODUCT_NAME = RNDeviceInfo; + PRODUCT_MODULE_NAME = folly; + PRODUCT_NAME = Folly; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -9053,6 +8983,29 @@ }; name = Release; }; + 9ED523524C57E5A78D8E4AC989831AAC /* 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; + }; 9FFDFB3D1B4CCB092B41BC84836F7762 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = D9154A2A59EE836C6B4C8ABE26903A93 /* FirebaseInstanceID.xcconfig */; @@ -9075,6 +9028,29 @@ }; name = Debug; }; + A16027F4B1A2E9BC667D248D7D8F0CF3 /* 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; + }; A26F4E5194D98345C60CC36A0DF05606 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 122B9AF72119AEE8595D2AE55CD8F9B4 /* Firebase.xcconfig */; @@ -9089,36 +9065,6 @@ }; name = Release; }; - A75F8CA7D6DF7790184683BCFECAE9FF /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E1B74A70CCC7CAA762BFA3204313080C /* 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; - }; - AEFB160A55914ED00FE01ECF62A8C3CC /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FCA3B7DE3489D7501DCEDA245AC76814 /* 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; - }; B01D14FDC83DCF9D4BE53066BEA96D05 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { @@ -9179,22 +9125,73 @@ }; name = Release; }; - B79FB9BBCCE73C12B292E546D011823B /* Release */ = { + B3A585452CCAC5903CF22D9BA98B59CA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5AA513A34E8471B03A33D9E8FA6602C2 /* UMReactNativeAdapter.xcconfig */; + baseConfigurationReference = 97C6B5A9CAB3A8AF7998D35A0DD44304 /* 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; + }; + B6C7034271AD612C0CE2EE28606818D0 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9FBEA0FA2998769195041F5EA95969D2 /* 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/UMReactNativeAdapter/UMReactNativeAdapter-prefix.pch"; + 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 = UMReactNativeAdapter; - PRODUCT_NAME = UMReactNativeAdapter; + 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; + }; + B968AA47DDA8A90FFE0BE0FA33CD4532 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E7E70D986059308E04198908D2E5C904 /* 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; + }; + BAC1A21F843C3AE9C3B443B302F3F6BC /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8B6A4D6896B881DD0E6AB07264F572D3 /* 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; @@ -9204,29 +9201,6 @@ }; name = Release; }; - BAD185FC4ADC5361D9A178279A515607 /* Debug */ = { - 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"; - }; - name = Debug; - }; BB25EE1C430BA2ED4F1EE7A0E0333F60 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 95C15A4BF3BF113D8E6F2239D5AFA0D3 /* GoogleToolboxForMac.xcconfig */; @@ -9250,31 +9224,6 @@ }; name = Debug; }; - BC218C2A14D7F9749C095CCFD4F611ED /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 49DC055D39ED12E1A6960E7254FFA6F3 /* 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 */; @@ -9288,35 +9237,22 @@ }; name = Debug; }; - C1FEBF3C2EBAB57C48ED50EE53AA6694 /* Debug */ = { + BEA641D5851D41F1304AEEF1C7EFC4F4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E810609616C0C97E478830C4A8D3F80A /* UMFontInterface.xcconfig */; + baseConfigurationReference = 9FBEA0FA2998769195041F5EA95969D2 /* EXAppLoaderProvider.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; - }; - C34F52B8C4087282CFF2D1D9F13C7566 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 404F67BC5B59B1AC7D07101C842DCB68 /* 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; + 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 = RNImageCropPicker; - PRODUCT_NAME = RNImageCropPicker; + PRODUCT_MODULE_NAME = EXAppLoaderProvider; + PRODUCT_NAME = EXAppLoaderProvider; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -9326,32 +9262,57 @@ }; name = Release; }; - C4856FE4C31DCF33F32D9F7093498D6D /* Debug */ = { + BEF3C0A6A40D398793D635904CBB88AF /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 404F67BC5B59B1AC7D07101C842DCB68 /* RNImageCropPicker.xcconfig */; + 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/RNImageCropPicker/RNImageCropPicker-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; + 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 = RNImageCropPicker; - PRODUCT_NAME = RNImageCropPicker; + 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 = Debug; + name = Release; }; - C52AEEAA7650022FB22F3A6E6C24BC20 /* Debug */ = { + C1329B980495E748D614FE2F3108D02A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FCA3B7DE3489D7501DCEDA245AC76814 /* UMFaceDetectorInterface.xcconfig */; + baseConfigurationReference = 81D6504188670BC5E75619FF14C1D107 /* 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"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + C5F110CBF1D9BF77B8EC70A351BFEA5A /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 67643D95661EE7789DBB54FF7DEFF786 /* UMImageLoaderInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -9360,12 +9321,36 @@ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + C74B2519EF235998E86606A7539CDB68 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1D4379538C8659161388358F6135F1C1 /* 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; }; - C7062C626C1EACE06427B3F480DAD082 /* Debug */ = { + C8740F6E474BFF7BA09381BF933CA6EF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 89FC01CE5595DBF9AB70F52ED6801451 /* UMConstantsInterface.xcconfig */; + baseConfigurationReference = 88D5B8569BE83E36565DE608DEACF48A /* UMTaskManagerInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -9391,22 +9376,53 @@ }; name = Release; }; - CDDE65688DB91C93DE4DA60BED6BDA7D /* Debug */ = { + CFD03976A80DBAEEF549343C7B095892 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DAD8F3EB0214887CD104E448BC311359 /* EXHaptics.xcconfig */; + 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; + }; + D338DBE12EAEC66131F53EE4259FD4E3 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 46E2F3A63414B49026F96E10C3703EC9 /* 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"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + D504250D9B52F216E888065A6D6C14A7 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 4699C9F661A6DDD1B2459DCA67729086 /* 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/EXHaptics/EXHaptics-prefix.pch"; + 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 = EXHaptics; - PRODUCT_NAME = EXHaptics; + PRODUCT_MODULE_NAME = EXConstants; + PRODUCT_NAME = EXConstants; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -9415,9 +9431,58 @@ }; name = Debug; }; - D1DB0A54D32D6019590ED542D986592A /* Release */ = { + D5CA063B5DBEE573A1266EE98A78ACA1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 93CB347B0BAC3CA6B2499B62D9E469A5 /* EXConstants.xcconfig */; + baseConfigurationReference = A7D69B23843A520CE859D3F1E5CCA891 /* 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; + }; + D67F492D20BE2D9B1B95AB2AE57FC383 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 433E42EEAC5EEE7650F1081AA78BD759 /* 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; + }; + D98F3EF69A1D2D0B9B96719A0671EB37 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 4699C9F661A6DDD1B2459DCA67729086 /* EXConstants.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -9440,30 +9505,212 @@ }; name = Release; }; - D6E82A02F43FC751C52DB474DFB3FCC6 /* Release */ = { + DBE1FB2CC7AEFFEA841198C0C977D346 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CB151BF6B6F22A525E316E9CC21FBF6C /* Pods-RocketChatRN.release.xcconfig */; + baseConfigurationReference = 1D4379538C8659161388358F6135F1C1 /* react-native-splash-screen.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; + 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 = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + 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; }; - DA3572225ACA8622227070B842C8B20C /* Release */ = { + DC7CABACF1C2008C1A1DFC15F44D706A /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B9DE0B233D160C30C9101E44C119C4AE /* 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; + }; + DEDB20F1DFE3FC56596D33876204FC03 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = BB59CCF24B175ECD0EA022876FE3625F /* 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; + }; + E08C71DD1BD718AE4A559834C01F0291 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = AE09BA641F8ED1137702F7F40B0C0599 /* 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; + }; + E64FDCE8CF1D3A61BD9E2A36BD20AA32 /* 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; + }; + E74B6A61EBB9BA6F53DAD16B7E855B57 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F39F957EE78F6972CFF21AE70EC90989 /* EXHaptics.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/EXHaptics/EXHaptics-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = EXHaptics; + PRODUCT_NAME = EXHaptics; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + E85B55BF7A4DE24AABBBFB0A7B9C4E96 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2E657EB8A5923EF09912E167F0F21ACF /* 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; + }; + EB411A2FF24ED310FA10B4FAB99F7CA1 /* Debug */ = { + 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"; + }; + name = Debug; + }; + ED8F518E1C694F9B9EDA2BC86DA45B83 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 142CB6889137AD1D63305C54BE7423A6 /* 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; + }; + F0FE78E5EE6760A5C211C9B471B21F98 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E28FFD8724E81612B4508CFD87EFCAE0 /* 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; + }; + F1B90F1EA479BA58DFE618D8E35F8B0E /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = EB054FF8A5D97A01475935D8C8EF580E /* QBImagePickerController.xcconfig */; buildSettings = { @@ -9487,47 +9734,9 @@ }; name = Release; }; - DA376766BE198DE4BCF982195DBF2175 /* Debug */ = { + F7BF2909D33BE907DBB1A9861931F09C /* 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 = Debug; - }; - DD45FD19EE5E45682F4B086F78463E62 /* 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; - }; - F3055ED6A254B0DF1D34C31D4F0B5459 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E64DE1DD89A7942683A36A1A8A372F72 /* UMSensorsInterface.xcconfig */; + baseConfigurationReference = 6BC8032F7258B87CB29A1412F8AF94CD /* UMSensorsInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -9540,57 +9749,9 @@ }; name = Release; }; - FA2F95C9F876AF9A6BB216332B991CF2 /* Debug */ = { + F8897D51ADA116A31D6C4B3CABB435E1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AEE99FF50F74B0F5A9508B6172E99ECD /* 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 = 7329DD6A846858B4C6F81571A0503D6A /* 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 = 298CF0BB5A9BCEA1C7031D9A6BFB3BB0 /* UMPermissionsInterface.xcconfig */; + baseConfigurationReference = 46E2F3A63414B49026F96E10C3703EC9 /* UMFileSystemInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -9605,65 +9766,56 @@ /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 04A001C9D4D82CA28EAB8772492A8839 /* Build configuration list for PBXNativeTarget "yoga" */ = { + 0569CCDF3B3B687CF01EE8D4001AA7CC /* Build configuration list for PBXNativeTarget "DoubleConversion" */ = { isa = XCConfigurationList; buildConfigurations = ( - 928874D7197454CFE325C41B4EAAC662 /* Debug */, - 2DCDE7646E868C51C993ABE3A3862463 /* Release */, + 0B5052AB0CF3E91D959495D45C6892CD /* Debug */, + 30FAA0CE493A4C291A9F66B23635E8F1 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 07CD24213F6F86BE55BC867D46CB4BFE /* Build configuration list for PBXAggregateTarget "UMTaskManagerInterface" */ = { + 065985C7AAC677C822294C6FD31B3E8F /* Build configuration list for PBXNativeTarget "yoga" */ = { isa = XCConfigurationList; buildConfigurations = ( - 58A1A3E178C1E29BDDD5AB4A7507D56A /* Debug */, - A75F8CA7D6DF7790184683BCFECAE9FF /* Release */, + 2B4B1350E578977D501EE3EE27F0DD20 /* Debug */, + E85B55BF7A4DE24AABBBFB0A7B9C4E96 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 09A274C27DDCF102B0AE5CA5C3115AAE /* Build configuration list for PBXNativeTarget "RNScreens" */ = { + 08C4767D793682C307862495EDFC6F37 /* Build configuration list for PBXNativeTarget "EXWebBrowser" */ = { isa = XCConfigurationList; buildConfigurations = ( - 88A093A5BFA4010988F50CFCD4E044A7 /* Debug */, - 696FE32AEE71B64C5537B509A866C253 /* Release */, + 2D5127D08DB362B955ACBA3DFA0CB89A /* Debug */, + D67F492D20BE2D9B1B95AB2AE57FC383 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 0AEE3B884AE65D5E5F077CCD06AD8643 /* Build configuration list for PBXAggregateTarget "UMFileSystemInterface" */ = { + 097AF50B67E3908773078466CE352AD4 /* Build configuration list for PBXNativeTarget "EXAppLoaderProvider" */ = { isa = XCConfigurationList; buildConfigurations = ( - 4E6BCD26BFD2562EF801356564832C73 /* Debug */, - 116DD04455E1E1BA8C8FC4FE5091E82C /* Release */, + B6C7034271AD612C0CE2EE28606818D0 /* Debug */, + BEA641D5851D41F1304AEEF1C7EFC4F4 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 0B02CA2BF83F91E03F27D2A61E8A7DC9 /* Build configuration list for PBXNativeTarget "EXHaptics" */ = { + 0D1C58C4F3C697682657D483AF1081D3 /* Build configuration list for PBXAggregateTarget "UMConstantsInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - CDDE65688DB91C93DE4DA60BED6BDA7D /* Debug */, - 53F2B808EC92835F341EF359A50522DE /* Release */, + DC7CABACF1C2008C1A1DFC15F44D706A /* Debug */, + 45766AF4428B503FB2B8DEDA9B7AE19B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 12511623EBA4F5F479E949FC4CCA9BDB /* Build configuration list for PBXNativeTarget "QBImagePickerController-QBImagePicker" */ = { + 1146692C6E3856D877AE8A0FCBEDC90D /* Build configuration list for PBXAggregateTarget "UMSensorsInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - DA376766BE198DE4BCF982195DBF2175 /* Debug */, - 71AC699D209744CC6EB0284BAD49F845 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 126AE8970754A6BA5FE9DA02CA010B2A /* Build configuration list for PBXNativeTarget "EXFileSystem" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 8D2503ADA0CD5B8003F93339087421B8 /* Debug */, - 5DFD03D7C55CDFA43FC793A2C425E56E /* Release */, + 4E66B4863041AA7093D966F0F916BCC2 /* Debug */, + F7BF2909D33BE907DBB1A9861931F09C /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -9695,38 +9847,38 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 186EBA3AB48C7B460B41E9527EC0376E /* Build configuration list for PBXAggregateTarget "UMBarCodeScannerInterface" */ = { + 19B649D415B23577700588DC3FB19565 /* Build configuration list for PBXAggregateTarget "UMPermissionsInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - 8ECCA3B584BF08BC74CB4BA32B7E1167 /* Debug */, - 1BFBE814A593005302C2103CA511813D /* Release */, + DEDB20F1DFE3FC56596D33876204FC03 /* Debug */, + 159D1ECF5A75638796F4270CBDFCCB42 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 1C32006CC07DA731A4A3EB74DE490502 /* Build configuration list for PBXNativeTarget "EXAppLoaderProvider" */ = { + 1CB324CFC7C9FDAD43D409360A8F980B /* Build configuration list for PBXAggregateTarget "UMFileSystemInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - 80C0B87BAE2B8E29B3BC313A2A65769F /* Debug */, - 458DFB50B9C7BFD244D3DF62123992B5 /* Release */, + F8897D51ADA116A31D6C4B3CABB435E1 /* Debug */, + D338DBE12EAEC66131F53EE4259FD4E3 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 206B8D70C42CF0B6421D0BB41D7B6B1C /* Build configuration list for PBXAggregateTarget "UMImageLoaderInterface" */ = { + 21CEF0B04F44D6C05A97D363AAED4498 /* Build configuration list for PBXAggregateTarget "UMCameraInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - 81CA332A3592DD1B26E67F3C33C76933 /* Debug */, - 78B8211F3927C0641F559B7BD0EAECC2 /* Release */, + B3A585452CCAC5903CF22D9BA98B59CA /* Debug */, + 2D7D1FFE38BFC13E1F730AB2C5393EB7 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 25E8EA84C0BF7C774D81D40EAF0A01B3 /* Build configuration list for PBXNativeTarget "react-native-splash-screen" */ = { + 22051F6710614105BA04E0EF4915F952 /* Build configuration list for PBXNativeTarget "EXHaptics" */ = { isa = XCConfigurationList; buildConfigurations = ( - 4732C71954AD9AEDA0D83DE8CEE54D87 /* Debug */, - 112A03FB6B750F48CA8DCBBFE4D2F179 /* Release */, + 7F35694A522E5A316EC063D31D71B4FD /* Debug */, + E74B6A61EBB9BA6F53DAD16B7E855B57 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -9740,20 +9892,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 2D01661ABC901262D64AECDD36D8687C /* Build configuration list for PBXNativeTarget "RSKImageCropper" */ = { + 30E42B671739C46568E4210EC736D325 /* Build configuration list for PBXNativeTarget "glog" */ = { isa = XCConfigurationList; buildConfigurations = ( - 3820A434EC38AA82A04E7EB75D27B402 /* Debug */, - 1F9AF68D604B2492ED311C7AC7265430 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 3252239A3789995739FB7B8C8A95B493 /* Build configuration list for PBXNativeTarget "DoubleConversion" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - BAD185FC4ADC5361D9A178279A515607 /* Debug */, - 8DF93C63591B4A727DE4A97CFB43C7DC /* Release */, + 9ED523524C57E5A78D8E4AC989831AAC /* Debug */, + 18DA24ACBC60B6FE6782F76B97038E54 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -9767,15 +9910,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 3D743A9AAF6ED7D9DB954EDB605D83CF /* Build configuration list for PBXNativeTarget "glog" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 430A223AB97555D1914309DC37429D33 /* Debug */, - 456682B469493AE0DCC9A0071B5529EF /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 3D8810E196AB78ED3123A01E8F97036C /* Build configuration list for PBXAggregateTarget "GoogleAppMeasurement" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -9785,15 +9919,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46234A99D176D6F699CE66EA8FC8034F /* Build configuration list for PBXNativeTarget "UMReactNativeAdapter" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 5DFDB12F19564D6A8D5DA32F55ABCB0A /* Debug */, - B79FB9BBCCE73C12B292E546D011823B /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -9812,20 +9937,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 51C66BBB4BF416CDA4D6EB626E21DA79 /* Build configuration list for PBXAggregateTarget "UMConstantsInterface" */ = { + 493203169A838C266EA49E9346AB78D7 /* Build configuration list for PBXNativeTarget "RNLocalize" */ = { isa = XCConfigurationList; buildConfigurations = ( - C7062C626C1EACE06427B3F480DAD082 /* Debug */, - 4A8804DCACD355A73487EC0BC64A88CC /* Release */, + 688F807F6671FBFE254057366FE4A58C /* Debug */, + 7F0DB59249C5999505C1927A0FD39D02 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 532DE14CF37BA69A8A0BC7D0141D6838 /* Build configuration list for PBXAggregateTarget "UMSensorsInterface" */ = { + 5A1AFF0159F6BECDA8AA46E40AEBA6D4 /* Build configuration list for PBXNativeTarget "QBImagePickerController-QBImagePicker" */ = { isa = XCConfigurationList; buildConfigurations = ( - 34C1D92263DF55B2160BE7791C821392 /* Debug */, - F3055ED6A254B0DF1D34C31D4F0B5459 /* Release */, + CFD03976A80DBAEEF549343C7B095892 /* Debug */, + E64FDCE8CF1D3A61BD9E2A36BD20AA32 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -9857,38 +9982,38 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6938A94AF739B9819D20E572908D3D5E /* Build configuration list for PBXNativeTarget "EXPermissions" */ = { + 694A8CE4B2F3D4A51F73B435FF654E3C /* Build configuration list for PBXNativeTarget "EXPermissions" */ = { isa = XCConfigurationList; buildConfigurations = ( - FC425346B597C5B1E88C183830F09539 /* Debug */, - 1C8606BF4E6EF908F5BAA29D6E73197A /* Release */, + 5BB9D9E7C75138BAB1D5EE6C22120C31 /* Debug */, + 337079FC0FB13C8C1A58CD13D46435CC /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 74566EA55AFBA560F2ECF92B9E8233D3 /* Build configuration list for PBXAggregateTarget "UMPermissionsInterface" */ = { + 7069980CB6B0DC3077EC4A39A979136A /* Build configuration list for PBXNativeTarget "UMReactNativeAdapter" */ = { isa = XCConfigurationList; buildConfigurations = ( - FEA78C29A9EF0705F7CC5E722CB2A155 /* Debug */, - 4B2BB05B538EB6FE5878292C8F3FA203 /* Release */, + 3FE8936EE6A5D64C9F64DF00F56630C1 /* Debug */, + E08C71DD1BD718AE4A559834C01F0291 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 8300EC82C23971244A276A83EFF3C90A /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */ = { + 86FB6036B4221D1FE19A24194599B43C /* Build configuration list for PBXNativeTarget "UMCore" */ = { isa = XCConfigurationList; buildConfigurations = ( - DD45FD19EE5E45682F4B086F78463E62 /* Debug */, - D6E82A02F43FC751C52DB474DFB3FCC6 /* Release */, + 3066BCECBA7908E897F9E1738FEDD5AC /* Debug */, + 65E92CD3A5E3549B3D4593078AB5BC2E /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 8BB472139D3ECDA53A44FD1DBBB24808 /* Build configuration list for PBXNativeTarget "EXConstants" */ = { + 8B7A20C52F49987974FBBF52A6047803 /* Build configuration list for PBXAggregateTarget "UMImageLoaderInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - 6B12A26F53B37A8A0AEA7C236E964DB6 /* Debug */, - D1DB0A54D32D6019590ED542D986592A /* Release */, + 87373D880F92CFBEA042AC62F7CE557D /* Debug */, + C5F110CBF1D9BF77B8EC70A351BFEA5A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -9902,11 +10027,11 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 9811B54698490F73C0B6CC6E1889626F /* Build configuration list for PBXNativeTarget "Folly" */ = { + 9C877173540C230076E76F9965B95E3E /* Build configuration list for PBXAggregateTarget "UMTaskManagerInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - 014A207A97F0C6A93126D955F5325EE1 /* Debug */, - 3F9893011771ABBFEAFD81AF1EA5926F /* Release */, + C8740F6E474BFF7BA09381BF933CA6EF /* Debug */, + 7D65BBF1813D0CB2A3979C51A3C09D5F /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -9920,65 +10045,92 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A23B003B3B41EA61C3EC07C3EFEC2F69 /* Build configuration list for PBXNativeTarget "RNImageCropPicker" */ = { + A92E9AC6F35DE9CFC00A36979B7A166E /* Build configuration list for PBXAggregateTarget "UMFaceDetectorInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - C4856FE4C31DCF33F32D9F7093498D6D /* Debug */, - C34F52B8C4087282CFF2D1D9F13C7566 /* Release */, + 3B39C597CA036B3549F3FD950E2A75B8 /* Debug */, + 77D70B6E4E6F0FF0DD983ADBBFF6A0F6 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - C5634010506281E41F873589FEE9F310 /* Build configuration list for PBXAggregateTarget "UMCameraInterface" */ = { + A9BB87915F87BFCD4339830D75C3E225 /* Build configuration list for PBXNativeTarget "RSKImageCropper" */ = { isa = XCConfigurationList; buildConfigurations = ( - 55379AA28EB326D7520D03027E74190B /* Debug */, - 604287030BEF895F18BAE71EA1DD0249 /* Release */, + A16027F4B1A2E9BC667D248D7D8F0CF3 /* Debug */, + BEF3C0A6A40D398793D635904CBB88AF /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - C5B6C27A570AEFC781C128468CC3420C /* Build configuration list for PBXAggregateTarget "UMFontInterface" */ = { + B8BDBC9A7846567AC04DC9E24808B35D /* Build configuration list for PBXNativeTarget "RNImageCropPicker" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1FEBF3C2EBAB57C48ED50EE53AA6694 /* Debug */, - 78202710B82013DF9C38709BCAF38F3D /* Release */, + 8DF55FA037ADF50F5DB287DE78722D10 /* Debug */, + BAC1A21F843C3AE9C3B443B302F3F6BC /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - CB97C076225DC55B9B4D746BCDD41E96 /* Build configuration list for PBXNativeTarget "UMCore" */ = { + BA9BA1A6548084E77648AB1CB3377AA8 /* Build configuration list for PBXNativeTarget "RNScreens" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7CA5B14DEEEAAAE3A29DEF19951F0187 /* Debug */, - BC218C2A14D7F9749C095CCFD4F611ED /* Release */, + 9684DC150B011CCD27D006C4F51A68FE /* Debug */, + C1329B980495E748D614FE2F3108D02A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - CC3B8958A2965669C0A321A46414DD85 /* Build configuration list for PBXNativeTarget "EXWebBrowser" */ = { + BF2BE3FDF3C80965CDF320F73833796D /* Build configuration list for PBXNativeTarget "QBImagePickerController" */ = { isa = XCConfigurationList; buildConfigurations = ( - FA2F95C9F876AF9A6BB216332B991CF2 /* Debug */, - 7A1A2992DCDF44B8A1A9B692068EA1CD /* Release */, + 8EEA1C9185191E3B0D2E9E18A6C5AA14 /* Debug */, + F1B90F1EA479BA58DFE618D8E35F8B0E /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D4E32AC40AD2B01D73C3FFFDE2C86F64 /* Build configuration list for PBXNativeTarget "react-native-webview" */ = { + C10BA433042CCBCB5917296A4A083B99 /* Build configuration list for PBXNativeTarget "react-native-webview" */ = { isa = XCConfigurationList; buildConfigurations = ( - 95707485ED7006B9C237638285A2DB3D /* Debug */, - 939C20E28009CDAFDE62ED3E75E39025 /* Release */, + 553DD7C6DBD09A39AC16BE45B0CBAA08 /* Debug */, + 7BCFEE16E0E0A346AAAC9341E29E270B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D61E4B726A82F8341722E3BC79847E5D /* Build configuration list for PBXNativeTarget "react-native-orientation-locker" */ = { + C70B8DD136F9BAD341C1B40C899208EC /* Build configuration list for PBXNativeTarget "EXConstants" */ = { isa = XCConfigurationList; buildConfigurations = ( - 54EC6A1C8E5015D6AD5D7393D7E6D564 /* Debug */, - 1683C78918A599D91D38EBC27A6D524B /* Release */, + D504250D9B52F216E888065A6D6C14A7 /* Debug */, + D98F3EF69A1D2D0B9B96719A0671EB37 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + CEA0CE44B8D952C687E12E55FF66A2AE /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 7301DF53375D0E9C1C4BA5DEBDF6E994 /* Debug */, + 4A60017BA51C50FE36377B55A8878C2B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + CF773BF3AB5B99203184D051A085CCDC /* Build configuration list for PBXNativeTarget "Folly" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + EB411A2FF24ED310FA10B4FAB99F7CA1 /* Debug */, + 9CC53E42A134EB7B87475DB8762E06D9 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + D47A7DD3EFC58EACA121E6E893460E51 /* Build configuration list for PBXNativeTarget "react-native-splash-screen" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C74B2519EF235998E86606A7539CDB68 /* Debug */, + DBE1FB2CC7AEFFEA841198C0C977D346 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -9992,29 +10144,38 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E31DA43DCA94B832285311278BA85560 /* Build configuration list for PBXNativeTarget "RNDeviceInfo" */ = { + DFA7D47CC12477C71F1170FC593B9C02 /* Build configuration list for PBXAggregateTarget "UMBarCodeScannerInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - 4AFA12937904545E2681F5E9F101AE6A /* Debug */, - 9CA5EFA265840CA0280117127A248FC9 /* Release */, + 650A7F46735E14F62D080ED834B7A182 /* Debug */, + F0FE78E5EE6760A5C211C9B471B21F98 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E357E8292C0D9205CA7C1CD6B7FC9D3D /* Build configuration list for PBXAggregateTarget "UMFaceDetectorInterface" */ = { + E27FAADC13B8989FA8DC93CD09CE55E2 /* Build configuration list for PBXNativeTarget "RNDeviceInfo" */ = { isa = XCConfigurationList; buildConfigurations = ( - C52AEEAA7650022FB22F3A6E6C24BC20 /* Debug */, - AEFB160A55914ED00FE01ECF62A8C3CC /* Release */, + 340BE1DD7D67046CC8702B9E4D8779BA /* Debug */, + D5CA063B5DBEE573A1266EE98A78ACA1 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E48350BA36C05B2AFEEA25E321E933B4 /* Build configuration list for PBXNativeTarget "QBImagePickerController" */ = { + E4F9049E6B72446D51E692E780F60315 /* Build configuration list for PBXNativeTarget "react-native-orientation-locker" */ = { isa = XCConfigurationList; buildConfigurations = ( - 5BAEE96D536BE736405CF55B6C4AE69F /* Debug */, - DA3572225ACA8622227070B842C8B20C /* Release */, + 3A1EADAE0078C484F932558933950A90 /* Debug */, + 160EB8A7CCCF2C639AE309C381FC9CE5 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + EA6C8F1D19FA86C8BD650D2161021975 /* Build configuration list for PBXAggregateTarget "UMFontInterface" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + B968AA47DDA8A90FFE0BE0FA33CD4532 /* Debug */, + 2019F5BC3932E6466A1D0E88ADAE5C5E /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -10055,6 +10216,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + FBC40A7F6CC2304CFC78A61E757FCC99 /* Build configuration list for PBXNativeTarget "EXFileSystem" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 84656029028D7372794E55D736A7D365 /* Debug */, + ED8F518E1C694F9B9EDA2BC86DA45B83 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; /* End XCConfigurationList section */ }; rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */; 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 090d86a65..23faaaa6e 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/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/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}/EXHaptics" "${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"EXHaptics" -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" +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/EXHaptics" "${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/RNLocalize" "${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}/EXHaptics" "${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}/RNLocalize" "${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"EXHaptics" -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"RNLocalize" -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 090d86a65..23faaaa6e 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/EXAppLoaderProvider" "${PODS_ROOT}/Headers/Public/EXConstants" "${PODS_ROOT}/Headers/Public/EXFileSystem" "${PODS_ROOT}/Headers/Public/EXHaptics" "${PODS_ROOT}/Headers/Public/EXPermissions" "${PODS_ROOT}/Headers/Public/EXWebBrowser" "${PODS_ROOT}/Headers/Public/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}/EXHaptics" "${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"EXHaptics" -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" +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/EXHaptics" "${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/RNLocalize" "${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}/EXHaptics" "${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}/RNLocalize" "${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"EXHaptics" -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"RNLocalize" -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/RNLocalize/RNLocalize-dummy.m b/ios/Pods/Target Support Files/RNLocalize/RNLocalize-dummy.m new file mode 100644 index 000000000..89f687c26 --- /dev/null +++ b/ios/Pods/Target Support Files/RNLocalize/RNLocalize-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_RNLocalize : NSObject +@end +@implementation PodsDummy_RNLocalize +@end diff --git a/ios/Pods/Target Support Files/RNLocalize/RNLocalize-prefix.pch b/ios/Pods/Target Support Files/RNLocalize/RNLocalize-prefix.pch new file mode 100644 index 000000000..beb2a2441 --- /dev/null +++ b/ios/Pods/Target Support Files/RNLocalize/RNLocalize-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/RNLocalize/RNLocalize.xcconfig b/ios/Pods/Target Support Files/RNLocalize/RNLocalize.xcconfig new file mode 100644 index 000000000..0d2439dc0 --- /dev/null +++ b/ios/Pods/Target Support Files/RNLocalize/RNLocalize.xcconfig @@ -0,0 +1,9 @@ +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/RNLocalize" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/RNLocalize" "${PODS_ROOT}/Headers/Public/React" "${PODS_ROOT}/Headers/Public/yoga" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../node_modules/react-native-localize +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 48374fb9e..a70b397eb 100644 --- a/ios/RocketChatRN.xcodeproj/project.pbxproj +++ b/ios/RocketChatRN.xcodeproj/project.pbxproj @@ -39,7 +39,6 @@ B8971BB2202A093B0000D245 /* libKeyboardTrackingView.a in Frameworks */ = {isa = PBXBuildFile; fileRef = B8971BB1202A091D0000D245 /* libKeyboardTrackingView.a */; }; BAB7DC22804246F3923A1833 /* libFastImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FD2E2837F110483CA29EE0D4 /* libFastImage.a */; }; EF736EF520A64AE8820E684A /* libRealmReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DF26CC845883492D8AC8869B /* libRealmReact.a */; }; - F5BF54DC78E1411B8343933B /* libRNI18n.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 921481B47B50490CA761932E /* libRNI18n.a */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -253,20 +252,6 @@ remoteGlobalIDString = A287971D1DE0C0A60081BDFA; remoteInfo = FastImage; }; - 7A770EC520BECDC7001AD51A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 22D3971EAF2E4660B4FAB3DD /* RNI18n.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 134814201AA4EA6300B7C361; - remoteInfo = RNI18n; - }; - 7A770EC720BECDC7001AD51A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 22D3971EAF2E4660B4FAB3DD /* RNI18n.xcodeproj */; - proxyType = 2; - remoteGlobalIDString = 6476C4051EEAA69700B10F51; - remoteInfo = "RNI18n-tvOS"; - }; 7A7F5C981FCC982500024129 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = AD0379F2BCE84C968538CDAF /* RCTVideo.xcodeproj */; @@ -454,7 +439,6 @@ 1E0221D522B2F76300001862 /* RNUserDefaults.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RNUserDefaults.xcodeproj; path = "../node_modules/rn-user-defaults/ios/RNUserDefaults.xcodeproj"; sourceTree = ""; }; 20CE3E407E0D4D9E8C9885F2 /* libRCTVideo.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRCTVideo.a; sourceTree = ""; }; 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 = ""; }; 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 = ""; }; @@ -515,7 +499,6 @@ 8ECBD927DDAC4987B98E102E /* libRCTVideo.a in Frameworks */, 74815BBCB91147C08C8F7B3D /* libRNAudio.a in Frameworks */, BAB7DC22804246F3923A1833 /* libFastImage.a in Frameworks */, - F5BF54DC78E1411B8343933B /* libRNI18n.a in Frameworks */, 50046CB6BDA69B9232CF66D9 /* libPods-RocketChatRN.a in Frameworks */, 95E57ADEB9A0487791D2C50E /* libRNGestureHandler.a in Frameworks */, 38CEA0ED468E49CFABCD82FD /* libRNFirebase.a in Frameworks */, @@ -676,15 +659,6 @@ name = Products; sourceTree = ""; }; - 7A770EBC20BECDC7001AD51A /* Products */ = { - isa = PBXGroup; - children = ( - 7A770EC620BECDC7001AD51A /* libRNI18n.a */, - 7A770EC820BECDC7001AD51A /* libRNI18n-tvOS.a */, - ); - name = Products; - sourceTree = ""; - }; 7A770EBE20BECDC7001AD51A /* Products */ = { isa = PBXGroup; children = ( @@ -751,7 +725,6 @@ AD0379F2BCE84C968538CDAF /* RCTVideo.xcodeproj */, C21010507E5B4B37BA0E4C9D /* RNAudio.xcodeproj */, 1845C223DA364898A8400573 /* FastImage.xcodeproj */, - 22D3971EAF2E4660B4FAB3DD /* RNI18n.xcodeproj */, B1A58A7ACB0E4453A44AEC38 /* RNGestureHandler.xcodeproj */, 1132AD7934954A958E143199 /* RNFirebase.xcodeproj */, ); @@ -1005,10 +978,6 @@ ProductGroup = 7AD44CF121518C610099D147 /* Products */; ProjectRef = B1A58A7ACB0E4453A44AEC38 /* RNGestureHandler.xcodeproj */; }, - { - ProductGroup = 7A770EBC20BECDC7001AD51A /* Products */; - ProjectRef = 22D3971EAF2E4660B4FAB3DD /* RNI18n.xcodeproj */; - }, { ProductGroup = 7A8DEB1C20ED0BDE00C5DCE4 /* Products */; ProjectRef = 7A8DEB1B20ED0BDE00C5DCE4 /* RNNotifications.xcodeproj */; @@ -1240,20 +1209,6 @@ remoteRef = 7A770EC120BECDC7001AD51A /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - 7A770EC620BECDC7001AD51A /* libRNI18n.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = libRNI18n.a; - remoteRef = 7A770EC520BECDC7001AD51A /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; - 7A770EC820BECDC7001AD51A /* libRNI18n-tvOS.a */ = { - isa = PBXReferenceProxy; - fileType = archive.ar; - path = "libRNI18n-tvOS.a"; - remoteRef = 7A770EC720BECDC7001AD51A /* PBXContainerItemProxy */; - sourceTree = BUILT_PRODUCTS_DIR; - }; 7A7F5C991FCC982500024129 /* libRCTVideo.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; diff --git a/package.json b/package.json index 503aee8fd..8c3769c37 100644 --- a/package.json +++ b/package.json @@ -25,6 +25,7 @@ "ejson": "^2.1.2", "expo-haptics": "^5.0.1", "expo-web-browser": "^5.0.3", + "i18n-js": "^3.3.0", "js-base64": "^2.5.1", "js-sha256": "^0.9.0", "jsc-android": "^241213.2.0", @@ -44,12 +45,12 @@ "react-native-fast-image": "5.3.0", "react-native-firebase": "^5.4.0", "react-native-gesture-handler": "^1.2.1", - "react-native-i18n": "^2.0.15", "react-native-image-crop-picker": "git+https://github.com/RocketChat/react-native-image-crop-picker.git", "react-native-image-zoom-viewer": "^2.2.25", "react-native-keyboard-aware-scroll-view": "0.8.0", "react-native-keyboard-input": "^5.3.1", "react-native-keyboard-tracking-view": "^5.5.0", + "react-native-localize": "^1.1.4", "react-native-markdown-renderer": "^3.2.8", "react-native-modal": "10.0.0", "react-native-notifications": "1.2.6", diff --git a/yarn.lock b/yarn.lock index 21f61a7c0..64e00e41f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -7017,10 +7017,10 @@ husky@>=1: run-node "^1.0.0" slash "^2.0.0" -i18n-js@3.0.11: - version "3.0.11" - resolved "https://registry.yarnpkg.com/i18n-js/-/i18n-js-3.0.11.tgz#f9e96bdb641c5b9d6be12759d7c422089987ef02" - integrity sha512-v7dG3kYJTQTyox3NqDabPDE/ZotWntyMI9kh4cYi+XlCSnsIR+KBTS2opPyObL8WndnklcLzbNU92FP/mLge3Q== +i18n-js@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/i18n-js/-/i18n-js-3.3.0.tgz#05512f7184b5117c087ab597be649720a834c068" + integrity sha512-+m8jh84IIWlFwEJgwrWCkeIwIES9ilJKBOj5qx8ZTLLmlPz7bjKnCdxf254wRf6M4pkQHtgXGT9r9lGk0e9aug== iconv-lite@0.4.23: version "0.4.23" @@ -11541,13 +11541,6 @@ react-native-gesture-handler@^1.2.1: invariant "^2.2.2" prop-types "^15.5.10" -react-native-i18n@^2.0.15: - version "2.0.15" - resolved "https://registry.yarnpkg.com/react-native-i18n/-/react-native-i18n-2.0.15.tgz#09b5a9836116fa7dbd0054c46e2d1014c1ef3c65" - integrity sha512-V8VwUP0TLda3oJvgt5tdnFaOV7WXPhTjCTLO7sXI3C2SHggSbD4bCUryMzNJhesimJidH21V2Owvj4zAylHoQQ== - dependencies: - i18n-js "3.0.11" - "react-native-image-crop-picker@git+https://github.com/RocketChat/react-native-image-crop-picker.git": version "0.21.1" resolved "git+https://github.com/RocketChat/react-native-image-crop-picker.git#6c205596b5496b207daa93408c9cef886e04bdbb" @@ -11590,6 +11583,11 @@ react-native-keyboard-tracking-view@^5.5.0: resolved "https://registry.yarnpkg.com/react-native-keyboard-tracking-view/-/react-native-keyboard-tracking-view-5.5.0.tgz#87d28639f30e5b511de510e4063e476f23d6e4f2" integrity sha512-e/tYhvccmLOSV+6qpU5Hlpn/U2gVu5K5F555oCUBBF229vv/V/fGoq2QyBnBEKmF9IKzBEOpzxBavUR3IfaKXw== +react-native-localize@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/react-native-localize/-/react-native-localize-1.1.4.tgz#d48aa4f75afd39a42dcd0bdf40f7f44a8ccd604c" + integrity sha512-NHsA812yvoH9ktPl1IqIxwDDwykipyH7K4zeW/nnipZuQb2g73SQEB3ryqKHmRASWD0DZl0hIxHr9IszzG5W5w== + react-native-markdown-renderer@^3.2.8: version "3.2.8" resolved "https://registry.yarnpkg.com/react-native-markdown-renderer/-/react-native-markdown-renderer-3.2.8.tgz#217046cf198eca632a65f93cdf7dd7766f718070"